name change
[metze/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/dissectors/packet-gsm_map.h>
58 #include "gsm_map_stat.h"
59
60 typedef struct column_arrows {
61     GtkWidget           *table;
62     GtkWidget           *ascend_pm;
63     GtkWidget           *descend_pm;
64 } column_arrows;
65
66 #define GSM_MAP_INIT_TABLE_NUM_COLUMNS          10
67
68 typedef struct _my_columns_t {
69     guint32             value;
70     const gchar         *strptr;
71     GtkJustification    just;
72 } my_columns_t;
73
74 static my_columns_t columns[GSM_MAP_INIT_TABLE_NUM_COLUMNS] = {
75     { 40,       "ID",                   GTK_JUSTIFY_LEFT },
76     { 210,      "Operation Code",       GTK_JUSTIFY_LEFT },
77     { 60,       "Invokes",              GTK_JUSTIFY_RIGHT },
78     { 100,      "Num Bytes",            GTK_JUSTIFY_RIGHT },
79     { 80,       "Avg Bytes",            GTK_JUSTIFY_RIGHT },
80     { 60,       "RetResult",            GTK_JUSTIFY_RIGHT },
81     { 100,      "Num Bytes",            GTK_JUSTIFY_RIGHT },
82     { 80,       "Avg Bytes",            GTK_JUSTIFY_RIGHT },
83     { 100,      "Total Bytes",          GTK_JUSTIFY_RIGHT },
84     { 80,       "Avg Bytes",            GTK_JUSTIFY_RIGHT }
85 };
86
87 typedef struct _gsm_map_stat_dlg_t {
88     GtkWidget           *win;
89     GtkWidget           *scrolled_win;
90     GtkWidget           *table;
91     char                *entries[GSM_MAP_INIT_TABLE_NUM_COLUMNS];
92 } gsm_map_stat_dlg_t;
93
94 static gsm_map_stat_dlg_t       dlg;
95
96 /*
97  * used by gsm_map_summary.c
98  */
99 gsm_map_stat_t                  gsm_map_stat;
100
101
102 static void
103 gsm_map_stat_reset(
104     void                *tapdata)
105 {
106     gsm_map_stat_t      *stat_p = tapdata;
107
108     memset(stat_p, 0, sizeof(gsm_map_stat_t));
109 }
110
111
112 static int
113 gsm_map_stat_packet(
114     void                *tapdata,
115     packet_info         *pinfo _U_,
116     epan_dissect_t      *edt _U_,
117     const void          *data)
118 {
119     gsm_map_stat_t      *stat_p = tapdata;
120     const gsm_map_tap_rec_t     *data_p = data;
121
122 #if 0   /* always false because message_type is 8 bit value */
123     if (data_p->opr_code_idx > sizeof(stat_p->opr_code))
124     {
125         /*
126          * unknown message type !!!
127          */
128         return(0);
129     }
130 #endif
131
132     if (data_p->invoke)
133     {
134         stat_p->opr_code[data_p->opr_code_idx]++;
135         stat_p->size[data_p->opr_code_idx] += data_p->size;
136     }
137     else
138     {
139         stat_p->opr_code_rr[data_p->opr_code_idx]++;
140         stat_p->size_rr[data_p->opr_code_idx] += data_p->size;
141     }
142
143     return(1);
144 }
145
146
147 static void
148 gsm_map_stat_draw(
149     void                *tapdata)
150 {
151     gsm_map_stat_t      *stat_p = tapdata;
152     int                 i, j;
153     char                *strp;
154
155     if (dlg.win && tapdata)
156     {
157         i = 0;
158
159         while (gsm_map_opr_code_strings[i].strptr)
160         {
161             j = gtk_clist_find_row_from_data(GTK_CLIST(dlg.table), (gpointer) i);
162
163             strp = g_strdup_printf("%d", stat_p->opr_code[i]);
164             gtk_clist_set_text(GTK_CLIST(dlg.table), j, 2, strp);
165             g_free(strp);
166
167             strp = g_strdup_printf("%.0f", stat_p->size[i]);
168             gtk_clist_set_text(GTK_CLIST(dlg.table), j, 3, strp);
169             g_free(strp);
170
171                 if (stat_p->opr_code[i] >0)
172                                 strp = g_strdup_printf("%.2f",stat_p->size[i]/stat_p->opr_code[i]);
173                 else strp=g_strdup_printf("--");
174             gtk_clist_set_text(GTK_CLIST(dlg.table), j, 4, strp);
175             g_free(strp);
176
177             strp = g_strdup_printf("%u", stat_p->opr_code_rr[i]);
178             gtk_clist_set_text(GTK_CLIST(dlg.table), j, 5, strp);
179             g_free(strp);
180
181             strp = g_strdup_printf("%.0f", stat_p->size_rr[i]);
182             gtk_clist_set_text(GTK_CLIST(dlg.table), j, 6, strp);
183             g_free(strp);
184
185                 if (stat_p->opr_code_rr[i]>0)
186                         strp = g_strdup_printf("%.2f",stat_p->size_rr[i]/stat_p->opr_code_rr[i]);
187                 else strp=g_strdup_printf("--");
188             gtk_clist_set_text(GTK_CLIST(dlg.table), j, 7, strp);
189             g_free(strp);
190
191             strp = g_strdup_printf("%.0f", stat_p->size[i] + stat_p->size_rr[i]);
192             gtk_clist_set_text(GTK_CLIST(dlg.table), j, 8, strp);
193             g_free(strp);
194
195                 if ((stat_p->opr_code[i] + stat_p->opr_code_rr[i])>0)
196                         strp = g_strdup_printf("%.2f",
197                                                 (stat_p->size[i] +stat_p->size_rr[i])/(stat_p->opr_code[i] + stat_p->opr_code_rr[i]));
198                 else strp=g_strdup_printf("--");
199             gtk_clist_set_text(GTK_CLIST(dlg.table), j, 9, strp);
200             g_free(strp);
201
202             i++;
203         }
204
205         gtk_clist_sort(GTK_CLIST(dlg.table));
206     }
207 }
208
209
210 static void
211 gsm_map_stat_gtk_click_column_cb(
212     GtkCList            *clist,
213     gint                column,
214     gpointer            data)
215 {
216     column_arrows       *col_arrows = (column_arrows *) data;
217     int                 i;
218
219
220     gtk_clist_freeze(clist);
221
222     for (i=0; i < GSM_MAP_INIT_TABLE_NUM_COLUMNS; i++)
223     {
224         gtk_widget_hide(col_arrows[i].ascend_pm);
225         gtk_widget_hide(col_arrows[i].descend_pm);
226     }
227
228     if (column == clist->sort_column)
229     {
230         if (clist->sort_type == GTK_SORT_ASCENDING)
231         {
232             clist->sort_type = GTK_SORT_DESCENDING;
233             gtk_widget_show(col_arrows[column].descend_pm);
234         }
235         else
236         {
237             clist->sort_type = GTK_SORT_ASCENDING;
238             gtk_widget_show(col_arrows[column].ascend_pm);
239         }
240     }
241     else
242     {
243         /*
244          * Columns 0-1 sorted in descending order by default
245          */
246         if (column <= 1)
247         {
248             clist->sort_type = GTK_SORT_ASCENDING;
249             gtk_widget_show(col_arrows[column].ascend_pm);
250         }
251         else
252         {
253             clist->sort_type = GTK_SORT_DESCENDING;
254             gtk_widget_show(col_arrows[column].descend_pm);
255         }
256
257         gtk_clist_set_sort_column(clist, column);
258     }
259
260     gtk_clist_thaw(clist);
261     gtk_clist_sort(clist);
262 }
263
264
265 static gint
266 gsm_map_stat_gtk_sort_column(
267     GtkCList            *clist,
268     gconstpointer       ptr1,
269     gconstpointer       ptr2)
270 {
271     const GtkCListRow           *row1 = (const GtkCListRow *) ptr1;
272     const GtkCListRow           *row2 = (const GtkCListRow *) ptr2;
273     char                *text1 = NULL;
274     char                *text2 = NULL;
275     int                 i1, i2;
276
277     text1 = GTK_CELL_TEXT(row1->cell[clist->sort_column])->text;
278     text2 = GTK_CELL_TEXT(row2->cell[clist->sort_column])->text;
279
280     switch (clist->sort_column)
281     {
282     case 1:
283         /* text columns */
284         return(strcmp(text1, text2));
285
286     default:
287         /* number columns */
288         i1 = strtol(text1, NULL, 0);
289         i2 = strtol(text2, NULL, 0);
290         return(i1 - i2);
291     }
292
293     g_assert_not_reached();
294
295     return(0);
296 }
297
298
299 static void
300 gsm_map_stat_gtk_win_destroy_cb(
301     GtkWindow           *win _U_,
302     gpointer            user_data _U_)
303 {
304     memset((void *) user_data, 0, sizeof(gsm_map_stat_dlg_t));
305 }
306
307
308 static void
309 gsm_map_stat_gtk_win_create(
310     gsm_map_stat_dlg_t  *dlg_p,
311     const char          *title)
312 {
313     int                 i;
314     column_arrows       *col_arrows;
315     GtkWidget           *column_lb;
316     GtkWidget           *vbox;
317     GtkWidget           *bt_close;
318     GtkWidget           *bbox;
319
320
321     dlg_p->win = window_new(GTK_WINDOW_TOPLEVEL, title);
322     gtk_window_set_default_size(GTK_WINDOW(dlg_p->win), 560, 390);
323
324     vbox = gtk_vbox_new(FALSE, 3);
325         gtk_container_add(GTK_CONTAINER(dlg_p->win), vbox);
326     gtk_container_set_border_width(GTK_CONTAINER(vbox), 12);
327
328     dlg_p->scrolled_win = scrolled_window_new(NULL, NULL);
329     gtk_box_pack_start(GTK_BOX(vbox), dlg_p->scrolled_win, TRUE, TRUE, 0);
330
331     dlg_p->table = gtk_clist_new(GSM_MAP_INIT_TABLE_NUM_COLUMNS);
332
333     col_arrows =
334         (column_arrows *) g_malloc(sizeof(column_arrows) * GSM_MAP_INIT_TABLE_NUM_COLUMNS);
335
336     for (i = 0; i < GSM_MAP_INIT_TABLE_NUM_COLUMNS; i++)
337     {
338         col_arrows[i].table = gtk_table_new(2, 2, FALSE);
339
340         gtk_table_set_col_spacings(GTK_TABLE(col_arrows[i].table), 5);
341
342         column_lb = gtk_label_new(columns[i].strptr);
343
344         gtk_table_attach(GTK_TABLE(col_arrows[i].table), column_lb,
345             0, 1, 0, 2, GTK_SHRINK, GTK_SHRINK, 0, 0);
346
347         gtk_widget_show(column_lb);
348
349         col_arrows[i].ascend_pm = xpm_to_widget(clist_ascend_xpm);
350
351         gtk_table_attach(GTK_TABLE(col_arrows[i].table), col_arrows[i].ascend_pm,
352             1, 2, 1, 2, GTK_SHRINK, GTK_SHRINK, 0, 0);
353
354         col_arrows[i].descend_pm = xpm_to_widget(clist_descend_xpm);
355
356         gtk_table_attach(GTK_TABLE(col_arrows[i].table), col_arrows[i].descend_pm,
357             1, 2, 0, 1, GTK_SHRINK, GTK_SHRINK, 0, 0);
358
359         if (i == 0)
360         {
361             /* default column sorting */
362             gtk_widget_show(col_arrows[i].ascend_pm);
363         }
364
365         gtk_clist_set_column_justification(GTK_CLIST(dlg_p->table), i, columns[i].just);
366
367         gtk_clist_set_column_widget(GTK_CLIST(dlg_p->table), i, col_arrows[i].table);
368         gtk_widget_show(col_arrows[i].table);
369     }
370     gtk_clist_column_titles_show(GTK_CLIST(dlg_p->table));
371
372     gtk_clist_set_compare_func(GTK_CLIST(dlg_p->table), gsm_map_stat_gtk_sort_column);
373     gtk_clist_set_sort_column(GTK_CLIST(dlg_p->table), 0);
374     gtk_clist_set_sort_type(GTK_CLIST(dlg_p->table), GTK_SORT_ASCENDING);
375
376     for (i = 0; i < GSM_MAP_INIT_TABLE_NUM_COLUMNS; i++)
377     {
378         gtk_clist_set_column_width(GTK_CLIST(dlg_p->table), i, columns[i].value);
379     }
380
381     gtk_clist_set_shadow_type(GTK_CLIST(dlg_p->table), GTK_SHADOW_IN);
382     gtk_clist_column_titles_show(GTK_CLIST(dlg_p->table));
383     gtk_container_add(GTK_CONTAINER(dlg_p->scrolled_win), dlg_p->table);
384
385     SIGNAL_CONNECT(dlg_p->table, "click-column", gsm_map_stat_gtk_click_column_cb, col_arrows);
386
387     /* Button row. */
388     bbox = dlg_button_row_new(GTK_STOCK_CLOSE, NULL);
389     gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0);
390
391     bt_close = OBJECT_GET_DATA(bbox, GTK_STOCK_CLOSE);
392     window_set_cancel_button(dlg_p->win, bt_close, window_cancel_button_cb);
393
394     SIGNAL_CONNECT(dlg_p->win, "delete_event", window_delete_event_cb, NULL);
395     SIGNAL_CONNECT(dlg_p->win, "destroy", gsm_map_stat_gtk_win_destroy_cb, dlg_p);
396
397     gtk_widget_show_all(dlg_p->win);
398     window_present(dlg_p->win);
399 }
400
401
402 static void
403 gsm_map_stat_gtk_cb(
404     GtkWidget           *w _U_,
405     gpointer            d _U_)
406 {
407     int                 i,j;
408
409
410     /*
411      * if the window is already open, bring it to front
412      */
413     if (dlg.win)
414     {
415         gdk_window_raise(dlg.win->window);
416         return;
417     }
418
419     gsm_map_stat_gtk_win_create(&dlg, "GSM MAP Operation Statistics");
420
421     i = 0;
422     while (gsm_map_opr_code_strings[i].strptr)
423     {
424         dlg.entries[0] = g_strdup_printf("%u",
425                                          gsm_map_opr_code_strings[i].value);
426
427         dlg.entries[1] = g_strdup(gsm_map_opr_code_strings[i].strptr);
428
429         /*
430          * set the rest of the columns
431          */
432         for (j = 2; j < GSM_MAP_INIT_TABLE_NUM_COLUMNS; j++)
433         {
434             dlg.entries[j] = g_strdup("0");
435         }
436
437         gtk_clist_insert(GTK_CLIST(dlg.table), i, dlg.entries);
438         gtk_clist_set_row_data(GTK_CLIST(dlg.table), i, (gpointer) i);
439
440         i++;
441     }
442
443     gsm_map_stat_draw(&gsm_map_stat);
444 }
445
446
447 static void
448 gsm_map_stat_gtk_init(const char                *optarg _U_,
449                       void* userdata _U_)
450 {
451     gsm_map_stat_gtk_cb(NULL, NULL);
452 }
453
454
455 void
456 register_tap_listener_gtkgsm_map_stat(void)
457 {
458     GString             *err_p;
459
460
461     memset((void *) &gsm_map_stat, 0, sizeof(gsm_map_stat_t));
462
463     err_p =
464         register_tap_listener("gsm_map", &gsm_map_stat, NULL,
465             gsm_map_stat_reset,
466             gsm_map_stat_packet,
467             gsm_map_stat_draw);
468
469     if (err_p != NULL)
470     {
471         simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, err_p->str);
472         g_string_free(err_p, TRUE);
473
474         exit(1);
475     }
476
477     register_stat_menu_item("GSM/MAP Operation",  REGISTER_STAT_GROUP_TELEPHONY,
478         gsm_map_stat_gtk_cb, NULL, NULL, NULL);
479     register_stat_cmd_arg("gsm_map", gsm_map_stat_gtk_init,NULL);
480 }