From David Howells :
[obnox/wireshark/wip.git] / gtk / gsm_map_stat.c
1 /* gsm_map_stat.c
2  *
3  * Copyright 2004, Michael Lum <mlum [AT] telostech.com>
4  * In association with Telos Technology Inc.
5  *
6  * MUCH code modified from service_response_time_table.c.
7  *
8  * $Id$
9  *
10  * Wireshark - Network traffic analyzer
11  * By Gerald Combs <gerald@wireshark.org>
12  * Copyright 1998 Gerald Combs
13  *
14  * This program is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU General Public License
16  * as published by the Free Software Foundation; either version 2
17  * of the License, or (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
27  */
28
29 /*
30  * This TAP provides statistics for GSM MAP Operations:
31  */
32
33 #ifdef HAVE_CONFIG_H
34 # include "config.h"
35 #endif
36
37 #include <gtk/gtk.h>
38 #include <string.h>
39
40 #include "epan/packet_info.h"
41 #include "epan/epan.h"
42 #include "epan/value_string.h"
43 #include <epan/stat_cmd_args.h>
44 #include "../stat_menu.h"
45 #include "gui_stat_menu.h"
46 #include "image/clist_ascend.xpm"
47 #include "image/clist_descend.xpm"
48 #include "simple_dialog.h"
49 #include "dlg_utils.h"
50 #include "gui_utils.h"
51 #include <epan/tap.h>
52 #include "../register.h"
53 #include "../globals.h"
54 #include "filter_dlg.h"
55 #include "compat_macros.h"
56
57 #include <epan/asn1.h>
58 #include <epan/dissectors/packet-gsm_map.h>
59 #include "gsm_map_stat.h"
60
61 typedef struct column_arrows {
62     GtkWidget           *table;
63     GtkWidget           *ascend_pm;
64     GtkWidget           *descend_pm;
65 } column_arrows;
66
67 #define GSM_MAP_INIT_TABLE_NUM_COLUMNS          10
68
69 typedef struct _my_columns_t {
70     guint32             value;
71     const gchar         *strptr;
72     GtkJustification    just;
73 } my_columns_t;
74
75 static my_columns_t columns[GSM_MAP_INIT_TABLE_NUM_COLUMNS] = {
76     { 40,       "ID",                   GTK_JUSTIFY_LEFT },
77     { 210,      "Operation Code",       GTK_JUSTIFY_LEFT },
78     { 60,       "Invokes",              GTK_JUSTIFY_RIGHT },
79     { 100,      "Num Bytes",            GTK_JUSTIFY_RIGHT },
80     { 80,       "Avg Bytes",            GTK_JUSTIFY_RIGHT },
81     { 60,       "RetResult",            GTK_JUSTIFY_RIGHT },
82     { 100,      "Num Bytes",            GTK_JUSTIFY_RIGHT },
83     { 80,       "Avg Bytes",            GTK_JUSTIFY_RIGHT },
84     { 100,      "Total Bytes",          GTK_JUSTIFY_RIGHT },
85     { 80,       "Avg Bytes",            GTK_JUSTIFY_RIGHT }
86 };
87
88 typedef struct _gsm_map_stat_dlg_t {
89     GtkWidget           *win;
90     GtkWidget           *scrolled_win;
91     GtkWidget           *table;
92     char                *entries[GSM_MAP_INIT_TABLE_NUM_COLUMNS];
93 } gsm_map_stat_dlg_t;
94
95 static gsm_map_stat_dlg_t       dlg;
96
97 /*
98  * used by gsm_map_summary.c
99  */
100 gsm_map_stat_t                  gsm_map_stat;
101
102
103 static void
104 gsm_map_stat_reset(
105     void                *tapdata)
106 {
107     gsm_map_stat_t      *stat_p = tapdata;
108
109     memset(stat_p, 0, sizeof(gsm_map_stat_t));
110 }
111
112
113 static int
114 gsm_map_stat_packet(
115     void                *tapdata,
116     packet_info         *pinfo _U_,
117     epan_dissect_t      *edt _U_,
118     const void          *data)
119 {
120     gsm_map_stat_t      *stat_p = tapdata;
121     const gsm_map_tap_rec_t     *data_p = data;
122
123 #if 0   /* always false because message_type is 8 bit value */
124     if (data_p->opr_code_idx > sizeof(stat_p->opr_code))
125     {
126         /*
127          * unknown message type !!!
128          */
129         return(0);
130     }
131 #endif
132
133     if (data_p->invoke)
134     {
135         stat_p->opr_code[data_p->opr_code_idx]++;
136         stat_p->size[data_p->opr_code_idx] += data_p->size;
137     }
138     else
139     {
140         stat_p->opr_code_rr[data_p->opr_code_idx]++;
141         stat_p->size_rr[data_p->opr_code_idx] += data_p->size;
142     }
143
144     return(1);
145 }
146
147
148 static void
149 gsm_map_stat_draw(
150     void                *tapdata)
151 {
152     gsm_map_stat_t      *stat_p = tapdata;
153     int                 i, j;
154     char                *strp;
155
156     if (dlg.win && tapdata)
157     {
158         i = 0;
159
160         while (gsm_map_opr_code_strings[i].strptr)
161         {
162             j = gtk_clist_find_row_from_data(GTK_CLIST(dlg.table), (gpointer)(long)  i);
163
164             strp = g_strdup_printf("%d", stat_p->opr_code[i]);
165             gtk_clist_set_text(GTK_CLIST(dlg.table), j, 2, strp);
166             g_free(strp);
167
168             strp = g_strdup_printf("%.0f", stat_p->size[i]);
169             gtk_clist_set_text(GTK_CLIST(dlg.table), j, 3, strp);
170             g_free(strp);
171
172                 if (stat_p->opr_code[i] >0)
173                                 strp = g_strdup_printf("%.2f",stat_p->size[i]/stat_p->opr_code[i]);
174                 else strp=g_strdup_printf("--");
175             gtk_clist_set_text(GTK_CLIST(dlg.table), j, 4, strp);
176             g_free(strp);
177
178             strp = g_strdup_printf("%u", stat_p->opr_code_rr[i]);
179             gtk_clist_set_text(GTK_CLIST(dlg.table), j, 5, strp);
180             g_free(strp);
181
182             strp = g_strdup_printf("%.0f", stat_p->size_rr[i]);
183             gtk_clist_set_text(GTK_CLIST(dlg.table), j, 6, strp);
184             g_free(strp);
185
186                 if (stat_p->opr_code_rr[i]>0)
187                         strp = g_strdup_printf("%.2f",stat_p->size_rr[i]/stat_p->opr_code_rr[i]);
188                 else strp=g_strdup_printf("--");
189             gtk_clist_set_text(GTK_CLIST(dlg.table), j, 7, strp);
190             g_free(strp);
191
192             strp = g_strdup_printf("%.0f", stat_p->size[i] + stat_p->size_rr[i]);
193             gtk_clist_set_text(GTK_CLIST(dlg.table), j, 8, strp);
194             g_free(strp);
195
196                 if ((stat_p->opr_code[i] + stat_p->opr_code_rr[i])>0)
197                         strp = g_strdup_printf("%.2f",
198                                                 (stat_p->size[i] +stat_p->size_rr[i])/(stat_p->opr_code[i] + stat_p->opr_code_rr[i]));
199                 else strp=g_strdup_printf("--");
200             gtk_clist_set_text(GTK_CLIST(dlg.table), j, 9, strp);
201             g_free(strp);
202
203             i++;
204         }
205
206         gtk_clist_sort(GTK_CLIST(dlg.table));
207     }
208 }
209
210
211 static void
212 gsm_map_stat_gtk_click_column_cb(
213     GtkCList            *clist,
214     gint                column,
215     gpointer            data)
216 {
217     column_arrows       *col_arrows = (column_arrows *) data;
218     int                 i;
219
220
221     gtk_clist_freeze(clist);
222
223     for (i=0; i < GSM_MAP_INIT_TABLE_NUM_COLUMNS; i++)
224     {
225         gtk_widget_hide(col_arrows[i].ascend_pm);
226         gtk_widget_hide(col_arrows[i].descend_pm);
227     }
228
229     if (column == clist->sort_column)
230     {
231         if (clist->sort_type == GTK_SORT_ASCENDING)
232         {
233             clist->sort_type = GTK_SORT_DESCENDING;
234             gtk_widget_show(col_arrows[column].descend_pm);
235         }
236         else
237         {
238             clist->sort_type = GTK_SORT_ASCENDING;
239             gtk_widget_show(col_arrows[column].ascend_pm);
240         }
241     }
242     else
243     {
244         /*
245          * Columns 0-1 sorted in descending order by default
246          */
247         if (column <= 1)
248         {
249             clist->sort_type = GTK_SORT_ASCENDING;
250             gtk_widget_show(col_arrows[column].ascend_pm);
251         }
252         else
253         {
254             clist->sort_type = GTK_SORT_DESCENDING;
255             gtk_widget_show(col_arrows[column].descend_pm);
256         }
257
258         gtk_clist_set_sort_column(clist, column);
259     }
260
261     gtk_clist_thaw(clist);
262     gtk_clist_sort(clist);
263 }
264
265
266 static gint
267 gsm_map_stat_gtk_sort_column(
268     GtkCList            *clist,
269     gconstpointer       ptr1,
270     gconstpointer       ptr2)
271 {
272     const GtkCListRow           *row1 = (const GtkCListRow *) ptr1;
273     const GtkCListRow           *row2 = (const GtkCListRow *) ptr2;
274     char                *text1 = NULL;
275     char                *text2 = NULL;
276     int                 i1, i2;
277
278     text1 = GTK_CELL_TEXT(row1->cell[clist->sort_column])->text;
279     text2 = GTK_CELL_TEXT(row2->cell[clist->sort_column])->text;
280
281     switch (clist->sort_column)
282     {
283     case 1:
284         /* text columns */
285         return(strcmp(text1, text2));
286
287     default:
288         /* number columns */
289         i1 = strtol(text1, NULL, 0);
290         i2 = strtol(text2, NULL, 0);
291         return(i1 - i2);
292     }
293
294     g_assert_not_reached();
295
296     return(0);
297 }
298
299
300 static void
301 gsm_map_stat_gtk_win_destroy_cb(
302     GtkWindow           *win _U_,
303     gpointer            user_data _U_)
304 {
305     memset((void *) user_data, 0, sizeof(gsm_map_stat_dlg_t));
306 }
307
308
309 static void
310 gsm_map_stat_gtk_win_create(
311     gsm_map_stat_dlg_t  *dlg_p,
312     const char          *title)
313 {
314     int                 i;
315     column_arrows       *col_arrows;
316     GtkWidget           *column_lb;
317     GtkWidget           *vbox;
318     GtkWidget           *bt_close;
319     GtkWidget           *bbox;
320
321
322     dlg_p->win = window_new(GTK_WINDOW_TOPLEVEL, title);
323     gtk_window_set_default_size(GTK_WINDOW(dlg_p->win), 560, 390);
324
325     vbox = gtk_vbox_new(FALSE, 3);
326         gtk_container_add(GTK_CONTAINER(dlg_p->win), vbox);
327     gtk_container_set_border_width(GTK_CONTAINER(vbox), 12);
328
329     dlg_p->scrolled_win = scrolled_window_new(NULL, NULL);
330     gtk_box_pack_start(GTK_BOX(vbox), dlg_p->scrolled_win, TRUE, TRUE, 0);
331
332     dlg_p->table = gtk_clist_new(GSM_MAP_INIT_TABLE_NUM_COLUMNS);
333
334     col_arrows =
335         (column_arrows *) g_malloc(sizeof(column_arrows) * GSM_MAP_INIT_TABLE_NUM_COLUMNS);
336
337     for (i = 0; i < GSM_MAP_INIT_TABLE_NUM_COLUMNS; i++)
338     {
339         col_arrows[i].table = gtk_table_new(2, 2, FALSE);
340
341         gtk_table_set_col_spacings(GTK_TABLE(col_arrows[i].table), 5);
342
343         column_lb = gtk_label_new(columns[i].strptr);
344
345         gtk_table_attach(GTK_TABLE(col_arrows[i].table), column_lb,
346             0, 1, 0, 2, GTK_SHRINK, GTK_SHRINK, 0, 0);
347
348         gtk_widget_show(column_lb);
349
350         col_arrows[i].ascend_pm = xpm_to_widget(clist_ascend_xpm);
351
352         gtk_table_attach(GTK_TABLE(col_arrows[i].table), col_arrows[i].ascend_pm,
353             1, 2, 1, 2, GTK_SHRINK, GTK_SHRINK, 0, 0);
354
355         col_arrows[i].descend_pm = xpm_to_widget(clist_descend_xpm);
356
357         gtk_table_attach(GTK_TABLE(col_arrows[i].table), col_arrows[i].descend_pm,
358             1, 2, 0, 1, GTK_SHRINK, GTK_SHRINK, 0, 0);
359
360         if (i == 0)
361         {
362             /* default column sorting */
363             gtk_widget_show(col_arrows[i].ascend_pm);
364         }
365
366         gtk_clist_set_column_justification(GTK_CLIST(dlg_p->table), i, columns[i].just);
367
368         gtk_clist_set_column_widget(GTK_CLIST(dlg_p->table), i, col_arrows[i].table);
369         gtk_widget_show(col_arrows[i].table);
370     }
371     gtk_clist_column_titles_show(GTK_CLIST(dlg_p->table));
372
373     gtk_clist_set_compare_func(GTK_CLIST(dlg_p->table), gsm_map_stat_gtk_sort_column);
374     gtk_clist_set_sort_column(GTK_CLIST(dlg_p->table), 0);
375     gtk_clist_set_sort_type(GTK_CLIST(dlg_p->table), GTK_SORT_ASCENDING);
376
377     for (i = 0; i < GSM_MAP_INIT_TABLE_NUM_COLUMNS; i++)
378     {
379         gtk_clist_set_column_width(GTK_CLIST(dlg_p->table), i, columns[i].value);
380     }
381
382     gtk_clist_set_shadow_type(GTK_CLIST(dlg_p->table), GTK_SHADOW_IN);
383     gtk_clist_column_titles_show(GTK_CLIST(dlg_p->table));
384     gtk_container_add(GTK_CONTAINER(dlg_p->scrolled_win), dlg_p->table);
385
386     SIGNAL_CONNECT(dlg_p->table, "click-column", gsm_map_stat_gtk_click_column_cb, col_arrows);
387
388     /* Button row. */
389     bbox = dlg_button_row_new(GTK_STOCK_CLOSE, NULL);
390     gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0);
391
392     bt_close = OBJECT_GET_DATA(bbox, GTK_STOCK_CLOSE);
393     window_set_cancel_button(dlg_p->win, bt_close, window_cancel_button_cb);
394
395     SIGNAL_CONNECT(dlg_p->win, "delete_event", window_delete_event_cb, NULL);
396     SIGNAL_CONNECT(dlg_p->win, "destroy", gsm_map_stat_gtk_win_destroy_cb, dlg_p);
397
398     gtk_widget_show_all(dlg_p->win);
399     window_present(dlg_p->win);
400 }
401
402
403 static void
404 gsm_map_stat_gtk_cb(
405     GtkWidget           *w _U_,
406     gpointer            d _U_)
407 {
408     int                 i,j;
409
410
411     /*
412      * if the window is already open, bring it to front
413      */
414     if (dlg.win)
415     {
416         gdk_window_raise(dlg.win->window);
417         return;
418     }
419
420     gsm_map_stat_gtk_win_create(&dlg, "GSM MAP Operation Statistics");
421
422     i = 0;
423     while (gsm_map_opr_code_strings[i].strptr)
424     {
425         dlg.entries[0] = g_strdup_printf("%u",
426                                          gsm_map_opr_code_strings[i].value);
427
428         dlg.entries[1] = g_strdup(gsm_map_opr_code_strings[i].strptr);
429
430         /*
431          * set the rest of the columns
432          */
433         for (j = 2; j < GSM_MAP_INIT_TABLE_NUM_COLUMNS; j++)
434         {
435             dlg.entries[j] = g_strdup("0");
436         }
437
438         gtk_clist_insert(GTK_CLIST(dlg.table), i, dlg.entries);
439         gtk_clist_set_row_data(GTK_CLIST(dlg.table), i, (gpointer)(long)  i);
440
441         i++;
442     }
443
444     gsm_map_stat_draw(&gsm_map_stat);
445 }
446
447
448 static void
449 gsm_map_stat_gtk_init(const char                *optarg _U_,
450                       void* userdata _U_)
451 {
452     gsm_map_stat_gtk_cb(NULL, NULL);
453 }
454
455
456 void
457 register_tap_listener_gtkgsm_map_stat(void)
458 {
459     GString             *err_p;
460
461
462     memset((void *) &gsm_map_stat, 0, sizeof(gsm_map_stat_t));
463
464     err_p =
465         register_tap_listener("gsm_map", &gsm_map_stat, NULL,
466             gsm_map_stat_reset,
467             gsm_map_stat_packet,
468             gsm_map_stat_draw);
469
470     if (err_p != NULL)
471     {
472         simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, err_p->str);
473         g_string_free(err_p, TRUE);
474
475         exit(1);
476     }
477
478     register_stat_menu_item("GSM/MAP Operation",  REGISTER_STAT_GROUP_TELEPHONY,
479         gsm_map_stat_gtk_cb, NULL, NULL, NULL);
480     register_stat_cmd_arg("gsm_map", gsm_map_stat_gtk_init,NULL);
481 }