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