EOF in zlib 1.2.5 seems to be sticky. When we're tailing a file and we
[obnox/wireshark/wip.git] / tap-megacostat.c
1 /* tap-megacostat.c
2  * mgcpstat   2003 Lars Roland
3  * Copyright 2008, Ericsson AB
4  * By Balint Reczey <balint.reczey@ericsson.com>
5  *
6  * $Id$
7  *
8  * Wireshark - Network traffic analyzer
9  * By Gerald Combs <gerald@wireshark.org>
10  * Copyright 1998 Gerald Combs
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <stdio.h>
32
33 #ifdef HAVE_SYS_TYPES_H
34 # include <sys/types.h>
35 #endif
36
37 #include <string.h>
38 #include "epan/packet_info.h"
39 #include <epan/tap.h>
40 #include <epan/stat_cmd_args.h>
41 #include "epan/value_string.h"
42 #include "register.h"
43 #include "epan/gcp.h"
44 #include "timestats.h"
45 #include <epan/prefs-int.h>
46
47 #include "tap-megaco-common.h"
48
49
50
51 static void
52 megacostat_draw(void *pms)
53 {
54         megacostat_t *ms=(megacostat_t *)pms;
55         int i;
56
57         /* printing results */
58         printf("\n");
59         printf("=====================================================================================================\n");
60         printf("MEGACO Response Time Delay (RTD) Statistics:\n");
61         printf("Filter for statistics: %s\n",ms->filter?ms->filter:"");
62         printf("Duplicate requests: %u\n",ms->req_dup_num);
63         printf("Duplicate responses: %u\n",ms->rsp_dup_num);
64         printf("Open requests: %u\n",ms->open_req_num);
65         printf("Discarded responses: %u\n",ms->disc_rsp_num);
66         printf(" Type   | Messages   |    Min RTD    |    Max RTD    |    Avg RTD    | Min in Frame | Max in Frame |\n");
67         for(i=0;i<NUM_TIMESTATS;i++) {
68                 if(ms->rtd[i].num) {
69                         printf("%5s   | %7u    | %8.2f msec | %8.2f msec | %8.2f msec |  %10u  |  %10u  |\n",
70                                 val_to_str(i,megaco_message_type,"Other"),ms->rtd[i].num,
71                                 nstime_to_msec(&(ms->rtd[i].min)), nstime_to_msec(&(ms->rtd[i].max)),
72                                 get_average(&(ms->rtd[i].tot), ms->rtd[i].num),
73                                 ms->rtd[i].min_num, ms->rtd[i].max_num
74                         );
75                 }
76         }
77         printf("=====================================================================================================\n");
78 }
79
80
81 static void
82 megacostat_init(const char *optarg, void* userdata _U_)
83 {
84         megacostat_t *ms;
85         int i;
86         GString *error_string;
87         pref_t *megaco_ctx_track,*h248_ctx_track;
88         
89         megaco_ctx_track = prefs_find_preference(prefs_find_module("megaco"),"ctx_info");
90         h248_ctx_track = prefs_find_preference(prefs_find_module("h248"),"ctx_info");
91         if (!*megaco_ctx_track->varp.boolp || !*h248_ctx_track->varp.boolp) {
92                 printf("Track Context option at Protocols -> MEGACO and Protocols -> H248 preferences\n");
93                 printf("has to be set to true to enable measurement of service response times.\n");
94                 exit(1);
95         }
96         
97         ms=g_malloc(sizeof(megacostat_t));
98         if(!strncmp(optarg,"megaco,rtd,",11)){
99                 ms->filter=g_strdup(optarg+11);
100         } else {
101                 ms->filter=NULL;
102         }
103
104         for(i=0;i<NUM_TIMESTATS;i++) {
105                 ms->rtd[i].num=0;
106                 ms->rtd[i].min_num=0;
107                 ms->rtd[i].max_num=0;
108                 ms->rtd[i].min.secs=0;
109                 ms->rtd[i].min.nsecs=0;
110                 ms->rtd[i].max.secs=0;
111                 ms->rtd[i].max.nsecs=0;
112                 ms->rtd[i].tot.secs=0;
113                 ms->rtd[i].tot.nsecs=0;
114         }
115
116         ms->open_req_num=0;
117         ms->disc_rsp_num=0;
118         ms->req_dup_num=0;
119         ms->rsp_dup_num=0;
120
121         error_string=register_tap_listener("megaco", ms, ms->filter, 0, NULL, megacostat_packet, megacostat_draw);
122         if(error_string){
123                 /* error, we failed to attach to the tap. clean up */
124                 g_free(ms->filter);
125                 g_free(ms);
126
127                 fprintf(stderr, "tshark: Couldn't register megaco,rtd tap: %s\n",
128                     error_string->str);
129                 g_string_free(error_string, TRUE);
130                 exit(1);
131         }
132 }
133
134
135 void
136 register_tap_listener_megacostat(void)
137 {
138         /* We don't register this tap, if we don't have the megaco plugin loaded.*/
139         if (find_tap_id("megaco")) {
140                 register_stat_cmd_arg("megaco,rtd", megacostat_init, NULL);
141         }
142 }
143