Keep the list of possible "-z" arguments sorted, so we can display them
[obnox/wireshark/wip.git] / epan / stat_cmd_args.c
1 /* stat_cmd_args.c
2  * Routines to register "-z" command-line argument handlers for stats
3  *
4  * $Id$
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@ethereal.com>
8  * Copyright 1998 Gerald Combs
9  * 
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  * 
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  * 
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #include <stdio.h>
30
31 #include <string.h>
32
33 #include <glib.h>
34
35 #include <epan/stat_cmd_args.h>
36
37 /* structure to keep track of what stats have registered command-line
38    arguments.
39  */
40 typedef struct _stat_cmd_arg {
41         const char *cmd;
42         void (*func)(const char *arg);
43 } stat_cmd_arg;
44 static GSList *stat_cmd_arg_list=NULL;
45
46 /* structure to keep track of what stats have been specified on the
47    command line.
48  */
49 typedef struct {
50         stat_cmd_arg *sca;
51         char *arg;
52 } stat_requested;
53 static GSList *stats_requested = NULL;
54
55 /* **********************************************************************
56  * Function called from stat to register the stat's command-line argument
57  * and initialization routine
58  * ********************************************************************** */
59 static gint
60 sort_by_name(gconstpointer a, gconstpointer b)
61 {
62         return strcmp(((const stat_cmd_arg *)a)->cmd,
63             ((const stat_cmd_arg *)b)->cmd);
64 }
65 void
66 register_stat_cmd_arg(const char *cmd, void (*func)(const char *arg))
67 {
68         stat_cmd_arg *newsca;
69
70         newsca=g_malloc(sizeof(stat_cmd_arg));
71         newsca->cmd=cmd;
72         newsca->func=func;
73         stat_cmd_arg_list=g_slist_insert_sorted(stat_cmd_arg_list, newsca,
74             sort_by_name);
75 }
76
77 /* **********************************************************************
78  * Function called for a stat command-line argument
79  * ********************************************************************** */
80 gboolean
81 process_stat_cmd_arg(char *optarg)
82 {
83         GSList *entry;
84         stat_cmd_arg *sca;
85         stat_requested *tr;
86
87         for(entry=stat_cmd_arg_list;entry;entry=g_slist_next(entry)){
88                 sca=entry->data;
89                 if(!strncmp(sca->cmd,optarg,strlen(sca->cmd))){
90                         tr=g_malloc(sizeof (stat_requested));
91                         tr->sca = sca;
92                         tr->arg=g_strdup(optarg);
93                         stats_requested=g_slist_append(stats_requested, tr);
94                         return TRUE;
95                 }
96         }
97         return FALSE;
98 }
99
100 /* **********************************************************************
101  * Function to list all possible tap command-line arguments
102  * ********************************************************************** */
103 void
104 list_stat_cmd_args(void)
105 {
106         GSList *entry;
107         stat_cmd_arg *sca;
108
109         for(entry=stat_cmd_arg_list;entry;entry=g_slist_next(entry)){
110                 sca=entry->data;
111                 fprintf(stderr,"     %s\n",sca->cmd);
112         }
113 }
114
115 /* **********************************************************************
116  * Function to process stats requested with command-line arguments
117  * ********************************************************************** */
118 void
119 start_requested_stats(void)
120 {
121         stat_requested *sr;
122
123         while(stats_requested){
124                 sr=stats_requested->data;
125                 (*sr->sca->func)(sr->arg);
126                 g_free(sr->arg);
127                 g_free(sr);
128                 stats_requested=g_slist_remove(stats_requested, sr);
129         }
130 }