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