add plugin interface to objects
[lttv.git] / ltt / branches / poly / lttv / modules / gui / filter / filter.c
CommitLineData
91ad3f0a 1/* This file is part of the Linux Trace Toolkit viewer
852f16bb 2 * Copyright (C) 2005 Simon Bouvier-Zappa
91ad3f0a 3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License Version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
16 * MA 02111-1307, USA.
17 */
18
4e4d11b3 19#ifdef HAVE_CONFIG_H
20#include <config.h>
21#endif
22
91ad3f0a 23#include <glib.h>
24#include <string.h>
25#include <gtk/gtk.h>
26#include <gdk/gdk.h>
3cea5310 27#include <gdk/gdkkeysyms.h>
91ad3f0a 28
29#include <lttv/lttv.h>
30#include <lttv/module.h>
31#include <lttv/hook.h>
32#include <lttv/filter.h>
33
34#include <lttvwindow/lttvwindow.h>
35#include <lttvwindow/lttvwindowtraces.h>
36
37#include "hGuiFilterInsert.xpm"
38
0fc64e11 39
40GSList *g_filter_list = NULL ;
41
7e7af7f2 42/*! \file lttv/modules/gui/filter/filter.c
43 * \brief Graphic filter interface.
44 *
45 * The gui filter facility gives the user an easy to use
46 * basic interface to construct and modify at will a filter
47 * expression. User may either decide to write it himself in
48 * expression text entry or add simple expressions using the
49 * many choices boxes.
50 *
da2e1bfb 51 * \note The version of gtk-2.0 currently installed on
7e7af7f2 52 * my desktop misses some function of the newer
da2e1bfb 53 * gtk+ api. For the time being, I'll use the older api
7e7af7f2 54 * to keep compatibility with most systems.
2b715e58 55 */
56
91ad3f0a 57typedef struct _FilterViewerData FilterViewerData;
c2774e9d 58typedef struct _FilterViewerDataLine FilterViewerDataLine;
91ad3f0a 59
4ed9b7ba 60/*
61 * Prototypes
62 */
91ad3f0a 63GtkWidget *guifilter_get_widget(FilterViewerData *fvd);
e433e6d6 64FilterViewerData *gui_filter(LttvPlugin *plugin);
91ad3f0a 65void gui_filter_destructor(FilterViewerData *fvd);
c2774e9d 66FilterViewerDataLine* gui_filter_add_line(FilterViewerData *fvd);
67void gui_filter_line_set_visible(FilterViewerDataLine *fvdl, gboolean v);
68void gui_filter_line_reset(FilterViewerDataLine *fvdl);
e433e6d6 69GtkWidget* h_guifilter(LttvPlugin *plugin);
c2774e9d 70void filter_destroy_walk(gpointer data, gpointer user_data);
91ad3f0a 71
c2774e9d 72/*
73 * Callback functions
74 */
75void callback_process_button(GtkWidget *widget, gpointer data);
3cea5310 76gboolean callback_enter_check(GtkWidget *widget,
77 GdkEventKey *event,
78 gpointer user_data);
c2774e9d 79void callback_add_button(GtkWidget *widget, gpointer data);
80void callback_logical_op_box(GtkWidget *widget, gpointer data);
81void callback_expression_field(GtkWidget *widget, gpointer data);
82
852f16bb 83/**
84 * @struct _FilterViewerDataLine
85 *
86 * @brief Defines a simple expression
87 * This structures defines a simple
88 * expression whithin the main filter
89 * viewer data
90 */
c2774e9d 91struct _FilterViewerDataLine {
7e7af7f2 92 int row; /**< row number */
93 gboolean visible; /**< visible state */
94 GtkWidget *f_not_op_box; /**< '!' operator (GtkComboBox) */
95 GtkWidget *f_logical_op_box; /**< '&,|,^' operators (GtkComboBox) */
96 GtkWidget *f_field_box; /**< field types (GtkComboBox) */
97 GtkWidget *f_math_op_box; /**< '>,>=,<,<=,=,!=' operators (GtkComboBox) */
98 GtkWidget *f_value_field; /**< expression's value (GtkComboBox) */
c2774e9d 99};
100
101/**
7e7af7f2 102 * @struct _FilterViewerData
103 *
104 * @brief Main structure of gui filter
105 * Main struct for the filter gui module
c2774e9d 106 */
91ad3f0a 107struct _FilterViewerData {
e433e6d6 108 LttvPlugin *plugin; /**< Plugin on which we interact. */
91ad3f0a 109
6a4f1205 110 GtkWidget *f_window; /**< filter window */
111
7e7af7f2 112 GtkWidget *f_main_box; /**< main container */
4ed9b7ba 113
7e7af7f2 114 GtkWidget *f_expression_field; /**< entire expression (GtkEntry) */
115 GtkWidget *f_process_button; /**< process expression button (GtkButton) */
4ed9b7ba 116
7e7af7f2 117 GtkWidget *f_logical_op_junction_box; /**< linking operator box (GtkComboBox) */
4ed9b7ba 118
7e7af7f2 119 int rows; /**< number of rows */
120 GPtrArray *f_lines; /**< array of FilterViewerDataLine */
2b715e58 121
7e7af7f2 122 GPtrArray *f_not_op_options; /**< array of operators types for not_op box */
123 GPtrArray *f_logical_op_options; /**< array of operators types for logical_op box */
124 GPtrArray *f_field_options; /**< array of field types for field box */
125 GPtrArray *f_math_op_options; /**< array of operators types for math_op box */
2b715e58 126
7e7af7f2 127 GtkWidget *f_add_button; /**< add expression to current expression (GtkButton) */
6a4f1205 128
91ad3f0a 129};
130
c2774e9d 131/**
7e7af7f2 132 * @fn GtkWidget* guifilter_get_widget(FilterViewerData*)
852f16bb 133 *
c2774e9d 134 * This function returns the current main widget
135 * used by this module
136 * @param fvd the module struct
137 * @return The main widget
138 */
7e7af7f2 139GtkWidget*
140guifilter_get_widget(FilterViewerData *fvd)
91ad3f0a 141{
01eb9889 142 return fvd->f_window;
91ad3f0a 143}
144
145/**
7e7af7f2 146 * @fn FilterViewerData* gui_filter(Tab*)
852f16bb 147 *
148 * Constructor is used to create FilterViewerData data structure.
7e7af7f2 149 * @param tab The tab structure used by the widget
852f16bb 150 * @return The Filter viewer data created.
91ad3f0a 151 */
152FilterViewerData*
e433e6d6 153gui_filter(LttvPlugin *plugin)
91ad3f0a 154{
f88c5bfa 155 g_debug("filter::gui_filter()");
2b715e58 156
157 unsigned i;
91ad3f0a 158 GtkCellRenderer *renderer;
159 GtkTreeViewColumn *column;
160
161 FilterViewerData* fvd = g_new(FilterViewerData,1);
162
e433e6d6 163 fvd->plugin = plugin;
91ad3f0a 164
da2e1bfb 165// lttvwindow_register_traceset_notify(fvd->tab,
166// filter_traceset_changed,
167// filter_viewer_data);
91ad3f0a 168// request_background_data(filter_viewer_data);
4ed9b7ba 169
2b715e58 170 /*
171 * Initiating items for
172 * combo boxes
173 */
1f7f7fe2 174 fvd->f_not_op_options = g_ptr_array_new();
175 g_ptr_array_add(fvd->f_not_op_options,(gpointer) g_string_new(""));
176 g_ptr_array_add(fvd->f_not_op_options,(gpointer) g_string_new("!"));
177
2b715e58 178 fvd->f_logical_op_options = g_ptr_array_new(); //g_array_new(FALSE,FALSE,sizeof(gchar));
179 g_ptr_array_add(fvd->f_logical_op_options,(gpointer) g_string_new(""));
180 g_ptr_array_add(fvd->f_logical_op_options,(gpointer) g_string_new("&"));
181 g_ptr_array_add(fvd->f_logical_op_options,(gpointer) g_string_new("|"));
182 g_ptr_array_add(fvd->f_logical_op_options,(gpointer) g_string_new("!"));
183 g_ptr_array_add(fvd->f_logical_op_options,(gpointer) g_string_new("^"));
184
185 fvd->f_field_options = g_ptr_array_new(); //g_array_new(FALSE,FALSE,16);
186 g_ptr_array_add(fvd->f_field_options,(gpointer) g_string_new(""));
187 g_ptr_array_add(fvd->f_field_options,(gpointer) g_string_new("event.name"));
ffd088ef 188 g_ptr_array_add(fvd->f_field_options,(gpointer) g_string_new("event.facility"));
2b715e58 189 g_ptr_array_add(fvd->f_field_options,(gpointer) g_string_new("event.category"));
190 g_ptr_array_add(fvd->f_field_options,(gpointer) g_string_new("event.time"));
191 g_ptr_array_add(fvd->f_field_options,(gpointer) g_string_new("event.tsc"));
192 /*
193 * TODO: Add core.xml fields here !
194 */
195 g_ptr_array_add(fvd->f_field_options,(gpointer) g_string_new("tracefile.name"));
196 g_ptr_array_add(fvd->f_field_options,(gpointer) g_string_new("trace.name"));
4f85064b 197 g_ptr_array_add(fvd->f_field_options,(gpointer) g_string_new("state.process_name"));
7b5f6cf1 198 g_ptr_array_add(fvd->f_field_options,(gpointer) g_string_new("state.thread_brand"));
2b715e58 199 g_ptr_array_add(fvd->f_field_options,(gpointer) g_string_new("state.pid"));
200 g_ptr_array_add(fvd->f_field_options,(gpointer) g_string_new("state.ppid"));
201 g_ptr_array_add(fvd->f_field_options,(gpointer) g_string_new("state.creation_time"));
202 g_ptr_array_add(fvd->f_field_options,(gpointer) g_string_new("state.insertion_time"));
203 g_ptr_array_add(fvd->f_field_options,(gpointer) g_string_new("state.execution_mode"));
204 g_ptr_array_add(fvd->f_field_options,(gpointer) g_string_new("state.execution_submode"));
205 g_ptr_array_add(fvd->f_field_options,(gpointer) g_string_new("state.process_status"));
206 g_ptr_array_add(fvd->f_field_options,(gpointer) g_string_new("state.cpu"));
207
208 fvd->f_math_op_options = g_ptr_array_new(); //g_array_new(FALSE,FALSE,7);
209 g_ptr_array_add(fvd->f_math_op_options,(gpointer) g_string_new(""));
210 g_ptr_array_add(fvd->f_math_op_options,(gpointer) g_string_new("="));
211 g_ptr_array_add(fvd->f_math_op_options,(gpointer) g_string_new("!="));
212 g_ptr_array_add(fvd->f_math_op_options,(gpointer) g_string_new("<"));
213 g_ptr_array_add(fvd->f_math_op_options,(gpointer) g_string_new("<="));
214 g_ptr_array_add(fvd->f_math_op_options,(gpointer) g_string_new(">"));
215 g_ptr_array_add(fvd->f_math_op_options,(gpointer) g_string_new(">="));
216
217
6a4f1205 218 fvd->f_window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
294a2716 219 gtk_window_set_title(GTK_WINDOW(fvd->f_window), "LTTV Filter");
93ac601b 220 gtk_window_set_transient_for(GTK_WINDOW(fvd->f_window),
e433e6d6 221 GTK_WINDOW(gtk_widget_get_toplevel(GTK_WIDGET(fvd->plugin->top_widget))));
93ac601b 222 gtk_window_set_destroy_with_parent(GTK_WINDOW(fvd->f_window), TRUE);
6a4f1205 223
4ed9b7ba 224 /*
225 * Initiating GtkTable layout
226 * starts with 2 rows and 5 columns and
227 * expands when expressions added
228 */
1f7f7fe2 229 fvd->f_main_box = gtk_table_new(3,7,FALSE);
4ed9b7ba 230 gtk_table_set_row_spacings(GTK_TABLE(fvd->f_main_box),5);
231 gtk_table_set_col_spacings(GTK_TABLE(fvd->f_main_box),5);
91ad3f0a 232
6a4f1205 233 gtk_container_add(GTK_CONTAINER(fvd->f_window), GTK_WIDGET(fvd->f_main_box));
234
4ed9b7ba 235 /*
236 * First half of the filter window
237 * - textual entry of filter expression
238 * - processing button
239 */
240 fvd->f_expression_field = gtk_entry_new(); //gtk_scrolled_window_new (NULL, NULL);
3cea5310 241 g_signal_connect (G_OBJECT(fvd->f_expression_field),
242 "key-press-event", G_CALLBACK (callback_enter_check), (gpointer)fvd);
c2774e9d 243// gtk_entry_set_text(GTK_ENTRY(fvd->f_expression_field),"state.cpu>0");
4ed9b7ba 244 gtk_widget_show (fvd->f_expression_field);
245
c2774e9d 246 g_signal_connect (G_OBJECT (fvd->f_expression_field), "changed",
247 G_CALLBACK (callback_expression_field), (gpointer) fvd);
248
4ed9b7ba 249 fvd->f_process_button = gtk_button_new_with_label("Process");
250 gtk_widget_show (fvd->f_process_button);
251
c2774e9d 252 g_signal_connect (G_OBJECT (fvd->f_process_button), "clicked",
253 G_CALLBACK (callback_process_button), (gpointer) fvd);
254
1f7f7fe2 255 gtk_table_attach( GTK_TABLE(fvd->f_main_box),fvd->f_expression_field,0,6,0,1,GTK_FILL,GTK_FILL,0,0);
256 gtk_table_attach( GTK_TABLE(fvd->f_main_box),fvd->f_process_button,6,7,0,1,GTK_FILL,GTK_FILL,0,0);
c2774e9d 257
258
4ed9b7ba 259
260 /*
261 * Second half of the filter window
262 * - combo boxes featuring filtering options added to the expression
263 */
c2774e9d 264 fvd->f_add_button = gtk_button_new_with_label("Add Expression");
265 gtk_widget_show (fvd->f_add_button);
266
267 g_signal_connect (G_OBJECT (fvd->f_add_button), "clicked",
268 G_CALLBACK (callback_add_button), (gpointer) fvd);
4ed9b7ba 269
1f7f7fe2 270 gtk_table_attach( GTK_TABLE(fvd->f_main_box),fvd->f_add_button,6,7,1,2,GTK_FILL,GTK_FILL,0,0);
c2774e9d 271
272 fvd->f_logical_op_junction_box = gtk_combo_box_new_text();
2b715e58 273 for(i=0;i<fvd->f_logical_op_options->len;i++) {
274 GString* s = g_ptr_array_index(fvd->f_logical_op_options,i);
275 gtk_combo_box_append_text(GTK_COMBO_BOX(fvd->f_logical_op_junction_box), s->str);
276 }
277 gtk_combo_box_set_active(GTK_COMBO_BOX(fvd->f_logical_op_junction_box),0);
278
c2774e9d 279 //gtk_widget_show(fvd->f_logical_op_box);
2b99ec10 280
c2774e9d 281 gtk_table_attach( GTK_TABLE(fvd->f_main_box),fvd->f_logical_op_junction_box,0,1,1,2,GTK_SHRINK,GTK_FILL,0,0);
282
203eb6f7 283 gtk_container_set_border_width(GTK_CONTAINER(fvd->f_main_box), 1);
284
c2774e9d 285 /* initialize a new line */
286 fvd->f_lines = g_ptr_array_new();
287 fvd->rows = 1;
288 FilterViewerDataLine* fvdl = gui_filter_add_line(fvd);
289 g_ptr_array_add(fvd->f_lines,(gpointer) fvdl);
4ed9b7ba 290
c2774e9d 291 /*
292 * show main container
293 */
4ed9b7ba 294 gtk_widget_show(fvd->f_main_box);
6a4f1205 295 gtk_widget_show(fvd->f_window);
4ed9b7ba 296
91ad3f0a 297
298 g_object_set_data_full(
299 G_OBJECT(guifilter_get_widget(fvd)),
300 "filter_viewer_data",
301 fvd,
302 (GDestroyNotify)gui_filter_destructor);
303
0fc64e11 304 g_filter_list = g_slist_append(
305 g_filter_list,
306 fvd);
4ed9b7ba 307
91ad3f0a 308 return fvd;
309}
310
c2774e9d 311/**
7e7af7f2 312 * @fn FilterViewerDataLine* gui_filter_add_line(FilterViewerData*)
852f16bb 313 *
c2774e9d 314 * Adds a filter option line on the module tab
315 * @param fvd The filter module structure
316 * @return The line structure
317 */
318FilterViewerDataLine*
319gui_filter_add_line(FilterViewerData* fvd) {
320
321 FilterViewerDataLine* fvdl = g_new(FilterViewerDataLine,1);
322
2b715e58 323 unsigned i;
c2774e9d 324 fvdl->row = fvd->rows;
325 fvdl->visible = TRUE;
2b715e58 326
1f7f7fe2 327 fvdl->f_not_op_box = gtk_combo_box_new_text();
328 for(i=0;i<fvd->f_not_op_options->len;i++) {
329 GString* s = g_ptr_array_index(fvd->f_not_op_options,i);
330 gtk_combo_box_append_text(GTK_COMBO_BOX(fvdl->f_not_op_box), s->str);
331 }
332
2b715e58 333 fvdl->f_field_box = gtk_combo_box_new_text();
334 for(i=0;i<fvd->f_field_options->len;i++) {
335 GString* s = g_ptr_array_index(fvd->f_field_options,i);
1f7f7fe2 336// g_print("String field: %s\n",s->str);
2b715e58 337 gtk_combo_box_append_text(GTK_COMBO_BOX(fvdl->f_field_box), s->str);
338 }
339
340 fvdl->f_math_op_box = gtk_combo_box_new_text();
341 for(i=0;i<fvd->f_math_op_options->len;i++) {
342 GString* s = g_ptr_array_index(fvd->f_math_op_options,i);
343 gtk_combo_box_append_text(GTK_COMBO_BOX(fvdl->f_math_op_box), s->str);
344 }
345
c2774e9d 346 fvdl->f_value_field = gtk_entry_new();
c2774e9d 347
348 fvdl->f_logical_op_box = gtk_combo_box_new_text();
2b715e58 349 for(i=0;i<fvd->f_logical_op_options->len;i++) {
350 GString* s = g_ptr_array_index(fvd->f_logical_op_options,i);
351 gtk_combo_box_append_text(GTK_COMBO_BOX(fvdl->f_logical_op_box), s->str);
352 }
c2774e9d 353 gtk_widget_set_events(fvdl->f_logical_op_box,
354 GDK_ENTER_NOTIFY_MASK |
355 GDK_LEAVE_NOTIFY_MASK |
356 GDK_FOCUS_CHANGE_MASK);
357
358 g_signal_connect (G_OBJECT (fvdl->f_logical_op_box), "changed",
359 G_CALLBACK (callback_logical_op_box), (gpointer) fvd);
2b715e58 360
361 gui_filter_line_reset(fvdl);
362 gui_filter_line_set_visible(fvdl,TRUE);
c2774e9d 363
1f7f7fe2 364 gtk_table_attach( GTK_TABLE(fvd->f_main_box),fvdl->f_not_op_box,0,1,fvd->rows+1,fvd->rows+2,GTK_SHRINK,GTK_FILL,0,0);
365 gtk_table_attach( GTK_TABLE(fvd->f_main_box),fvdl->f_field_box,1,3,fvd->rows+1,fvd->rows+2,GTK_SHRINK,GTK_FILL,0,0);
366 gtk_table_attach( GTK_TABLE(fvd->f_main_box),fvdl->f_math_op_box,3,4,fvd->rows+1,fvd->rows+2,GTK_SHRINK,GTK_FILL,0,0);
367 gtk_table_attach( GTK_TABLE(fvd->f_main_box),fvdl->f_value_field,4,5,fvd->rows+1,fvd->rows+2,GTK_SHRINK,GTK_FILL,0,0);
368 gtk_table_attach( GTK_TABLE(fvd->f_main_box),fvdl->f_logical_op_box,5,6,fvd->rows+1,fvd->rows+2,GTK_SHRINK,GTK_FILL,0,0);
c2774e9d 369
370 return fvdl;
371}
372
852f16bb 373/**
7e7af7f2 374 * @fn void gui_filter_line_set_visible(FilterViewerDataLine*,gboolean)
852f16bb 375 *
376 * Change visible state of current FilterViewerDataLine
377 * @param fvdl pointer to the current FilterViewerDataLine
378 * @param v TRUE: sets visible, FALSE: sets invisible
379 */
7e7af7f2 380void
381gui_filter_line_set_visible(FilterViewerDataLine *fvdl, gboolean v) {
c2774e9d 382
383 fvdl->visible = v;
384 if(v) {
1f7f7fe2 385 gtk_widget_show(fvdl->f_not_op_box);
2b715e58 386 gtk_widget_show(fvdl->f_field_box);
c2774e9d 387 gtk_widget_show(fvdl->f_math_op_box);
388 gtk_widget_show(fvdl->f_value_field);
389 gtk_widget_show(fvdl->f_logical_op_box);
390 } else {
1f7f7fe2 391 gtk_widget_hide(fvdl->f_not_op_box);
2b715e58 392 gtk_widget_hide(fvdl->f_field_box);
c2774e9d 393 gtk_widget_hide(fvdl->f_math_op_box);
394 gtk_widget_hide(fvdl->f_value_field);
395 gtk_widget_hide(fvdl->f_logical_op_box);
396 }
397
398}
399
852f16bb 400/**
7e7af7f2 401 * @fn void gui_filter_line_reset(FilterViewerDataLine*)
852f16bb 402 *
403 * Sets selections of all boxes in current FilterViewerDataLine
404 * to default value (0)
405 * @param fvdl pointer to current FilterViewerDataLine
406 */
7e7af7f2 407void
408gui_filter_line_reset(FilterViewerDataLine *fvdl) {
c2774e9d 409
1f7f7fe2 410 gtk_combo_box_set_active(GTK_COMBO_BOX(fvdl->f_not_op_box),0);
2b715e58 411 gtk_combo_box_set_active(GTK_COMBO_BOX(fvdl->f_field_box),0);
c2774e9d 412 gtk_combo_box_set_active(GTK_COMBO_BOX(fvdl->f_math_op_box),0);
da2e1bfb 413 gtk_entry_set_text(GTK_ENTRY(fvdl->f_value_field),"");
c2774e9d 414 gtk_combo_box_set_active(GTK_COMBO_BOX(fvdl->f_logical_op_box),0);
415}
416
417/**
7e7af7f2 418 * @fn void gui_filter_destructor(FilterViewerData*)
852f16bb 419 *
c2774e9d 420 * Destructor for the filter gui module
421 * @param fvd The module structure
422 */
91ad3f0a 423void
424gui_filter_destructor(FilterViewerData *fvd)
425{
91ad3f0a 426 /* May already been done by GTK window closing */
427 if(GTK_IS_WIDGET(guifilter_get_widget(fvd))){
428 g_info("widget still exists");
429 }
da2e1bfb 430// if(tab != NULL) {
431// lttvwindow_unregister_traceset_notify(fvd->tab,
432// filter_traceset_changed,
433// filter_viewer_data);
434// }
91ad3f0a 435 lttvwindowtraces_background_notify_remove(fvd);
0fc64e11 436
437 g_filter_list = g_slist_remove(g_filter_list, fvd);
6a4f1205 438
91ad3f0a 439 g_free(fvd);
440}
441
91ad3f0a 442
443/**
7e7af7f2 444 * @fn GtkWidget* h_guifilter(Tab*)
852f16bb 445 *
446 * Filter Module's constructor hook
91ad3f0a 447 *
852f16bb 448 * This constructor is given as a parameter to the menuitem and toolbar button
449 * registration. It creates the list.
e433e6d6 450 * @param obj Object to interact with.
852f16bb 451 * @return The widget created.
91ad3f0a 452 */
453GtkWidget *
e433e6d6 454h_guifilter(LttvPlugin *plugin)
91ad3f0a 455{
e433e6d6 456 FilterViewerData* f = gui_filter(plugin) ;
6a4f1205 457
6a4f1205 458 return NULL;
91ad3f0a 459}
460
91ad3f0a 461/**
7e7af7f2 462 * @fn static void init()
852f16bb 463 *
464 * This function initializes the Filter Viewer functionnality through the
465 * gtkTraceSet API.
91ad3f0a 466 */
467static void init() {
468
469 lttvwindow_register_constructor("guifilter",
470 "/",
471 "Insert Filter Module",
472 hGuiFilterInsert_xpm,
473 "Insert Filter Module",
2b99ec10 474 h_guifilter);
91ad3f0a 475}
476
c2774e9d 477/**
7e7af7f2 478 * @fn void filter_destroy_walk(gpointer,gpointer)
852f16bb 479 *
c2774e9d 480 * Initiate the destruction of the current gui module
481 * on the GTK Interface
482 */
7e7af7f2 483void
484filter_destroy_walk(gpointer data, gpointer user_data)
91ad3f0a 485{
486 FilterViewerData *fvd = (FilterViewerData*)data;
487
c2774e9d 488 g_debug("CFV.c : filter_destroy_walk, %p", fvd);
da2e1bfb 489
91ad3f0a 490 /* May already have been done by GTK window closing */
491 if(GTK_IS_WIDGET(guifilter_get_widget(fvd)))
492 gtk_widget_destroy(guifilter_get_widget(fvd));
493}
494
495/**
7e7af7f2 496 * @fn static void destroy()
852f16bb 497 * @brief plugin's destroy function
91ad3f0a 498 *
852f16bb 499 * This function releases the memory reserved by the module and unregisters
500 * everything that has been registered in the gtkTraceSet API.
91ad3f0a 501 */
502static void destroy() {
0fc64e11 503
504 g_slist_foreach(g_filter_list, filter_destroy_walk, NULL );
91ad3f0a 505
2b99ec10 506 lttvwindow_unregister_constructor(h_guifilter);
91ad3f0a 507
508}
509
c2774e9d 510/**
7e7af7f2 511 * @fn void callback_process_button(GtkWidget*,gpointer)
852f16bb 512 *
c2774e9d 513 * The Process Button callback function
514 * @param widget The Button widget passed to the callback function
515 * @param data Data sent along with the callback function
516 */
7e7af7f2 517void
518callback_process_button(GtkWidget *widget, gpointer data) {
c2774e9d 519
da2e1bfb 520 g_debug("callback_process_button(): Processing expression");
521
c2774e9d 522 FilterViewerData *fvd = (FilterViewerData*)data;
064565c5 523 LttvFilter* filter;
c2774e9d 524
1f7f7fe2 525 if(strlen(gtk_entry_get_text(GTK_ENTRY(fvd->f_expression_field))) !=0) {
064565c5 526 filter = lttv_filter_new();
da2e1bfb 527 GString* s = g_string_new(gtk_entry_get_text(GTK_ENTRY(fvd->f_expression_field)));
528 lttv_filter_append_expression(filter,s->str);
529 g_string_free(s,TRUE);
064565c5 530 } else {
531 filter = NULL;
1f7f7fe2 532 }
e433e6d6 533 /* Remove the old filter if present */
534 //g_object_set_data_full(fvd->obj, "filter", filter,
535 // (GDestroyNotify)lttv_filter_destroy);
536 //g_object_notify(fvd->obj, "filter");
537 lttv_plugin_update_filter(fvd->plugin, filter);
c2774e9d 538}
539
3cea5310 540gboolean callback_enter_check(GtkWidget *widget,
541 GdkEventKey *event,
542 gpointer user_data)
543{
f42883f9 544 g_debug("typed : %x", event->keyval);
3cea5310 545 switch(event->keyval) {
546 case GDK_Return:
547 case GDK_KP_Enter:
548 case GDK_ISO_Enter:
549 case GDK_3270_Enter:
f42883f9 550 callback_process_button(widget, user_data);
3cea5310 551 break;
552 default:
553 break;
554 }
555 return FALSE;
556}
557
c2774e9d 558/**
7e7af7f2 559 * @fn void callback_expression_field(GtkWidget*,gpointer)
852f16bb 560 *
c2774e9d 561 * The Add Button callback function
562 * @param widget The Button widget passed to the callback function
563 * @param data Data sent along with the callback function
564 */
7e7af7f2 565void
566callback_expression_field(GtkWidget *widget, gpointer data) {
da2e1bfb 567
c2774e9d 568 FilterViewerData *fvd = (FilterViewerData*)data;
569
570 if(strlen(gtk_entry_get_text(GTK_ENTRY(fvd->f_expression_field))) !=0) {
571 gtk_widget_show(fvd->f_logical_op_junction_box);
572 } else {
573 gtk_widget_hide(fvd->f_logical_op_junction_box);
574 }
575}
576
577
578/**
7e7af7f2 579 * @fn void callback_add_button(GtkWidget*,gpointer)
852f16bb 580 *
c2774e9d 581 * The Add Button callback function
582 * @param widget The Button widget passed to the callback function
583 * @param data Data sent along with the callback function
584 */
7e7af7f2 585void
586callback_add_button(GtkWidget *widget, gpointer data) {
c2774e9d 587
da2e1bfb 588 g_debug("callback_add_button(): processing simple expressions");
c2774e9d 589
da2e1bfb 590 unsigned i;
591
c2774e9d 592 FilterViewerData *fvd = (FilterViewerData*)data;
593 FilterViewerDataLine *fvdl = NULL;
594 GString* a_filter_string = g_string_new("");
2b715e58 595
da2e1bfb 596 /*
597 * adding linking operator to
598 * string
599 */
2b715e58 600 GString* s;
601 s = g_ptr_array_index(fvd->f_logical_op_options,gtk_combo_box_get_active(GTK_COMBO_BOX(fvd->f_logical_op_junction_box)));
4ec0c904 602 a_filter_string = g_string_append(a_filter_string,s->str);
da2e1bfb 603 gtk_combo_box_set_active(GTK_COMBO_BOX(fvd->f_logical_op_junction_box),0);
c2774e9d 604
da2e1bfb 605 /* begin expression */
4ec0c904 606 a_filter_string = g_string_append_c(a_filter_string,'(');
2b715e58 607
da2e1bfb 608 /*
609 * For each simple expression, add the resulting string
610 * to the filter string
611 *
612 * Each simple expression takes the following schema
613 * [not operator '!',' '] [field type] [math operator '<','<=','>','>=','=','!='] [value]
614 */
c2774e9d 615 for(i=0;i<fvd->f_lines->len;i++) {
616 fvdl = (FilterViewerDataLine*)g_ptr_array_index(fvd->f_lines,i);
1f7f7fe2 617
618 s = g_ptr_array_index(fvd->f_not_op_options,gtk_combo_box_get_active(GTK_COMBO_BOX(fvdl->f_not_op_box)));
4ec0c904 619 a_filter_string = g_string_append(a_filter_string,s->str);
2b715e58 620
621 s = g_ptr_array_index(fvd->f_field_options,gtk_combo_box_get_active(GTK_COMBO_BOX(fvdl->f_field_box)));
4ec0c904 622 a_filter_string = g_string_append(a_filter_string,s->str);
2b715e58 623
624 s = g_ptr_array_index(fvd->f_math_op_options,gtk_combo_box_get_active(GTK_COMBO_BOX(fvdl->f_math_op_box)));
4ec0c904 625 a_filter_string = g_string_append(a_filter_string,s->str);
2b715e58 626
4ec0c904 627 a_filter_string = g_string_append(a_filter_string,gtk_entry_get_text(GTK_ENTRY(fvdl->f_value_field)));
2b715e58 628
629 s = g_ptr_array_index(fvd->f_logical_op_options,gtk_combo_box_get_active(GTK_COMBO_BOX(fvdl->f_logical_op_box)));
4ec0c904 630 a_filter_string = g_string_append(a_filter_string,s->str);
2b715e58 631
da2e1bfb 632 /*
633 * resetting simple expression lines
634 */
c2774e9d 635 gui_filter_line_reset(fvdl);
2b715e58 636 if(i) gui_filter_line_set_visible(fvdl,FALSE); // Only keep the first line
c2774e9d 637 }
638
da2e1bfb 639 /* end expression */
4ec0c904 640 a_filter_string = g_string_append_c(a_filter_string,')');
c2774e9d 641
2b715e58 642 g_string_prepend(a_filter_string,gtk_entry_get_text(GTK_ENTRY(fvd->f_expression_field)));
643 gtk_entry_set_text(GTK_ENTRY(fvd->f_expression_field),a_filter_string->str);
c2774e9d 644
645}
646
647/**
7e7af7f2 648 * @fn void callback_logical_op_box(GtkWidget*,gpointer)
852f16bb 649 *
c2774e9d 650 * The logical op box callback function
651 * @param widget The Button widget passed to the callback function
652 * @param data Data sent along with the callback function
653 */
7e7af7f2 654void
655callback_logical_op_box(GtkWidget *widget, gpointer data) {
c2774e9d 656
da2e1bfb 657 g_debug("callback_logical_op_box(): adding new simple expression");
c2774e9d 658
659 FilterViewerData *fvd = (FilterViewerData*)data;
660 FilterViewerDataLine *fvdl = NULL;
661
662 int i;
663 for(i=0;i<fvd->f_lines->len;i++) {
664 fvdl = (FilterViewerDataLine*)g_ptr_array_index(fvd->f_lines,i);
665 if(fvdl->f_logical_op_box == widget) {
da2e1bfb 666 if(gtk_combo_box_get_active(GTK_COMBO_BOX(fvdl->f_logical_op_box)) == 0) return;
c2774e9d 667 if(i==fvd->f_lines->len-1) { /* create a new line */
668 fvd->rows++;
669 FilterViewerDataLine* fvdl2 = gui_filter_add_line(fvd);
670 g_ptr_array_add(fvd->f_lines,(gpointer) fvdl2);
671 } else {
672 FilterViewerDataLine *fvdl2 = (FilterViewerDataLine*)g_ptr_array_index(fvd->f_lines,i+1);
673 if(!fvdl2->visible) gui_filter_line_set_visible(fvdl2,TRUE);
674 }
675 }
676 }
677
678}
91ad3f0a 679
680LTTV_MODULE("guifilter", "Filter window", \
681 "Graphical module that let user specify their filtering options", \
682 init, destroy, "lttvwindow")
683
This page took 0.065784 seconds and 4 git commands to generate.