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