wangzhibo
4 天以前 ae6f40460dcd56af6c5f60ba52c883854c3bac55
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
/*  Copyright (C) 2015-2024 Andreas Shimokawa, Carsten Pfeiffer, Daniele
    Gobbetti, José Rebelo, Petr Vaněk, Taavi Eomäe
 
    This file is part of Gadgetbridge.
 
    Gadgetbridge is free software: you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License as published
    by the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.
 
    Gadgetbridge is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Affero General Public License for more details.
 
    You should have received a copy of the GNU Affero General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>. */
package ru.gelin.android.weather.notification;
 
import android.os.Bundle;
import android.os.Parcel;
import android.os.Parcelable;
 
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
 
import nodomain.freeyourgadget.gadgetbridge.model.Weather;
import nodomain.freeyourgadget.gadgetbridge.model.WeatherSpec;
 
public class ParcelableWeather2 implements Parcelable {
    private static final Logger LOG = LoggerFactory.getLogger(ParcelableWeather2.class);
 
    // getters and setters suck ;)
    public WeatherSpec weatherSpec = new WeatherSpec();
 
    public JSONObject reconstructedOWMForecast = null;
 
    private ParcelableWeather2(Parcel in) {
        int version = in.readInt();
        if (version != 2) {
            return;
        }
        Bundle bundle = in.readBundle(getClass().getClassLoader());
 
        weatherSpec.location = bundle.getString("weather_location");
        long time = bundle.getLong("weather_time");
        long queryTime = bundle.getLong("weather_query_time");
        weatherSpec.timestamp = (int) (queryTime / 1000);
        bundle.getString("weather_forecast_url");
        int conditions = bundle.getInt("weather_conditions");
        if (conditions > 0) {
            Bundle conditionBundle = in.readBundle(getClass().getClassLoader());
            weatherSpec.currentCondition = conditionBundle.getString("weather_condition_text");
            conditionBundle.getStringArray("weather_condition_types");
            weatherSpec.currentTemp = conditionBundle.getInt("weather_current_temp");
 
            weatherSpec.windDirection = mapDirToDeg(conditionBundle.getString("weather_wind_direction"));
            weatherSpec.windSpeed = getSpeedInKMH(conditionBundle.getInt("weather_wind_speed"),
                    conditionBundle.getString("weather_wind_speed_unit"));
 
            String[] currentConditionType = conditionBundle.getStringArray("weather_condition_types");
            if (currentConditionType != null) {
                weatherSpec.currentConditionCode = weatherConditionTypesToOpenWeatherMapIds(currentConditionType[0]);
            }
            weatherSpec.todayMinTemp = conditionBundle.getInt("weather_low_temp");
            weatherSpec.todayMaxTemp = conditionBundle.getInt("weather_high_temp");
            weatherSpec.currentHumidity = conditionBundle.getInt("weather_humidity_value");
 
            //fetch forecasts
            int timeOffset = 0;
 
            JSONArray list = new JSONArray();
            JSONObject city = new JSONObject();
            while (--conditions > 0) {
                timeOffset += 86400; //manually determined
                JSONObject item = new JSONObject();
                JSONObject condition = new JSONObject();
                JSONObject main = new JSONObject();
                JSONArray weather = new JSONArray();
                Bundle forecastBundle = in.readBundle(getClass().getClassLoader());
                String[] forecastConditionType = forecastBundle.getStringArray("weather_condition_types");
                int forecastConditionCode = 0;
                if (forecastConditionType != null && forecastConditionType.length > 0) {
                    forecastConditionCode = weatherConditionTypesToOpenWeatherMapIds(forecastConditionType[0]);
                }
                int forecastLowTemp = forecastBundle.getInt("weather_low_temp");
                int forecastHighTemp = forecastBundle.getInt("weather_high_temp");
                int forecastHumidity = forecastBundle.getInt("weather_humidity_value");
                WeatherSpec.Daily daily = new WeatherSpec.Daily();
                daily.minTemp = forecastLowTemp;
                daily.maxTemp = forecastHighTemp;
                daily.conditionCode = forecastConditionCode;
                daily.humidity = forecastHumidity;
                weatherSpec.forecasts.add(daily);
                try {
                    condition.put("id", forecastConditionCode);
                    condition.put("main", forecastBundle.getString("weather_condition_text"));
                    condition.put("description", forecastBundle.getString("weather_condition_text"));
                    condition.put("icon", Weather.mapToOpenWeatherMapIcon(forecastConditionCode));
                    weather.put(condition);
 
                    main.put("temp", forecastBundle.getInt("weather_current_temp"));
                    main.put("humidity", forecastHumidity);
                    main.put("temp_min", forecastLowTemp);
                    main.put("temp_max", forecastHighTemp);
 
                    //forecast
 
                    item.put("dt", (time / 1000) + timeOffset);
                    item.put("main", main);
                    item.put("weather", weather);
                    list.put(item);
                } catch (JSONException e) {
                    LOG.error("error while construction JSON", e);
                }
            }
            try {
                //"city":{"id":3181913,"name":"Bolzano","coord":{"lat":46.4927,"lon":11.3336},"country":"IT"}
                city.put("name", weatherSpec.location);
                city.put("country", "World");
 
                reconstructedOWMForecast = new JSONObject();
                reconstructedOWMForecast.put("city", city);
                reconstructedOWMForecast.put("cnt", list.length());
                reconstructedOWMForecast.put("list", list);
 
            } catch (JSONException e) {
                LOG.error("error while construction JSON", e);
            }
            LOG.debug("Forecast JSON for Webview: " + reconstructedOWMForecast);
        }
    }
 
    public static final Creator<ParcelableWeather2> CREATOR = new Creator<ParcelableWeather2>() {
        @Override
        public ParcelableWeather2 createFromParcel(Parcel in) {
            return new ParcelableWeather2(in);
        }
 
        @Override
        public ParcelableWeather2[] newArray(int size) {
            return new ParcelableWeather2[size];
        }
    };
 
    @Override
    public int describeContents() {
        return 0;
    }
 
    @Override
    public void writeToParcel(Parcel dest, int flags) {
        // we do not really want to use this at all
    }
 
    private int weatherConditionTypesToOpenWeatherMapIds(String weather_condition_type) {
        switch (weather_condition_type) {
            case "THUNDERSTORM_RAIN_LIGHT":
                return 200;
            case "THUNDERSTORM_RAIN":
                return 201;
            case "THUNDERSTORM_RAIN_HEAVY":
                return 202;
            case "THUNDERSTORM_LIGHT":
                return 210;
            case "THUNDERSTORM":
                return 211;
            case "THUNDERSTORM_HEAVY":
                return 212;
            case "THUNDERSTORM_RAGGED":
                return 221;
            case "THUNDERSTORM_DRIZZLE_LIGHT":
                return 230;
            case "THUNDERSTORM_DRIZZLE":
                return 231;
            case "THUNDERSTORM_DRIZZLE_HEAVY":
                return 232;
 
            case "DRIZZLE_LIGHT":
                return 300;
            case "DRIZZLE":
                return 301;
            case "DRIZZLE_HEAVY":
                return 302;
            case "DRIZZLE_RAIN_LIGHT":
                return 310;
            case "DRIZZLE_RAIN":
                return 311;
            case "DRIZZLE_RAIN_HEAVY":
                return 312;
            case "DRIZZLE_SHOWER":
                return 321;
 
            case "RAIN_LIGHT":
                return 500;
            case "RAIN":
                return 501;
            case "RAIN_HEAVY":
                return 502;
            case "RAIN_VERY_HEAVY":
                return 503;
            case "RAIN_EXTREME":
                return 504;
            case "RAIN_FREEZING":
                return 511;
            case "RAIN_SHOWER_LIGHT":
                return 520;
            case "RAIN_SHOWER":
                return 521;
            case "RAIN_SHOWER_HEAVY":
                return 522;
 
            case "SNOW_LIGHT":
                return 600;
            case "SNOW":
                return 601;
            case "SNOW_HEAVY":
                return 602;
            case "SLEET":
                return 611;
            case "SNOW_SHOWER":
                return 621;
 
            case "MIST":
                return 701;
            case "SMOKE":
                return 711;
            case "HAZE":
                return 721;
            case "SAND_WHIRLS":
                return 731;
            case "FOG":
                return 741;
 
            case "CLOUDS_CLEAR":
                return 800;
            case "CLOUDS_FEW":
                return 801;
            case "CLOUDS_SCATTERED":
                return 802;
            case "CLOUDS_BROKEN":
                return 803;
            case "CLOUDS_OVERCAST":
                return 804;
 
            case "TORNADO":
                return 900;
            case "TROPICAL_STORM":
                return 901;
            case "HURRICANE":
                return 902;
            case "COLD":
                return 903;
            case "HOT":
                return 904;
            case "WINDY":
                return 905;
            case "HAIL":
                return 906;
        }
        return 3200;
    }
 
    private int getSpeedInKMH(int speed, String incomingUnit) {
        float kmhSpeed = 0;
        switch (incomingUnit) {
            case "MPS":
                kmhSpeed = speed * 3.6f;
                break;
            case "MPH":
                kmhSpeed = speed * 1.6093f;
                break;
            case "KPH":
                kmhSpeed = speed;
                break;
        }
        return Math.round(kmhSpeed);
    }
 
    private int mapDirToDeg(String dir) {
        return Math.round(WindDirection.valueOf(dir).ordinal() * 22.5f);
    }
 
    private enum WindDirection { // see upstream code, we can't be more precise than getting the quadrant
        N, NNE, NE, ENE, E, ESE, SE, SSE, S, SSW, SW, WSW, W, WNW, NW, NNW
    }
 
}