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