Bump date and version number
[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@gmail.com>
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 };
110
111
112 void initialize_funnel_ops(void) {
113     funnel_set_funnel_ops(&funnel_ops);
114 }
115
116
117 void funnel_dump_all_text_windows(void) {
118     guint i;
119     
120     if (!text_windows) return;
121     
122     for ( i = 0 ; i < text_windows->len; i++) {
123         funnel_text_window_t*  tw = g_ptr_array_index(text_windows,i);
124         printf("\n========================== %s "
125                "==========================\n%s\n",tw->title,tw->text->str);
126         
127         g_ptr_array_remove_index(text_windows,i);
128         g_free(tw->title);
129         g_string_free(tw->text,TRUE);
130         g_free(tw);        
131     }
132 }
133
134 #if 0
135
136 GHashTable* menus = NULL;;
137 typedef struct _menu_cb_t {
138     void (*callback)(gpointer);
139     void* callback_data;
140 } menu_cb_t;
141
142
143 static void  init_funnel_cmd(const char *optarg, void* data ) {
144     gchar** args = g_strsplit(optarg,",",0); 
145     gchar** arg;
146     menu_cb_t* mcb = data;
147     
148     for(arg = args; *arg ; arg++) {
149         g_strstrip(*arg);
150     }
151     
152     if (mcb->callback) {
153         mcb->callback(mcb->callback_data);
154     }
155     
156 }
157
158 static void register_menu_cb(const char *name,
159                              register_stat_group_t group _U_,
160                              void (*callback)(gpointer),
161                              gpointer callback_data,
162                              gboolean retap _U_) {
163     menu_cb_t* mcb = g_malloc(sizeof(menu_cb_t));
164     
165     mcb->callback = callback;
166     mcb->callback_data = callback_data;
167
168     if (!menus)
169         menus = g_hash_table_new(g_str_hash,g_str_equal);
170
171     g_hash_table_insert(menus,g_strdup(name),mcb);
172     
173     register_stat_cmd_arg(name,init_funnel_cmd,mcb);
174 }
175
176 void initialize_funnel_ops(void) {
177     funnel_set_funnel_ops(&funnel_ops);
178 }
179
180 #endif
181 void
182 register_tap_listener_gtkfunnel(void)
183 {
184 #if 0
185     funnel_register_all_menus(register_menu_cb);
186 #endif
187 }