AFAICT '#include sys/types.h' is not needed for these files.
[metze/wireshark/wip.git] / ui / cli / 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 #include <string.h>
34 #include "epan/packet_info.h"
35 #include <epan/tap.h>
36 #include <epan/stat_cmd_args.h>
37 #include "epan/value_string.h"
38 #include "epan/gcp.h"
39 #include "timestats.h"
40 #include <epan/prefs-int.h>
41
42 #include "tap-megaco-common.h"
43
44
45
46 static void
47 megacostat_draw(void *pms)
48 {
49         megacostat_t *ms=(megacostat_t *)pms;
50         int i;
51
52         /* printing results */
53         printf("\n");
54         printf("=====================================================================================================\n");
55         printf("MEGACO Response Time Delay (RTD) Statistics:\n");
56         printf("Filter for statistics: %s\n",ms->filter?ms->filter:"");
57         printf("Duplicate requests: %u\n",ms->req_dup_num);
58         printf("Duplicate responses: %u\n",ms->rsp_dup_num);
59         printf("Open requests: %u\n",ms->open_req_num);
60         printf("Discarded responses: %u\n",ms->disc_rsp_num);
61         printf(" Type   | Messages   |    Min RTD    |    Max RTD    |    Avg RTD    | Min in Frame | Max in Frame |\n");
62         for(i=0;i<NUM_TIMESTATS;i++) {
63                 if(ms->rtd[i].num) {
64                         printf("%5s   | %7u    | %8.2f msec | %8.2f msec | %8.2f msec |  %10u  |  %10u  |\n",
65                                 val_to_str(i,megaco_message_type,"Other"),ms->rtd[i].num,
66                                 nstime_to_msec(&(ms->rtd[i].min)), nstime_to_msec(&(ms->rtd[i].max)),
67                                 get_average(&(ms->rtd[i].tot), ms->rtd[i].num),
68                                 ms->rtd[i].min_num, ms->rtd[i].max_num
69                         );
70                 }
71         }
72         printf("=====================================================================================================\n");
73 }
74
75
76 static void
77 megacostat_init(const char *optarg, void* userdata _U_)
78 {
79         megacostat_t *ms;
80         int i;
81         GString *error_string;
82         pref_t *megaco_ctx_track,*h248_ctx_track;
83
84         megaco_ctx_track = prefs_find_preference(prefs_find_module("megaco"),"ctx_info");
85         h248_ctx_track = prefs_find_preference(prefs_find_module("h248"),"ctx_info");
86
87         if (!megaco_ctx_track || !h248_ctx_track) {
88                 /* No such preferences */
89                 return;
90         }
91
92         if (!*megaco_ctx_track->varp.boolp || !*h248_ctx_track->varp.boolp) {
93                 printf("Track Context option at Protocols -> MEGACO and Protocols -> H248 preferences\n");
94                 printf("has to be set to true to enable measurement of service response times.\n");
95                 exit(1);
96         }
97
98         ms=g_malloc(sizeof(megacostat_t));
99         if(!strncmp(optarg,"megaco,rtd,",11)){
100                 ms->filter=g_strdup(optarg+11);
101         } else {
102                 ms->filter=NULL;
103         }
104
105         for(i=0;i<NUM_TIMESTATS;i++) {
106                 ms->rtd[i].num=0;
107                 ms->rtd[i].min_num=0;
108                 ms->rtd[i].max_num=0;
109                 ms->rtd[i].min.secs=0;
110                 ms->rtd[i].min.nsecs=0;
111                 ms->rtd[i].max.secs=0;
112                 ms->rtd[i].max.nsecs=0;
113                 ms->rtd[i].tot.secs=0;
114                 ms->rtd[i].tot.nsecs=0;
115         }
116
117         ms->open_req_num=0;
118         ms->disc_rsp_num=0;
119         ms->req_dup_num=0;
120         ms->rsp_dup_num=0;
121
122         error_string=register_tap_listener("megaco", ms, ms->filter, 0, NULL, megacostat_packet, megacostat_draw);
123         if(error_string){
124                 /* error, we failed to attach to the tap. clean up */
125                 g_free(ms->filter);
126                 g_free(ms);
127
128                 fprintf(stderr, "tshark: Couldn't register megaco,rtd tap: %s\n",
129                     error_string->str);
130                 g_string_free(error_string, TRUE);
131                 exit(1);
132         }
133 }
134
135
136 void
137 register_tap_listener_megacostat(void)
138 {
139         /* We don't register this tap, if we don't have the megaco plugin loaded.*/
140         if (find_tap_id("megaco")) {
141                 register_stat_cmd_arg("megaco,rtd", megacostat_init, NULL);
142         }
143 }
144