Fix a couple (value) mistakes in a value_string, taking the values from the IDL
[obnox/wireshark/wip.git] / tap-funnel.c
1 /*
2  *  tap-funnel.c
3  *
4  * EPAN's GUI mini-API
5  *
6  * (c) 2006, Luis E. Garcia Ontanon <luis@ontanon.org>
7  *
8  * $Id$
9  *
10  * Wireshark - Network traffic analyzer
11  * By Gerald Combs <gerald@wireshark.org>
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 #ifdef HAVE_CONFIG_H
30 #include "config.h"
31 #endif
32
33 #include <epan/funnel.h>
34 #include <stdio.h>
35 #include <epan/stat_cmd_args.h>
36
37
38 struct _funnel_text_window_t {
39     gchar* title;
40     GString* text;
41 };
42
43 static GPtrArray* text_windows = NULL;
44
45 static funnel_text_window_t* new_text_window(const gchar* title) {
46     funnel_text_window_t* tw = g_malloc(sizeof(funnel_text_window_t));
47     tw->title = g_strdup(title);
48     tw->text = g_string_new("");
49     
50     if (!text_windows)
51         text_windows = g_ptr_array_new();
52     
53     g_ptr_array_add(text_windows,tw);
54     
55     return tw;
56 }
57
58 static void text_window_clear(funnel_text_window_t*  tw) {
59     g_string_free(tw->text,TRUE);
60     tw->text = g_string_new("");    
61 }
62
63 static void text_window_append(funnel_text_window_t*  tw, const char *text ) {
64     g_string_append(tw->text,text);
65 }
66
67 static void text_window_set_text(funnel_text_window_t*  tw, const char* text) {
68     g_string_free(tw->text,TRUE);
69     tw->text = g_string_new(text);
70 }
71
72 static void text_window_prepend(funnel_text_window_t*  tw, const char *text) {
73     g_string_prepend(tw->text,text);    
74 }
75
76 static const gchar* text_window_get_text(funnel_text_window_t*  tw) {
77     return tw->text->str;
78 }
79
80 /* XXX: finish this */
81 static void funnel_logger(const gchar *log_domain _U_,
82                           GLogLevelFlags log_level _U_,
83                           const gchar *message,
84                           gpointer user_data _U_) {
85     fputs(message,stderr);
86 }
87
88
89
90 static const funnel_ops_t funnel_ops = {
91     new_text_window,
92     text_window_set_text,
93     text_window_append,
94     text_window_prepend,
95     text_window_clear,
96     text_window_get_text,
97     NULL,
98     NULL,
99     NULL,
100     NULL,
101     /*...,*/
102     NULL,
103     funnel_logger,
104     NULL,
105     NULL,
106     NULL,
107     NULL,
108     NULL,
109     NULL,
110         NULL,
111         NULL,
112     NULL,
113     NULL,
114     NULL
115 };
116
117
118 void initialize_funnel_ops(void) {
119     funnel_set_funnel_ops(&funnel_ops);
120 }
121
122
123 void funnel_dump_all_text_windows(void) {
124     guint i;
125     
126     if (!text_windows) return;
127     
128     for ( i = 0 ; i < text_windows->len; i++) {
129         funnel_text_window_t*  tw = g_ptr_array_index(text_windows,i);
130         printf("\n========================== %s "
131                "==========================\n%s\n",tw->title,tw->text->str);
132         
133         g_ptr_array_remove_index(text_windows,i);
134         g_free(tw->title);
135         g_string_free(tw->text,TRUE);
136         g_free(tw);        
137     }
138 }
139
140 #if 0
141
142 GHashTable* menus = NULL;;
143 typedef struct _menu_cb_t {
144     void (*callback)(gpointer);
145     void* callback_data;
146 } menu_cb_t;
147
148
149 static void  init_funnel_cmd(const char *optarg, void* data ) {
150     gchar** args = g_strsplit(optarg,",",0); 
151     gchar** arg;
152     menu_cb_t* mcb = data;
153     
154     for(arg = args; *arg ; arg++) {
155         g_strstrip(*arg);
156     }
157     
158     if (mcb->callback) {
159         mcb->callback(mcb->callback_data);
160     }
161     
162 }
163
164 static void register_menu_cb(const char *name,
165                              register_stat_group_t group _U_,
166                              void (*callback)(gpointer),
167                              gpointer callback_data,
168                              gboolean retap _U_) {
169     menu_cb_t* mcb = g_malloc(sizeof(menu_cb_t));
170     
171     mcb->callback = callback;
172     mcb->callback_data = callback_data;
173
174     if (!menus)
175         menus = g_hash_table_new(g_str_hash,g_str_equal);
176
177     g_hash_table_insert(menus,g_strdup(name),mcb);
178     
179     register_stat_cmd_arg(name,init_funnel_cmd,mcb);
180 }
181
182 void initialize_funnel_ops(void) {
183     funnel_set_funnel_ops(&funnel_ops);
184 }
185
186 #endif
187 void
188 register_tap_listener_gtkfunnel(void)
189 {
190 #if 0
191     funnel_register_all_menus(register_menu_cb);
192 #endif
193 }