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