add missing #include "tempfile.h"
[obnox/wireshark/wip.git] / gtk / gsm_map_summary.c
1 /* gsm_map_summary.c
2  * Routines for GSM MAP Statictics summary window
3  *
4  * Copyright 2004, Michael Lum <mlum [AT] telostech.com>
5  * In association with Telos Technology Inc.
6  *
7  * Modified from summary_dlg.c
8  *
9  * $Id$
10  *
11  * Ethereal - Network traffic analyzer
12  * By Gerald Combs <gerald@ethereal.com>
13  * Copyright 1998 Gerald Combs
14  *
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License
17  * as published by the Free Software Foundation; either version 2
18  * of the License, or (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
28  */
29
30 #ifdef HAVE_CONFIG_H
31 # include "config.h"
32 #endif
33
34 #include <gtk/gtk.h>
35
36 #include <wtap.h>
37
38 #include "epan/packet_info.h"
39 #include "epan/epan.h"
40 #include "epan/value_string.h"
41 #include "../stat_menu.h"
42 #include "gui_stat_menu.h"
43 #include "globals.h"
44 #include "file.h"
45 #include "summary.h"
46 #include "dlg_utils.h"
47 #include "gui_utils.h"
48 #include "compat_macros.h"
49 #include <epan/tap.h>
50
51 #include <epan/dissectors/packet-gsm_map.h>
52 #include "gsm_map_stat.h"
53
54 #define SUM_STR_MAX 1024
55
56
57 static void
58 add_string_to_box(gchar *str, GtkWidget *box)
59 {
60   GtkWidget *lb;
61   lb = gtk_label_new(str);
62   gtk_misc_set_alignment(GTK_MISC(lb), 0.0, 0.5);
63   gtk_box_pack_start(GTK_BOX(box), lb,FALSE,FALSE, 0);
64   gtk_widget_show(lb);
65 }
66
67
68 static void
69 gsm_map_stat_gtk_sum_cb(GtkWidget *w _U_, gpointer d _U_)
70 {
71   summary_tally summary;
72   GtkWidget     *sum_open_w,
73                 *main_vb, *file_fr, *data_fr, *file_box,
74                 *data_box, *bbox, *close_bt,
75                 *invoke_fr, *invoke_box,
76                 *rr_fr, *rr_box,
77                 *tot_fr, *tot_box;
78
79   gchar         string_buff[SUM_STR_MAX];
80   double        seconds;
81   int           i;
82   int           tot_invokes, tot_rr;
83   double        tot_invokes_size, tot_rr_size;
84
85   /* initialize the tally */
86   summary_fill_in(&cfile, &summary);
87
88   /* initial compututations */
89   seconds = summary.stop_time - summary.start_time;
90
91   sum_open_w = window_new(GTK_WINDOW_TOPLEVEL, "GSM MAP Statistics: Summary");
92
93   /* Container for each row of widgets */
94   main_vb = gtk_vbox_new(FALSE, 3);
95   gtk_container_border_width(GTK_CONTAINER(main_vb), 5);
96   gtk_container_add(GTK_CONTAINER(sum_open_w), main_vb);
97   gtk_widget_show(main_vb);
98
99   /* File frame */
100   file_fr = gtk_frame_new("File");
101   gtk_container_add(GTK_CONTAINER(main_vb), file_fr);
102   gtk_widget_show(file_fr);
103
104   file_box = gtk_vbox_new(FALSE, 3);
105   gtk_container_add(GTK_CONTAINER(file_fr), file_box);
106   gtk_widget_show(file_box);
107
108   /* filename */
109   g_snprintf(string_buff, SUM_STR_MAX, "Name: %s", ((summary.filename) ? summary.filename : "None"));
110   add_string_to_box(string_buff, file_box);
111
112   /* length */
113   g_snprintf(string_buff, SUM_STR_MAX, "Length: %lu", summary.file_length);
114   add_string_to_box(string_buff, file_box);
115
116   /* format */
117   g_snprintf(string_buff, SUM_STR_MAX, "Format: %s", wtap_file_type_string(summary.encap_type));
118   add_string_to_box(string_buff, file_box);
119
120   if (summary.has_snap) {
121     /* snapshot length */
122     g_snprintf(string_buff, SUM_STR_MAX, "Snapshot length: %u", summary.snap);
123     add_string_to_box(string_buff, file_box);
124   }
125
126   /* Data frame */
127   data_fr = gtk_frame_new("Data");
128   gtk_container_add(GTK_CONTAINER(main_vb), data_fr);
129   gtk_widget_show(data_fr);
130
131   data_box = gtk_vbox_new(FALSE, 3);
132   gtk_container_add(GTK_CONTAINER(data_fr), data_box);
133   gtk_widget_show(data_box);
134
135   /* seconds */
136   g_snprintf(string_buff, SUM_STR_MAX, "Elapsed time: %.3f seconds", summary.elapsed_time);
137   add_string_to_box(string_buff, data_box);
138
139   g_snprintf(string_buff, SUM_STR_MAX, "Between first and last packet: %.3f seconds", seconds);
140   add_string_to_box(string_buff, data_box);
141
142   /* Packet count */
143   g_snprintf(string_buff, SUM_STR_MAX, "Packet count: %i", summary.packet_count);
144   add_string_to_box(string_buff, data_box);
145
146   tot_invokes = 0;
147   tot_invokes_size = 0;
148   for (i=0; i < GSM_MAP_MAX_NUM_OPR_CODES; i++)
149   {
150     tot_invokes += gsm_map_stat.opr_code[i];
151     tot_invokes_size += gsm_map_stat.size[i];
152   }
153
154   tot_rr = 0;
155   tot_rr_size = 0;
156   for (i=0; i < GSM_MAP_MAX_NUM_OPR_CODES; i++)
157   {
158     tot_rr += gsm_map_stat.opr_code_rr[i];
159     tot_rr_size += gsm_map_stat.size_rr[i];
160   }
161
162   /* Invoke frame */
163   invoke_fr = gtk_frame_new("Invokes");
164   gtk_container_add(GTK_CONTAINER(main_vb), invoke_fr);
165   gtk_widget_show(invoke_fr);
166
167   invoke_box = gtk_vbox_new(FALSE, 3);
168   gtk_container_add(GTK_CONTAINER(invoke_fr), invoke_box);
169   gtk_widget_show(invoke_box);
170
171   /* Total number of invokes */
172   g_snprintf(string_buff, SUM_STR_MAX, "Total number of Invokes: %u", tot_invokes);
173   add_string_to_box(string_buff, invoke_box);
174
175   /* Total number of invokes per second */
176   if (seconds)
177         g_snprintf(string_buff, SUM_STR_MAX, "Total number of Invokes per second: %.2f", tot_invokes/seconds);
178   else
179         g_snprintf(string_buff, SUM_STR_MAX, "Total number of Invokes per second: N/A");
180   add_string_to_box(string_buff, invoke_box);
181
182   /* Total size of invokes */
183   g_snprintf(string_buff, SUM_STR_MAX, "Total number of bytes for Invokes: %.0f", tot_invokes_size);
184   add_string_to_box(string_buff, invoke_box);
185
186   /* Average size of invokes */
187   if (tot_invokes)
188         g_snprintf(string_buff, SUM_STR_MAX, "Average number of bytes per Invoke: %.2f", tot_invokes_size/tot_invokes);
189   else
190         g_snprintf(string_buff, SUM_STR_MAX, "Average number of bytes per Invoke: N/A");
191   add_string_to_box(string_buff, invoke_box);
192
193   /* Average size of invokes per second */
194   if (seconds)
195         g_snprintf(string_buff, SUM_STR_MAX, "Average number of bytes per second: %.2f", tot_invokes_size/seconds);
196   else
197         g_snprintf(string_buff, SUM_STR_MAX, "Average number of bytes per second: N/A");
198   add_string_to_box(string_buff, invoke_box);
199
200   /* Return Results frame */
201   rr_fr = gtk_frame_new("Return Results");
202   gtk_container_add(GTK_CONTAINER(main_vb), rr_fr);
203   gtk_widget_show(rr_fr);
204
205   rr_box = gtk_vbox_new(FALSE, 3);
206   gtk_container_add(GTK_CONTAINER(rr_fr), rr_box);
207   gtk_widget_show(rr_box);
208
209   /* Total number of return results */
210   g_snprintf(string_buff, SUM_STR_MAX, "Total number of Return Results: %u", tot_rr);
211   add_string_to_box(string_buff, rr_box);
212
213   /* Total number of return results per second */
214   if (seconds)
215         g_snprintf(string_buff, SUM_STR_MAX, "Total number of Return Results per second: %.2f", tot_rr/seconds);
216   else
217         g_snprintf(string_buff, SUM_STR_MAX, "Total number of Return Results per second: N/A");
218   add_string_to_box(string_buff, rr_box);
219
220   /* Total size of return results */
221   g_snprintf(string_buff, SUM_STR_MAX, "Total number of bytes for Return Results: %.0f", tot_rr_size);
222   add_string_to_box(string_buff, rr_box);
223
224   /* Average size of return results */
225   if (tot_rr)
226         g_snprintf(string_buff, SUM_STR_MAX, "Average number of bytes per Return Result: %.2f", tot_rr_size/tot_rr);
227   else
228         g_snprintf(string_buff, SUM_STR_MAX, "Average number of bytes per Return Result: N/A");
229   add_string_to_box(string_buff, rr_box);
230
231   /* Average size of return results per second */
232   if (seconds)
233         g_snprintf(string_buff, SUM_STR_MAX, "Average number of bytes per second: %.2f", tot_rr_size/seconds);
234   else
235         g_snprintf(string_buff, SUM_STR_MAX, "Average number of bytes per second: N/A");
236   add_string_to_box(string_buff, rr_box);
237
238   /* Totals frame */
239   tot_fr = gtk_frame_new("Totals");
240   gtk_container_add(GTK_CONTAINER(main_vb), tot_fr);
241   gtk_widget_show(tot_fr);
242
243   tot_box = gtk_vbox_new(FALSE, 3);
244   gtk_container_add(GTK_CONTAINER(tot_fr), tot_box);
245   gtk_widget_show(tot_box);
246
247   /* Total number of return results */
248   g_snprintf(string_buff, SUM_STR_MAX, "Total number of GSM MAP messages: %u", tot_invokes + tot_rr);
249   add_string_to_box(string_buff, tot_box);
250
251   if (seconds)
252         g_snprintf(string_buff, SUM_STR_MAX, "Total number of GSM MAP messages per second: %.2f",
253                 (tot_invokes + tot_rr)/seconds);
254   else
255         g_snprintf(string_buff, SUM_STR_MAX, "Total number of GSM MAP messages per second: N/A");
256   add_string_to_box(string_buff, tot_box);
257
258   g_snprintf(string_buff, SUM_STR_MAX, "Total number of bytes for GSM MAP messages: %.0f", tot_invokes_size + tot_rr_size);
259   add_string_to_box(string_buff, tot_box);
260
261   if (tot_invokes + tot_rr)
262         g_snprintf(string_buff, SUM_STR_MAX, "Average number of bytes per GSM MAP messages: %.2f",
263                 (tot_invokes_size + tot_rr_size)/(tot_invokes + tot_rr));
264   else
265         g_snprintf(string_buff, SUM_STR_MAX, "Average number of bytes per GSM MAP messages: N/A");
266   add_string_to_box(string_buff, tot_box);
267
268   if (seconds)
269         g_snprintf(string_buff, SUM_STR_MAX, "Average number of bytes second: %.2f",
270                 (tot_invokes_size + tot_rr_size)/seconds);
271   else
272           g_snprintf(string_buff, SUM_STR_MAX, "Average number of bytes second: N/A");
273   add_string_to_box(string_buff, tot_box);
274
275
276   /* Button row. */
277   bbox = dlg_button_row_new(GTK_STOCK_CLOSE, NULL);
278   gtk_container_add(GTK_CONTAINER(main_vb), bbox);
279   gtk_widget_show(bbox);
280
281   close_bt = OBJECT_GET_DATA(bbox, GTK_STOCK_CLOSE);
282   window_set_cancel_button(sum_open_w, close_bt, window_cancel_button_cb);
283
284   SIGNAL_CONNECT(sum_open_w, "delete_event", window_delete_event_cb, NULL);
285
286   gtk_widget_show(sum_open_w);
287   window_present(sum_open_w);
288 }
289
290
291 void
292 register_tap_listener_gtkgsm_map_summary(void)
293 {
294     register_stat_menu_item("GSM/MAP Summary",  REGISTER_STAT_GROUP_TELEPHONY,
295         gsm_map_stat_gtk_sum_cb, NULL, NULL, NULL);
296 }