]> Pileus Git - grits/blob - src/plugin-radar.c
* Fixing some async issue (w/ gthread_init)
[grits] / src / plugin-radar.c
1 /*
2  * Copyright (C) 2009 Andy Spencer <spenceal@rose-hulman.edu>
3  * 
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include <config.h>
19 #include <gtk/gtk.h>
20 #include <gtk/gtkgl.h>
21 #include <GL/gl.h>
22 #include <math.h>
23 #include <rsl.h>
24
25 #include "aweather-gui.h"
26 #include "plugin-radar.h"
27 #include "data.h"
28
29 /****************
30  * GObject code *
31  ****************/
32 static void aweather_radar_plugin_init(AWeatherPluginInterface *iface);
33 static void _aweather_radar_expose(AWeatherPlugin *_radar);
34 G_DEFINE_TYPE_WITH_CODE(AWeatherRadar, aweather_radar, G_TYPE_OBJECT,
35                 G_IMPLEMENT_INTERFACE(AWEATHER_TYPE_PLUGIN,
36                         aweather_radar_plugin_init));
37 static void aweather_radar_class_init(AWeatherRadarClass *klass)
38 {
39         GObjectClass *object_class = (GObjectClass*)klass;
40 }
41 static void aweather_radar_plugin_init(AWeatherPluginInterface *iface)
42 {
43         /* Add methods to the interface */
44         iface->expose = _aweather_radar_expose;
45 }
46 static void aweather_radar_init(AWeatherRadar *radar)
47 {
48         /* Set defaults */
49         radar->gui = NULL;
50 }
51
52 /**************************
53  * Data loading functions *
54  **************************/
55 /* Convert a sweep to an 2d array of data points */
56 static void bscan_sweep(AWeatherRadar *self, Sweep *sweep, colormap_t *colormap,
57                 guint8 **data, int *width, int *height)
58 {
59         /* Calculate max number of bins */
60         int i, max_bins = 0;
61         for (i = 0; i < sweep->h.nrays; i++)
62                 max_bins = MAX(max_bins, sweep->ray[i]->h.nbins);
63
64         /* Allocate buffer using max number of bins for each ray */
65         guint8 *buf = g_malloc0(sweep->h.nrays * max_bins * 4);
66
67         /* Fill the data */
68         int ri, bi;
69         for (ri = 0; ri < sweep->h.nrays; ri++) {
70                 Ray *ray  = sweep->ray[ri];
71                 for (bi = 0; bi < ray->h.nbins; bi++) {
72                         /* copy RGBA into buffer */
73                         //guint val   = dz_f(ray->range[bi]);
74                         guint8 val   = (guint8)ray->h.f(ray->range[bi]);
75                         guint  buf_i = (ri*max_bins+bi)*4;
76                         buf[buf_i+0] = colormap->data[val][0];
77                         buf[buf_i+1] = colormap->data[val][1];
78                         buf[buf_i+2] = colormap->data[val][2];
79                         buf[buf_i+3] = colormap->data[val][3];
80                         if (val == BADVAL     || val == RFVAL      || val == APFLAG ||
81                             val == NOTFOUND_H || val == NOTFOUND_V || val == NOECHO) {
82                                 buf[buf_i+3] = 0x00; // transparent
83                         }
84                 }
85         }
86
87         /* set output */
88         *width  = max_bins;
89         *height = sweep->h.nrays;
90         *data   = buf;
91 }
92
93 /* Load a sweep as the active texture */
94 static void load_sweep(AWeatherRadar *self, Sweep *sweep)
95 {
96         aweather_gui_gl_begin(self->gui);
97         self->cur_sweep = sweep;
98         int height, width;
99         guint8 *data;
100         bscan_sweep(self, sweep, self->cur_colormap, &data, &width, &height);
101         glDeleteTextures(1, &self->cur_sweep_tex);
102         glGenTextures(1, &self->cur_sweep_tex);
103         glBindTexture(GL_TEXTURE_2D, self->cur_sweep_tex);
104         glPixelStorei(GL_PACK_ALIGNMENT, 1);
105         glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
106         glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
107         glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
108         glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, width, height, 0,
109                         GL_RGBA, GL_UNSIGNED_BYTE, data);
110         g_free(data);
111         aweather_gui_gl_redraw(self->gui);
112         aweather_gui_gl_end(self->gui);
113 }
114
115 static void load_colormap(AWeatherRadar *self, gchar *table)
116 {
117         /* Set colormap so we can draw it on expose */
118         for (int i = 0; colormaps[i].name; i++)
119                 if (g_str_equal(colormaps[i].name, table))
120                         self->cur_colormap = &colormaps[i];
121 }
122
123 /* Add selectors to the config area for the sweeps */
124 static void on_sweep_clicked(GtkRadioButton *button, gpointer _self);
125 static void load_radar_gui(AWeatherRadar *self, Radar *radar)
126 {
127         /* Clear existing items */
128         GtkWidget *child = gtk_bin_get_child(GTK_BIN(self->config_body));
129         if (child)
130                 gtk_widget_destroy(child);
131
132         gdouble elev;
133         guint rows = 1, cols = 1, cur_cols;
134         gchar row_label_str[64], col_label_str[64], button_str[64];
135         GtkWidget *row_label, *col_label, *button = NULL, *elev_box;
136         GtkWidget *table = gtk_table_new(rows, cols, FALSE);
137
138         for (guint vi = 0; vi < radar->h.nvolumes; vi++) {
139                 Volume *vol = radar->v[vi];
140                 if (vol == NULL) continue;
141                 rows++; cols = 1; elev = 0;
142
143                 /* Row label */
144                 g_snprintf(row_label_str, 64, "<b>%s:</b>", vol->h.type_str);
145                 row_label = gtk_label_new(row_label_str);
146                 gtk_label_set_use_markup(GTK_LABEL(row_label), TRUE);
147                 gtk_misc_set_alignment(GTK_MISC(row_label), 1, 0.5);
148                 gtk_table_attach(GTK_TABLE(table), row_label,
149                                 0,1, rows-1,rows, GTK_FILL,GTK_FILL, 5,0);
150
151                 for (guint si = 0; si < vol->h.nsweeps; si++) {
152                         Sweep *sweep = vol->sweep[si];
153                         if (sweep == NULL || sweep->h.elev == 0) continue;
154                         if (sweep->h.elev != elev) {
155                                 cols++;
156                                 elev = sweep->h.elev;
157
158                                 /* Column label */
159                                 g_object_get(table, "n-columns", &cur_cols, NULL);
160                                 if (cols >  cur_cols) {
161                                         g_snprintf(col_label_str, 64, "<b>%.2f°</b>", elev);
162                                         col_label = gtk_label_new(col_label_str);
163                                         gtk_label_set_use_markup(GTK_LABEL(col_label), TRUE);
164                                         gtk_widget_set_size_request(col_label, 40, -1);
165                                         gtk_table_attach(GTK_TABLE(table), col_label,
166                                                         cols-1,cols, 0,1, GTK_FILL,GTK_FILL, 0,0);
167                                 }
168
169                                 elev_box = gtk_hbox_new(TRUE, 0);
170                                 gtk_table_attach(GTK_TABLE(table), elev_box,
171                                                 cols-1,cols, rows-1,rows, GTK_FILL,GTK_FILL, 0,0);
172                         }
173
174
175                         /* Button */
176                         g_snprintf(button_str, 64, "%3.2f", elev);
177                         button = gtk_radio_button_new_with_label_from_widget(
178                                         GTK_RADIO_BUTTON(button), button_str);
179                         gtk_widget_set_size_request(button, -1, 26);
180                         //button = gtk_radio_button_new_from_widget(GTK_RADIO_BUTTON(button));
181                         //gtk_widget_set_size_request(button, -1, 22);
182                         g_object_set(button, "draw-indicator", FALSE, NULL);
183                         gtk_box_pack_end(GTK_BOX(elev_box), button, TRUE, TRUE, 0);
184
185                         g_object_set_data(G_OBJECT(button), "type",  vol->h.type_str);
186                         g_object_set_data(G_OBJECT(button), "sweep", sweep);
187                         g_signal_connect(button, "clicked", G_CALLBACK(on_sweep_clicked), self);
188                 }
189         }
190         gtk_container_add(GTK_CONTAINER(self->config_body), table);
191         gtk_widget_show_all(table);
192 }
193
194 /* Load a radar from a decompressed file */
195 static void load_radar(AWeatherRadar *self, gchar *radar_file)
196 {
197         char *dir  = g_path_get_dirname(radar_file);
198         char *site = g_path_get_basename(dir);
199         g_free(dir);
200         RSL_read_these_sweeps("all", NULL);
201         if (self->cur_radar) {
202                 g_debug("AWeatherRadar: load_radar - Freeing old radar");
203                 RSL_free_radar(self->cur_radar);
204         }
205         g_debug("AWeatherRadar: load_radar - Loading new radar");
206         Radar *radar = self->cur_radar = RSL_wsr88d_to_radar(radar_file, site);
207         if (radar == NULL) {
208                 g_warning("fail to load radar: path=%s, site=%s", radar_file, site);
209                 g_free(site);
210                 return;
211         }
212         g_free(site);
213
214         /* Load the first sweep by default */
215         if (radar->h.nvolumes < 1 || radar->v[0]->h.nsweeps < 1) {
216                 g_warning("No sweeps found\n");
217         } else {
218                 /* load first available sweep */
219                 for (int vi = 0; vi < radar->h.nvolumes; vi++) {
220                         if (radar->v[vi]== NULL) continue;
221                         for (int si = 0; si < radar->v[vi]->h.nsweeps; si++) {
222                                 if (radar->v[vi]->sweep[si]== NULL) continue;
223                                 load_colormap(self, radar->v[vi]->h.type_str);
224                                 load_sweep(self, radar->v[vi]->sweep[si]);
225                                 break;
226                         }
227                         break;
228                 }
229         }
230
231         load_radar_gui(self, radar);
232 }
233
234 static void update_times(AWeatherRadar *self, char *site, char **last_time)
235 {
236         char *list_uri = g_strdup_printf(
237                         "http://mesonet.agron.iastate.edu/data/nexrd2/raw/K%s/dir.list",
238                         site);
239         GFile *list    = g_file_new_for_uri(list_uri);
240         g_free(list_uri);
241
242         gchar *data;
243         gsize length;
244         GError *error = NULL;
245         g_file_load_contents(list, NULL, &data, &length, NULL, &error);
246         g_object_unref(list);
247         if (error) {
248                 g_warning("Error loading list for %s: %s", site, error->message);
249                 g_error_free(error);
250                 return;
251         }
252         gchar **lines = g_strsplit(data, "\n", -1);
253         GtkTreeView  *tview  = GTK_TREE_VIEW(aweather_gui_get_widget(self->gui, "time"));
254         GtkListStore *lstore = GTK_LIST_STORE(gtk_tree_view_get_model(tview));
255         gtk_list_store_clear(lstore);
256         GtkTreeIter iter;
257         for (int i = 0; lines[i] && lines[i][0]; i++) {
258                 // format: `841907 KABR_20090510_0159'
259                 //g_message("\tadding %p [%s]", lines[i], lines[i]);
260                 char **parts = g_strsplit(lines[i], " ", 2);
261                 char *time = parts[1]+5;
262                 gtk_list_store_insert(lstore, &iter, 0);
263                 gtk_list_store_set(lstore, &iter, 0, time, -1);
264                 g_strfreev(parts);
265         }
266
267         if (last_time)
268                 gtk_tree_model_get(GTK_TREE_MODEL(lstore), &iter, 0, last_time, -1);
269
270         g_free(data);
271         g_strfreev(lines);
272 }
273
274 /*****************
275  * ASync helpers *
276  *****************/
277 typedef struct {
278         AWeatherRadar *self;
279         gchar *radar_file;
280 } decompressed_t;
281
282 static void decompressed_cb(GPid pid, gint status, gpointer _self)
283 {
284         decompressed_t *udata = _self;
285         if (status != 0) {
286                 g_warning("wsr88ddec exited with status %d", status);
287                 return;
288         }
289         // TODO: pass cur_file as params? 
290         load_radar(udata->self, udata->radar_file);
291         g_free(udata->radar_file);
292         g_free(udata);
293 }
294
295 static void cached_cb(char *path, gboolean updated, gpointer _self)
296 {
297         AWeatherRadar *self = AWEATHER_RADAR(_self);
298         char *decompressed = g_strconcat(path, ".raw", NULL);
299         if (!updated) {
300                 load_radar(self, decompressed);
301                 return;
302         }
303
304         decompressed_t *udata = g_malloc(sizeof(decompressed_t));
305         udata->self       = self;
306         udata->radar_file = decompressed;
307         g_debug("AWeatherRadar: cached_cb - File updated, decompressing..");
308         char *argv[] = {"wsr88ddec", path, decompressed, NULL};
309         GPid pid;
310         GError *error = NULL;
311         g_spawn_async(
312                 NULL,    // const gchar *working_directory,
313                 argv,    // gchar **argv,
314                 NULL,    // gchar **envp,
315                 G_SPAWN_SEARCH_PATH|
316                 G_SPAWN_DO_NOT_REAP_CHILD, 
317                          // GSpawnFlags flags,
318                 NULL,    // GSpawnChildSetupFunc child_setup,
319                 NULL,    // gpointer user_data,
320                 &pid,    // GPid *child_pid,
321                 &error); // GError **error
322         if (error) {
323                 g_warning("failed to decompress WSR88D data: %s",
324                                 error->message);
325                 g_error_free(error);
326         }
327         g_child_watch_add(pid, decompressed_cb, udata);
328 }
329
330 /*************
331  * Callbacks *
332  *************/
333 static void on_sweep_clicked(GtkRadioButton *button, gpointer _self)
334 {
335         AWeatherRadar *self = AWEATHER_RADAR(_self);
336         load_colormap(self, g_object_get_data(G_OBJECT(button), "type" ));
337         load_sweep   (self, g_object_get_data(G_OBJECT(button), "sweep"));
338 }
339
340 static void on_time_changed(AWeatherView *view, char *time, gpointer _self)
341 {
342         AWeatherRadar *self = AWEATHER_RADAR(_self);
343         g_debug("AWeatherRadar: on_time_changed - setting time");
344         // format: http://mesonet.agron.iastate.edu/data/nexrd2/raw/KABR/KABR_20090510_0323
345         char *site = aweather_view_get_site(view);
346         char *base = "http://mesonet.agron.iastate.edu/data/";
347         char *path = g_strdup_printf("nexrd2/raw/K%s/K%s_%s", site, site, time);
348
349         self->cur_radar = NULL;
350         self->cur_sweep = NULL; // Clear radar
351         aweather_gui_gl_redraw(self->gui);
352
353         cache_file(base, path, AWEATHER_AUTOMATIC, cached_cb, self);
354         g_free(path);
355 }
356
357 static void on_site_changed(AWeatherView *view, char *site, gpointer _self)
358 {
359         AWeatherRadar *self = AWEATHER_RADAR(_self);
360         g_debug("AWeatherRadar: on_site_changed - Loading wsr88d list for %s", site);
361         char *time = NULL;
362         update_times(self, site, &time);
363         aweather_view_set_time(view, time);
364
365         g_free(time);
366 }
367
368 static void on_refresh(AWeatherView *view, gpointer user_data, gpointer _self)
369 {
370         AWeatherRadar *self = AWEATHER_RADAR(_self);
371         char *site = aweather_view_get_site(view);
372         char *time = NULL;
373         update_times(self, site, &time);
374         aweather_view_set_time(view, time);
375         g_free(time);
376 }
377
378 /***********
379  * Methods *
380  ***********/
381 AWeatherRadar *aweather_radar_new(AWeatherGui *gui)
382 {
383         g_debug("AWeatherRadar: new");
384         AWeatherRadar *self = g_object_new(AWEATHER_TYPE_RADAR, NULL);
385         self->gui = gui;
386
387         GtkWidget    *config  = aweather_gui_get_widget(gui, "tabs");
388         AWeatherView *view    = aweather_gui_get_view(gui);
389
390         /* Add configuration tab */
391         self->config_body = gtk_alignment_new(0, 0, 1, 1);
392         gtk_container_set_border_width(GTK_CONTAINER(self->config_body), 5);
393         gtk_container_add(GTK_CONTAINER(self->config_body), gtk_label_new("No radar loaded"));
394         gtk_notebook_prepend_page(GTK_NOTEBOOK(config), self->config_body, gtk_label_new("Radar"));
395
396         /* Set up OpenGL Stuff */
397         g_signal_connect(view,    "site-changed", G_CALLBACK(on_site_changed), self);
398         g_signal_connect(view,    "time-changed", G_CALLBACK(on_time_changed), self);
399         g_signal_connect(view,    "refresh",      G_CALLBACK(on_refresh),      self);
400
401         return self;
402 }
403
404 static void _aweather_radar_expose(AWeatherPlugin *_self)
405 {
406         AWeatherRadar *self = AWEATHER_RADAR(_self);
407         g_debug("AWeatherRadar: expose");
408         if (self->cur_sweep == NULL)
409                 return;
410         Sweep *sweep = self->cur_sweep;
411
412         /* Draw the rays */
413
414         glMatrixMode(GL_MODELVIEW);
415         glPushMatrix();
416         glBindTexture(GL_TEXTURE_2D, self->cur_sweep_tex);
417         glEnable(GL_TEXTURE_2D);
418         glDisable(GL_ALPHA_TEST);
419         glColor4f(1,1,1,1);
420         glBegin(GL_QUAD_STRIP);
421         for (int ri = 0; ri <= sweep->h.nrays; ri++) {
422                 Ray  *ray = NULL;
423                 double angle = 0;
424                 if (ri < sweep->h.nrays) {
425                         ray = sweep->ray[ri];
426                         angle = ((ray->h.azimuth - ((double)ray->h.beam_width/2.))*M_PI)/180.0; 
427                 } else {
428                         /* Do the right side of the last sweep */
429                         ray = sweep->ray[ri-1];
430                         angle = ((ray->h.azimuth + ((double)ray->h.beam_width/2.))*M_PI)/180.0; 
431                 }
432
433                 double lx = sin(angle);
434                 double ly = cos(angle);
435
436                 double near_dist = ray->h.range_bin1;
437                 double far_dist  = ray->h.nbins*ray->h.gate_size + ray->h.range_bin1;
438
439                 /* (find middle of bin) / scale for opengl */
440                 // near left
441                 glTexCoord2f(0.0, (double)ri/sweep->h.nrays-0.01);
442                 glVertex3f(lx*near_dist, ly*near_dist, 2.0);
443
444                 // far  left
445                 glTexCoord2f(1.0, (double)ri/sweep->h.nrays-0.01);
446                 glVertex3f(lx*far_dist,  ly*far_dist,  2.0);
447         }
448         //g_print("ri=%d, nr=%d, bw=%f\n", _ri, sweep->h.nrays, sweep->h.beam_width);
449         glEnd();
450         glPopMatrix();
451
452         /* Texture debug */
453         //glBegin(GL_QUADS);
454         //glTexCoord2d( 0.,  0.); glVertex3f(-500.,   0., 0.); // bot left
455         //glTexCoord2d( 0.,  1.); glVertex3f(-500., 500., 0.); // top left
456         //glTexCoord2d( 1.,  1.); glVertex3f( 0.,   500., 3.); // top right
457         //glTexCoord2d( 1.,  0.); glVertex3f( 0.,     0., 3.); // bot right
458         //glEnd();
459
460         /* Print the color table */
461         glDisable(GL_TEXTURE_2D);
462         glDisable(GL_DEPTH_TEST);
463         glMatrixMode(GL_MODELVIEW ); glPushMatrix(); glLoadIdentity();
464         glMatrixMode(GL_PROJECTION); glPushMatrix(); glLoadIdentity();
465         glBegin(GL_QUADS);
466         int i;
467         for (i = 0; i < 256; i++) {
468                 glColor4ub(self->cur_colormap->data[i][0],
469                            self->cur_colormap->data[i][1],
470                            self->cur_colormap->data[i][2],
471                            self->cur_colormap->data[i][3]);
472                 glVertex3f(-1.0, (float)((i  ) - 256/2)/(256/2), 0.0); // bot left
473                 glVertex3f(-1.0, (float)((i+1) - 256/2)/(256/2), 0.0); // top left
474                 glVertex3f(-0.9, (float)((i+1) - 256/2)/(256/2), 0.0); // top right
475                 glVertex3f(-0.9, (float)((i  ) - 256/2)/(256/2), 0.0); // bot right
476         }
477         glEnd();
478         glEnable(GL_DEPTH_TEST);
479         glEnable(GL_ALPHA_TEST);
480         glMatrixMode(GL_PROJECTION); glPopMatrix(); 
481         glMatrixMode(GL_MODELVIEW ); glPopMatrix();
482 }