update compat
[lttv.git] / ltt / branches / poly / lttv / lttv / filter.c
CommitLineData
9c312311 1/* This file is part of the Linux Trace Toolkit viewer
852f16bb 2 * Copyright (C) 2003-2005 Michel Dagenais and Simon Bouvier-Zappa
9c312311 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
7e7af7f2 19/*! \file lttv/lttv/filter.c
20 * \brief Defines the core filter of application
21 *
22 * consist in AND, OR and NOT nested expressions, forming a tree with
23 * simple relations as leaves. The simple relations test if a field
24 * in an event is equal, not equal, smaller, smaller or equal, larger, or
25 * larger or equal to a specified value.
26 *
27 * Fields specified in a simple expression can take following
28 * values
29 *
da2e1bfb 30 * \verbatim
31 * LttvTracefileContext{}
7e7af7f2 32 * |->event\
33 * | |->name (String, converted to GQuark)
ffd088ef 34 * | |->facility (String, converted to GQuark)
7e7af7f2 35 * | |->category (String, not yet implemented)
36 * | |->time (LttTime)
bbd9d557 37 * | |->tsc (LttCycleCount --> uint64)
7e7af7f2 38 * | |->fields
39 * | |->"event name"
40 * | |->"field name"
41 * | |->"sub-field name"
42 * | |->...
43 * | |->"leaf-field name" (field type)
44 * |->tracefile
45 * | |->name (String, converted to GQuark)
46 * |->trace
47 * | |->name (String, converted to GQuark)
48 * |->state
2ec11087 49 * |->pid (guint)
50 * |->ppid (guint)
7e7af7f2 51 * |->creation_time (LttTime)
52 * |->insertion_time (LttTime)
53 * |->process_name (String, converted to GQuark)
54 * |->execution_mode (LttvExecutionMode)
55 * |->execution_submode (LttvExecutionSubmode)
56 * |->process_status (LttvProcessStatus)
6e0d58d6 57 * |->cpu (guint)
da2e1bfb 58 * \endverbatim
150f0d33 59 */
60
61/*
bbd9d557 62 * \todo
150f0d33 63 * - refine switch of expression in multiple uses functions
be66ef34 64 * - remove the idle expressions in the tree
150f0d33 65 */
66
4e4d11b3 67#ifdef HAVE_CONFIG_H
68#include <config.h>
69#endif
70
72911c5d 71//#define TEST
be66ef34 72#ifdef TEST
73#include <time.h>
74#include <sys/time.h>
75#endif
76
87834cd1 77#include <lttv/lttv.h>
150f0d33 78#include <lttv/filter.h>
327a4314 79#include <ltt/trace.h>
348c6ba8 80#include <ltt/type.h>
c7891f0b 81#include <ltt/facility.h>
327a4314 82#include <stdlib.h>
83#include <string.h>
80f9611a 84
85/**
56e29124 86 * @fn LttvSimpleExpression* lttv_simple_expression_new()
87 *
80f9611a 88 * Constructor for LttvSimpleExpression
89 * @return pointer to new LttvSimpleExpression
90 */
91LttvSimpleExpression*
92lttv_simple_expression_new() {
93
94 LttvSimpleExpression* se = g_new(LttvSimpleExpression,1);
95
96 se->field = LTTV_FILTER_UNDEFINED;
97 se->op = NULL;
98 se->offset = 0;
80f9611a 99
100 return se;
101}
102
0769c82f 103/**
7e7af7f2 104 * @fn gboolean lttv_simple_expression_assign_field(GPtrArray*,LttvSimpleExpression*)
56e29124 105 *
0769c82f 106 * Parse through filtering field hierarchy as specified
107 * by user. This function compares each value to
108 * predetermined quarks
109 * @param fp The field path list
bb87caa7 110 * @param se current simple expression
0769c82f 111 * @return success/failure of operation
112 */
113gboolean
9ab5ebd7 114lttv_simple_expression_assign_field(GPtrArray* fp, LttvSimpleExpression* se) {
0769c82f 115
f4e9dd16 116 GString* f = NULL;
73050a5f 117
2b99ec10 118 if(fp->len < 2) return FALSE;
327a4314 119 g_assert((f=g_ptr_array_remove_index(fp,0)));
73050a5f 120
47aa6e58 121 /*
122 * Parse through the specified
123 * hardcoded fields.
124 *
125 * Take note however that the
126 * 'event' subfields might change
127 * depending on values specified
128 * in core.xml file. Hence, if
129 * none of the subfields in the
130 * array match the hardcoded
131 * subfields, it will be considered
132 * as a dynamic field
133 */
80f9611a 134 if(!g_strcasecmp(f->str,"trace") ) {
47aa6e58 135 /*
136 * Possible values:
137 * trace.name
138 */
73050a5f 139 g_string_free(f,TRUE);
140 f=g_ptr_array_remove_index(fp,0);
80f9611a 141 if(!g_strcasecmp(f->str,"name")) {
389ba50e 142 se->field = LTTV_FILTER_TRACE_NAME;
143 }
80f9611a 144 } else if(!g_strcasecmp(f->str,"traceset") ) {
47aa6e58 145 /*
146 * FIXME: not yet implemented !
147 */
80f9611a 148 } else if(!g_strcasecmp(f->str,"tracefile") ) {
47aa6e58 149 /*
150 * Possible values:
151 * tracefile.name
152 */
73050a5f 153 g_string_free(f,TRUE);
154 f=g_ptr_array_remove_index(fp,0);
80f9611a 155 if(!g_strcasecmp(f->str,"name")) {
389ba50e 156 se->field = LTTV_FILTER_TRACEFILE_NAME;
157 }
80f9611a 158 } else if(!g_strcasecmp(f->str,"state") ) {
47aa6e58 159 /*
160 * Possible values:
161 * state.pid
162 * state.ppid
163 * state.creation_time
164 * state.insertion_time
165 * state.process_name
166 * state.execution_mode
167 * state.execution_submode
168 * state.process_status
169 * state.cpu
170 */
73050a5f 171 g_string_free(f,TRUE);
172 f=g_ptr_array_remove_index(fp,0);
80f9611a 173 if(!g_strcasecmp(f->str,"pid") ) {
389ba50e 174 se->field = LTTV_FILTER_STATE_PID;
175 }
80f9611a 176 else if(!g_strcasecmp(f->str,"ppid") ) {
389ba50e 177 se->field = LTTV_FILTER_STATE_PPID;
178 }
80f9611a 179 else if(!g_strcasecmp(f->str,"creation_time") ) {
389ba50e 180 se->field = LTTV_FILTER_STATE_CT;
181 }
80f9611a 182 else if(!g_strcasecmp(f->str,"insertion_time") ) {
389ba50e 183 se->field = LTTV_FILTER_STATE_IT;
184 }
80f9611a 185 else if(!g_strcasecmp(f->str,"process_name") ) {
389ba50e 186 se->field = LTTV_FILTER_STATE_P_NAME;
187 }
80f9611a 188 else if(!g_strcasecmp(f->str,"execution_mode") ) {
389ba50e 189 se->field = LTTV_FILTER_STATE_EX_MODE;
190 }
80f9611a 191 else if(!g_strcasecmp(f->str,"execution_submode") ) {
389ba50e 192 se->field = LTTV_FILTER_STATE_EX_SUBMODE;
193 }
80f9611a 194 else if(!g_strcasecmp(f->str,"process_status") ) {
389ba50e 195 se->field = LTTV_FILTER_STATE_P_STATUS;
196 }
80f9611a 197 else if(!g_strcasecmp(f->str,"cpu") ) {
389ba50e 198 se->field = LTTV_FILTER_STATE_CPU;
199 }
80f9611a 200 } else if(!g_strcasecmp(f->str,"event") ) {
389ba50e 201 /*
202 * Possible values:
203 * event.name
204 * event.category
205 * event.time
206 * event.tsc
207 */
73050a5f 208 g_string_free(f,TRUE);
209 f=g_ptr_array_remove_index(fp,0);
80f9611a 210 if(!g_strcasecmp(f->str,"name") ) {
389ba50e 211 se->field = LTTV_FILTER_EVENT_NAME;
212 }
ffd088ef 213 else if(!g_strcasecmp(f->str,"facility") ) {
214 se->field = LTTV_FILTER_EVENT_FACILITY;
215 }
80f9611a 216 else if(!g_strcasecmp(f->str,"category") ) {
389ba50e 217 /*
218 * FIXME: Category not yet functional in lttv
219 */
220 se->field = LTTV_FILTER_EVENT_CATEGORY;
221 }
80f9611a 222 else if(!g_strcasecmp(f->str,"time") ) {
389ba50e 223 se->field = LTTV_FILTER_EVENT_TIME;
2b99ec10 224 }
80f9611a 225 else if(!g_strcasecmp(f->str,"tsc") ) {
389ba50e 226 se->field = LTTV_FILTER_EVENT_TSC;
2b99ec10 227 }
228 else { /* core.xml specified options */
389ba50e 229 se->field = LTTV_FILTER_EVENT_FIELD;
2b99ec10 230 }
91ad3f0a 231 } else {
232 g_warning("Unrecognized field in filter string");
0769c82f 233 }
47aa6e58 234
56e29124 235 /* free memory for last string */
73050a5f 236 g_string_free(f,TRUE);
56e29124 237
238 /* array should be empty */
73050a5f 239 g_assert(fp->len == 0);
56e29124 240
56e29124 241 if(se->field == LTTV_FILTER_UNDEFINED) {
242 g_warning("The specified field was not recognized !");
243 return FALSE;
244 }
91ad3f0a 245 return TRUE;
0769c82f 246}
247
bb87caa7 248/**
56e29124 249 * @fn gboolean lttv_simple_expression_assign_operator(LttvSimpleExpression*,LttvExpressionOp)
250 *
bb87caa7 251 * Sets the function pointer for the current
252 * Simple Expression
253 * @param se current simple expression
7e7af7f2 254 * @param op current operator
bb87caa7 255 * @return success/failure of operation
256 */
be66ef34 257gboolean
258lttv_simple_expression_assign_operator(LttvSimpleExpression* se, LttvExpressionOp op) {
aa4600f3 259
bb87caa7 260 switch(se->field) {
56e29124 261 /*
262 * string
263 */
bb87caa7 264 case LTTV_FILTER_TRACE_NAME:
265 case LTTV_FILTER_TRACEFILE_NAME:
266 case LTTV_FILTER_STATE_P_NAME:
267 case LTTV_FILTER_EVENT_NAME:
c7891f0b 268 case LTTV_FILTER_EVENT_FACILITY:
be66ef34 269 case LTTV_FILTER_STATE_EX_MODE:
270 case LTTV_FILTER_STATE_EX_SUBMODE:
271 case LTTV_FILTER_STATE_P_STATUS:
bb87caa7 272 switch(op) {
273 case LTTV_FIELD_EQ:
c6832b57 274 se->op = lttv_apply_op_eq_quark;
bb87caa7 275 break;
276 case LTTV_FIELD_NE:
c6832b57 277 se->op = lttv_apply_op_ne_quark;
bb87caa7 278 break;
279 default:
73050a5f 280 g_warning("Error encountered in operator assignment = or != expected");
bb87caa7 281 return FALSE;
282 }
283 break;
56e29124 284 /*
285 * integer
286 */
bbd9d557 287 case LTTV_FILTER_EVENT_TSC:
bb87caa7 288 switch(op) {
289 case LTTV_FIELD_EQ:
290 se->op = lttv_apply_op_eq_uint64;
291 break;
292 case LTTV_FIELD_NE:
293 se->op = lttv_apply_op_ne_uint64;
294 break;
295 case LTTV_FIELD_LT:
296 se->op = lttv_apply_op_lt_uint64;
297 break;
298 case LTTV_FIELD_LE:
299 se->op = lttv_apply_op_le_uint64;
300 break;
301 case LTTV_FIELD_GT:
302 se->op = lttv_apply_op_gt_uint64;
303 break;
304 case LTTV_FIELD_GE:
305 se->op = lttv_apply_op_ge_uint64;
306 break;
307 default:
308 g_warning("Error encountered in operator assignment");
309 return FALSE;
310 }
311 break;
6e0d58d6 312 /*
2ec11087 313 * unsigned integers
6e0d58d6 314 */
315 case LTTV_FILTER_STATE_CPU:
316 case LTTV_FILTER_STATE_PID:
317 case LTTV_FILTER_STATE_PPID:
318 switch(op) {
319 case LTTV_FIELD_EQ:
2ec11087 320 se->op = lttv_apply_op_eq_uint;
6e0d58d6 321 break;
322 case LTTV_FIELD_NE:
2ec11087 323 se->op = lttv_apply_op_ne_uint;
6e0d58d6 324 break;
325 case LTTV_FIELD_LT:
2ec11087 326 se->op = lttv_apply_op_lt_uint;
6e0d58d6 327 break;
328 case LTTV_FIELD_LE:
2ec11087 329 se->op = lttv_apply_op_le_uint;
6e0d58d6 330 break;
331 case LTTV_FIELD_GT:
2ec11087 332 se->op = lttv_apply_op_gt_uint;
6e0d58d6 333 break;
334 case LTTV_FIELD_GE:
2ec11087 335 se->op = lttv_apply_op_ge_uint;
6e0d58d6 336 break;
337 default:
338 g_warning("Error encountered in operator assignment");
339 return FALSE;
340 }
341 break;
342
f017db44 343 /*
344 * Enums
be66ef34 345 * Entered as string, converted to enum
346 *
f017db44 347 * can only be compared with 'equal' or 'not equal' operators
348 *
349 * unsigned int of 16 bits are used here since enums
be66ef34 350 * should not go over 2^16-1 values
f017db44 351 */
be66ef34 352// case /*NOTHING*/:
353// switch(op) {
354// case LTTV_FIELD_EQ:
355// se->op = lttv_apply_op_eq_uint16;
356// break;
357// case LTTV_FIELD_NE:
358// se->op = lttv_apply_op_ne_uint16;
359// break;
360// default:
361// g_warning("Error encountered in operator assignment = or != expected");
362// return FALSE;
363// }
364// break;
56e29124 365 /*
7145a073 366 * Ltttime
56e29124 367 */
bb87caa7 368 case LTTV_FILTER_STATE_CT:
369 case LTTV_FILTER_STATE_IT:
370 case LTTV_FILTER_EVENT_TIME:
bb87caa7 371 switch(op) {
372 case LTTV_FIELD_EQ:
7145a073 373 se->op = lttv_apply_op_eq_ltttime;
bb87caa7 374 break;
375 case LTTV_FIELD_NE:
7145a073 376 se->op = lttv_apply_op_ne_ltttime;
bb87caa7 377 break;
378 case LTTV_FIELD_LT:
7145a073 379 se->op = lttv_apply_op_lt_ltttime;
bb87caa7 380 break;
381 case LTTV_FIELD_LE:
7145a073 382 se->op = lttv_apply_op_le_ltttime;
bb87caa7 383 break;
384 case LTTV_FIELD_GT:
7145a073 385 se->op = lttv_apply_op_gt_ltttime;
bb87caa7 386 break;
387 case LTTV_FIELD_GE:
7145a073 388 se->op = lttv_apply_op_ge_ltttime;
bb87caa7 389 break;
390 default:
391 g_warning("Error encountered in operator assignment");
392 return FALSE;
393 }
394 break;
395 default:
9ab5ebd7 396 g_warning("Error encountered in operator assignation ! Field type:%i",se->field);
bb87caa7 397 return FALSE;
398 }
aa4600f3 399
400 return TRUE;
bb87caa7 401
402}
403
9ab5ebd7 404/**
7e7af7f2 405 * @fn gboolean lttv_simple_expression_assign_value(LttvSimpleExpression*,char*)
9ab5ebd7 406 *
407 * Assign the value field to the current LttvSimpleExpression
408 * @param se pointer to the current LttvSimpleExpression
409 * @param value string value for simple expression
410 */
be66ef34 411gboolean
412lttv_simple_expression_assign_value(LttvSimpleExpression* se, char* value) {
9ab5ebd7 413
46c40a93 414 unsigned i;
415 gboolean is_double = FALSE;
c6832b57 416 LttTime t = ltt_time_zero;
417 GString* v;
9ab5ebd7 418
419 switch(se->field) {
420 /*
be66ef34 421 * Strings
422 * entered as strings, converted to Quarks
9ab5ebd7 423 */
424 case LTTV_FILTER_TRACE_NAME:
425 case LTTV_FILTER_TRACEFILE_NAME:
426 case LTTV_FILTER_STATE_P_NAME:
427 case LTTV_FILTER_EVENT_NAME:
c7891f0b 428 case LTTV_FILTER_EVENT_FACILITY:
be66ef34 429 case LTTV_FILTER_STATE_EX_MODE:
430 case LTTV_FILTER_STATE_EX_SUBMODE:
431 case LTTV_FILTER_STATE_P_STATUS:
432 // se->value.v_string = value;
bbd9d557 433 se->value.v_uint32 = g_quark_from_string(value);
c6832b57 434 g_free(value);
9ab5ebd7 435 break;
436 /*
be66ef34 437 * integer -- supposed to be uint64
9ab5ebd7 438 */
bbd9d557 439 case LTTV_FILTER_EVENT_TSC:
9ab5ebd7 440 se->value.v_uint64 = atoi(value);
441 g_free(value);
442 break;
6e0d58d6 443 /*
2ec11087 444 * unsigned integers
6e0d58d6 445 */
446 case LTTV_FILTER_STATE_PID:
447 case LTTV_FILTER_STATE_PPID:
448 case LTTV_FILTER_STATE_CPU:
2ec11087 449 se->value.v_uint = atoi(value);
6e0d58d6 450 g_free(value);
451 break;
9ab5ebd7 452 /*
7145a073 453 * LttTime
9ab5ebd7 454 */
455 case LTTV_FILTER_STATE_CT:
456 case LTTV_FILTER_STATE_IT:
457 case LTTV_FILTER_EVENT_TIME:
7145a073 458 //se->value.v_double = atof(value);
46c40a93 459 /*
460 * parsing logic could be optimised,
461 * but as for now, simpler this way
462 */
463 v = g_string_new("");
464 for(i=0;i<strlen(value);i++) {
465 if(value[i] == '.') {
466 /* cannot specify number with more than one '.' */
467 if(is_double) return FALSE;
468 else is_double = TRUE;
826f1ab2 469 t.tv_sec = atoi(v->str);
46c40a93 470 g_string_free(v,TRUE);
471 v = g_string_new("");
472 } else g_string_append_c(v,value[i]);
473 }
474 /* number can be integer or double */
826f1ab2 475 if(is_double) t.tv_nsec = atoi(v->str);
476 else t.tv_sec = atoi(v->str);
c6832b57 477
46c40a93 478 g_string_free(v,TRUE);
479
480 se->value.v_ltttime = t;
9ab5ebd7 481 g_free(value);
482 break;
483 default:
484 g_warning("Error encountered in value assignation ! Field type = %i",se->field);
c6832b57 485 g_free(value);
9ab5ebd7 486 return FALSE;
487 }
488
489 return TRUE;
490
491}
492
31452f49 493/**
56e29124 494 * @fn void lttv_simple_expression_destroy(LttvSimpleExpression*)
495 *
9ab5ebd7 496 * Disallocate memory for the current
56e29124 497 * simple expression
498 * @param se pointer to the current LttvSimpleExpression
499 */
500void
501lttv_simple_expression_destroy(LttvSimpleExpression* se) {
502
9ab5ebd7 503 // g_free(se->value);
786c5c3b 504// switch(se->field) {
505// case LTTV_FILTER_TRACE_NAME:
506// case LTTV_FILTER_TRACEFILE_NAME:
507// case LTTV_FILTER_STATE_P_NAME:
508// case LTTV_FILTER_EVENT_NAME:
509// g_free(se->value.v_string);
510// break;
511// }
56e29124 512 g_free(se);
513
514}
515
516/**
517 * @fn gint lttv_struct_type(gint)
518 *
80f9611a 519 * Finds the structure type depending
520 * on the fields in parameters
521 * @params ft Field of the current structure
522 * @return LttvStructType enum or -1 for error
84a333d6 523 */
80f9611a 524gint
525lttv_struct_type(gint ft) {
5f185a2b 526
80f9611a 527 switch(ft) {
528 case LTTV_FILTER_TRACE_NAME:
529 return LTTV_FILTER_TRACE;
530 break;
531 case LTTV_FILTER_TRACEFILE_NAME:
532 return LTTV_FILTER_TRACEFILE;
533 break;
534 case LTTV_FILTER_STATE_PID:
535 case LTTV_FILTER_STATE_PPID:
536 case LTTV_FILTER_STATE_CT:
537 case LTTV_FILTER_STATE_IT:
538 case LTTV_FILTER_STATE_P_NAME:
539 case LTTV_FILTER_STATE_EX_MODE:
540 case LTTV_FILTER_STATE_EX_SUBMODE:
541 case LTTV_FILTER_STATE_P_STATUS:
542 case LTTV_FILTER_STATE_CPU:
543 return LTTV_FILTER_STATE;
544 break;
545 case LTTV_FILTER_EVENT_NAME:
ffd088ef 546 case LTTV_FILTER_EVENT_FACILITY:
80f9611a 547 case LTTV_FILTER_EVENT_CATEGORY:
548 case LTTV_FILTER_EVENT_TIME:
549 case LTTV_FILTER_EVENT_TSC:
550 case LTTV_FILTER_EVENT_FIELD:
551 return LTTV_FILTER_EVENT;
552 break;
553 default:
554 return -1;
555 }
84a333d6 556}
557
2ec11087 558/**
559 * @fn gboolean lttv_apply_op_eq_uint(gpointer,LttvFieldValue)
560 *
561 * Applies the 'equal' operator to the
562 * specified structure and value
563 * @param v1 left member of comparison
564 * @param v2 right member of comparison
565 * @return success/failure of operation
566 */
567gboolean lttv_apply_op_eq_uint(const gpointer v1, LttvFieldValue v2) {
568
569 guint* r = (guint*) v1;
570 return (*r == v2.v_uint);
571
572}
573
150f0d33 574/**
7e7af7f2 575 * @fn gboolean lttv_apply_op_eq_uint64(gpointer,LttvFieldValue)
56e29124 576 *
150f0d33 577 * Applies the 'equal' operator to the
47aa6e58 578 * specified structure and value
579 * @param v1 left member of comparison
580 * @param v2 right member of comparison
150f0d33 581 * @return success/failure of operation
582 */
4d9ff942 583gboolean lttv_apply_op_eq_uint64(const gpointer v1, LttvFieldValue v2) {
83aa92fc 584
585 guint64* r = (guint64*) v1;
9ab5ebd7 586 return (*r == v2.v_uint64);
83aa92fc 587
588}
150f0d33 589
5b729fcf 590/**
7e7af7f2 591 * @fn gboolean lttv_apply_op_eq_uint32(gpointer,LttvFieldValue)
56e29124 592 *
5b729fcf 593 * Applies the 'equal' operator to the
47aa6e58 594 * specified structure and value
595 * @param v1 left member of comparison
596 * @param v2 right member of comparison
5b729fcf 597 * @return success/failure of operation
598 */
4d9ff942 599gboolean lttv_apply_op_eq_uint32(const gpointer v1, LttvFieldValue v2) {
83aa92fc 600 guint32* r = (guint32*) v1;
9ab5ebd7 601 return (*r == v2.v_uint32);
83aa92fc 602}
5b729fcf 603
604/**
7e7af7f2 605 * @fn gboolean lttv_apply_op_eq_uint16(gpointer,LttvFieldValue)
56e29124 606 *
5b729fcf 607 * Applies the 'equal' operator to the
47aa6e58 608 * specified structure and value
609 * @param v1 left member of comparison
610 * @param v2 right member of comparison
5b729fcf 611 * @return success/failure of operation
612 */
4d9ff942 613gboolean lttv_apply_op_eq_uint16(const gpointer v1, LttvFieldValue v2) {
83aa92fc 614 guint16* r = (guint16*) v1;
9ab5ebd7 615 return (*r == v2.v_uint16);
83aa92fc 616}
5b729fcf 617
618/**
7e7af7f2 619 * @fn gboolean lttv_apply_op_eq_double(gpointer,LttvFieldValue)
56e29124 620 *
5b729fcf 621 * Applies the 'equal' operator to the
47aa6e58 622 * specified structure and value
623 * @param v1 left member of comparison
624 * @param v2 right member of comparison
5b729fcf 625 * @return success/failure of operation
626 */
4d9ff942 627gboolean lttv_apply_op_eq_double(const gpointer v1, LttvFieldValue v2) {
83aa92fc 628 double* r = (double*) v1;
9ab5ebd7 629 return (*r == v2.v_double);
83aa92fc 630}
5b729fcf 631
632/**
7e7af7f2 633 * @fn gboolean lttv_apply_op_eq_string(gpointer,LttvFieldValue)
56e29124 634 *
5b729fcf 635 * Applies the 'equal' operator to the
47aa6e58 636 * specified structure and value
637 * @param v1 left member of comparison
638 * @param v2 right member of comparison
5b729fcf 639 * @return success/failure of operation
640 */
4d9ff942 641gboolean lttv_apply_op_eq_string(const gpointer v1, LttvFieldValue v2) {
83aa92fc 642 char* r = (char*) v1;
9ab5ebd7 643 return (!g_strcasecmp(r,v2.v_string));
83aa92fc 644}
150f0d33 645
c6832b57 646/**
7e7af7f2 647 * @fn gboolean lttv_apply_op_eq_quark(gpointer,LttvFieldValue)
c6832b57 648 *
649 * Applies the 'equal' operator to the
650 * specified structure and value
651 * @param v1 left member of comparison
652 * @param v2 right member of comparison
653 * @return success/failure of operation
654 */
655gboolean lttv_apply_op_eq_quark(const gpointer v1, LttvFieldValue v2) {
656 GQuark* r = (GQuark*) v1;
1a252208 657// g_print("v1:%i v2:%i\n",*r,v2.v_uint32);
c6832b57 658 return (*r == v2.v_uint32);
659}
660
7145a073 661/**
7e7af7f2 662 * @fn gboolean lttv_apply_op_eq_ltttime(gpointer,LttvFieldValue)
7145a073 663 *
664 * Applies the 'equal' operator to the
665 * specified structure and value
666 * @param v1 left member of comparison
667 * @param v2 right member of comparison
668 * @return success/failure of operation
669 */
4d9ff942 670gboolean lttv_apply_op_eq_ltttime(const gpointer v1, LttvFieldValue v2) {
7145a073 671 LttTime* r = (LttTime*) v1;
c6832b57 672 return ltt_time_compare(*r, v2.v_ltttime)==0?1:0;
7145a073 673}
674
2ec11087 675/**
676 * @fn gboolean lttv_apply_op_ne_uint(gpointer,LttvFieldValue)
677 *
678 * Applies the 'not equal' operator to the
679 * specified structure and value
680 * @param v1 left member of comparison
681 * @param v2 right member of comparison
682 * @return success/failure of operation
683 */
684gboolean lttv_apply_op_ne_uint(const gpointer v1, LttvFieldValue v2) {
685 guint* r = (guint*) v1;
686 return (*r != v2.v_uint);
687}
7145a073 688
150f0d33 689/**
7e7af7f2 690 * @fn gboolean lttv_apply_op_ne_uint64(gpointer,LttvFieldValue)
56e29124 691 *
150f0d33 692 * Applies the 'not equal' operator to the
47aa6e58 693 * specified structure and value
694 * @param v1 left member of comparison
695 * @param v2 right member of comparison
150f0d33 696 * @return success/failure of operation
697 */
4d9ff942 698gboolean lttv_apply_op_ne_uint64(const gpointer v1, LttvFieldValue v2) {
83aa92fc 699 guint64* r = (guint64*) v1;
9ab5ebd7 700 return (*r != v2.v_uint64);
83aa92fc 701}
150f0d33 702
5b729fcf 703/**
7e7af7f2 704 * @fn gboolean lttv_apply_op_ne_uint32(gpointer,LttvFieldValue)
56e29124 705 *
5b729fcf 706 * Applies the 'not equal' operator to the
47aa6e58 707 * specified structure and value
708 * @param v1 left member of comparison
709 * @param v2 right member of comparison
5b729fcf 710 * @return success/failure of operation
711 */
4d9ff942 712gboolean lttv_apply_op_ne_uint32(const gpointer v1, LttvFieldValue v2) {
83aa92fc 713 guint32* r = (guint32*) v1;
9ab5ebd7 714 return (*r != v2.v_uint32);
83aa92fc 715}
5b729fcf 716
717/**
7e7af7f2 718 * @fn gboolean lttv_apply_op_ne_uint16(gpointer,LttvFieldValue)
56e29124 719 *
5b729fcf 720 * Applies the 'not equal' operator to the
47aa6e58 721 * specified structure and value
722 * @param v1 left member of comparison
723 * @param v2 right member of comparison
5b729fcf 724 * @return success/failure of operation
725 */
4d9ff942 726gboolean lttv_apply_op_ne_uint16(const gpointer v1, LttvFieldValue v2) {
83aa92fc 727 guint16* r = (guint16*) v1;
9ab5ebd7 728 return (*r != v2.v_uint16);
83aa92fc 729}
5b729fcf 730
731/**
7e7af7f2 732 * @fn gboolean lttv_apply_op_ne_double(gpointer,LttvFieldValue)
56e29124 733 *
5b729fcf 734 * Applies the 'not equal' operator to the
47aa6e58 735 * specified structure and value
736 * @param v1 left member of comparison
737 * @param v2 right member of comparison
5b729fcf 738 * @return success/failure of operation
739 */
4d9ff942 740gboolean lttv_apply_op_ne_double(const gpointer v1, LttvFieldValue v2) {
83aa92fc 741 double* r = (double*) v1;
9ab5ebd7 742 return (*r != v2.v_double);
83aa92fc 743}
5b729fcf 744
745/**
7e7af7f2 746 * @fn gboolean lttv_apply_op_ne_string(gpointer,LttvFieldValue)
56e29124 747 *
5b729fcf 748 * Applies the 'not equal' operator to the
47aa6e58 749 * specified structure and value
750 * @param v1 left member of comparison
751 * @param v2 right member of comparison
5b729fcf 752 * @return success/failure of operation
753 */
4d9ff942 754gboolean lttv_apply_op_ne_string(const gpointer v1, LttvFieldValue v2) {
83aa92fc 755 char* r = (char*) v1;
9ab5ebd7 756 return (g_strcasecmp(r,v2.v_string));
83aa92fc 757}
150f0d33 758
c6832b57 759/**
7e7af7f2 760 * @fn gboolean lttv_apply_op_ne_quark(gpointer,LttvFieldValue)
c6832b57 761 *
762 * Applies the 'not equal' operator to the
763 * specified structure and value
764 * @param v1 left member of comparison
765 * @param v2 right member of comparison
766 * @return success/failure of operation
767 */
768gboolean lttv_apply_op_ne_quark(const gpointer v1, LttvFieldValue v2) {
769 GQuark* r = (GQuark*) v1;
770 return (*r != v2.v_uint32);
771}
772
773
7145a073 774/**
7e7af7f2 775 * @fn gboolean lttv_apply_op_ne_ltttime(gpointer,LttvFieldValue)
7145a073 776 *
777 * Applies the 'not equal' operator to the
778 * specified structure and value
779 * @param v1 left member of comparison
780 * @param v2 right member of comparison
781 * @return success/failure of operation
782 */
4d9ff942 783gboolean lttv_apply_op_ne_ltttime(const gpointer v1, LttvFieldValue v2) {
7145a073 784 LttTime* r = (LttTime*) v1;
46c40a93 785 return ltt_time_compare(*r, v2.v_ltttime)!=0?1:0;
7145a073 786}
787
2ec11087 788/**
789 * @fn gboolean lttv_apply_op_lt_uint(gpointer,LttvFieldValue)
790 *
791 * Applies the 'lower than' operator to the
792 * specified structure and value
793 * @param v1 left member of comparison
794 * @param v2 right member of comparison
795 * @return success/failure of operation
796 */
797gboolean lttv_apply_op_lt_uint(const gpointer v1, LttvFieldValue v2) {
798 guint* r = (guint*) v1;
799 return (*r < v2.v_uint);
800}
7145a073 801
150f0d33 802/**
7e7af7f2 803 * @fn gboolean lttv_apply_op_lt_uint64(gpointer,LttvFieldValue)
56e29124 804 *
150f0d33 805 * Applies the 'lower than' operator to the
47aa6e58 806 * specified structure and value
807 * @param v1 left member of comparison
808 * @param v2 right member of comparison
150f0d33 809 * @return success/failure of operation
810 */
4d9ff942 811gboolean lttv_apply_op_lt_uint64(const gpointer v1, LttvFieldValue v2) {
83aa92fc 812 guint64* r = (guint64*) v1;
9ab5ebd7 813 return (*r < v2.v_uint64);
83aa92fc 814}
150f0d33 815
5b729fcf 816/**
7e7af7f2 817 * @fn gboolean lttv_apply_op_lt_uint32(gpointer,LttvFieldValue)
56e29124 818 *
5b729fcf 819 * Applies the 'lower than' operator to the
47aa6e58 820 * specified structure and value
821 * @param v1 left member of comparison
822 * @param v2 right member of comparison
5b729fcf 823 * @return success/failure of operation
824 */
4d9ff942 825gboolean lttv_apply_op_lt_uint32(const gpointer v1, LttvFieldValue v2) {
83aa92fc 826 guint32* r = (guint32*) v1;
9ab5ebd7 827 return (*r < v2.v_uint32);
83aa92fc 828}
5b729fcf 829
830/**
7e7af7f2 831 * @fn gboolean lttv_apply_op_lt_uint16(gpointer,LttvFieldValue)
56e29124 832 *
5b729fcf 833 * Applies the 'lower than' operator to the
47aa6e58 834 * specified structure and value
835 * @param v1 left member of comparison
836 * @param v2 right member of comparison
5b729fcf 837 * @return success/failure of operation
838 */
4d9ff942 839gboolean lttv_apply_op_lt_uint16(const gpointer v1, LttvFieldValue v2) {
83aa92fc 840 guint16* r = (guint16*) v1;
9ab5ebd7 841 return (*r < v2.v_uint16);
83aa92fc 842}
5b729fcf 843
844/**
7e7af7f2 845 * @fn gboolean lttv_apply_op_lt_double(gpointer,LttvFieldValue)
56e29124 846 *
5b729fcf 847 * Applies the 'lower than' operator to the
47aa6e58 848 * specified structure and value
849 * @param v1 left member of comparison
850 * @param v2 right member of comparison
5b729fcf 851 * @return success/failure of operation
852 */
4d9ff942 853gboolean lttv_apply_op_lt_double(const gpointer v1, LttvFieldValue v2) {
83aa92fc 854 double* r = (double*) v1;
9ab5ebd7 855 return (*r < v2.v_double);
83aa92fc 856}
5b729fcf 857
7145a073 858/**
7e7af7f2 859 * @fn gboolean lttv_apply_op_lt_ltttime(gpointer,LttvFieldValue)
7145a073 860 *
861 * Applies the 'lower than' operator to the
862 * specified structure and value
863 * @param v1 left member of comparison
864 * @param v2 right member of comparison
865 * @return success/failure of operation
866 */
4d9ff942 867gboolean lttv_apply_op_lt_ltttime(const gpointer v1, LttvFieldValue v2) {
7145a073 868 LttTime* r = (LttTime*) v1;
c6832b57 869// return ((r->tv_sec < v2.v_ltttime.tv_sec) || ((r->tv_sec == v2.v_ltttime.tv_sec) && (r->tv_nsec < v2.v_ltttime.tv_nsec)));
870 return ltt_time_compare(*r, v2.v_ltttime)==-1?1:0;
7145a073 871}
872
2ec11087 873/**
874 * @fn gboolean lttv_apply_op_le_uint(gpointer,LttvFieldValue)
875 *
876 * Applies the 'lower or equal' operator to the
877 * specified structure and value
878 * @param v1 left member of comparison
879 * @param v2 right member of comparison
880 * @return success/failure of operation
881 */
882gboolean lttv_apply_op_le_uint(const gpointer v1, LttvFieldValue v2) {
883 guint* r = (guint*) v1;
884 return (*r <= v2.v_uint);
885}
7145a073 886
5b729fcf 887/**
7e7af7f2 888 * @fn gboolean lttv_apply_op_le_uint64(gpointer,LttvFieldValue)
56e29124 889 *
890 * Applies the 'lower or equal' operator to the
47aa6e58 891 * specified structure and value
892 * @param v1 left member of comparison
893 * @param v2 right member of comparison
5b729fcf 894 * @return success/failure of operation
895 */
4d9ff942 896gboolean lttv_apply_op_le_uint64(const gpointer v1, LttvFieldValue v2) {
83aa92fc 897 guint64* r = (guint64*) v1;
9ab5ebd7 898 return (*r <= v2.v_uint64);
83aa92fc 899}
150f0d33 900
901/**
7e7af7f2 902 * @fn gboolean lttv_apply_op_le_uint32(gpointer,LttvFieldValue)
56e29124 903 *
150f0d33 904 * Applies the 'lower or equal' operator to the
47aa6e58 905 * specified structure and value
906 * @param v1 left member of comparison
907 * @param v2 right member of comparison
150f0d33 908 * @return success/failure of operation
909 */
4d9ff942 910gboolean lttv_apply_op_le_uint32(const gpointer v1, LttvFieldValue v2) {
83aa92fc 911 guint32* r = (guint32*) v1;
9ab5ebd7 912 return (*r <= v2.v_uint32);
83aa92fc 913}
150f0d33 914
5b729fcf 915/**
7e7af7f2 916 * @fn gboolean lttv_apply_op_le_uint16(gpointer,LttvFieldValue)
56e29124 917 *
5b729fcf 918 * Applies the 'lower or equal' operator to the
47aa6e58 919 * specified structure and value
920 * @param v1 left member of comparison
921 * @param v2 right member of comparison
5b729fcf 922 * @return success/failure of operation
923 */
4d9ff942 924gboolean lttv_apply_op_le_uint16(const gpointer v1, LttvFieldValue v2) {
83aa92fc 925 guint16* r = (guint16*) v1;
9ab5ebd7 926 return (*r <= v2.v_uint16);
83aa92fc 927}
5b729fcf 928
929/**
7e7af7f2 930 * @fn gboolean lttv_apply_op_le_double(gpointer,LttvFieldValue)
56e29124 931 *
5b729fcf 932 * Applies the 'lower or equal' operator to the
47aa6e58 933 * specified structure and value
934 * @param v1 left member of comparison
935 * @param v2 right member of comparison
5b729fcf 936 * @return success/failure of operation
937 */
4d9ff942 938gboolean lttv_apply_op_le_double(const gpointer v1, LttvFieldValue v2) {
83aa92fc 939 double* r = (double*) v1;
9ab5ebd7 940 return (*r <= v2.v_double);
83aa92fc 941}
5b729fcf 942
7145a073 943/**
7e7af7f2 944 * @fn gboolean lttv_apply_op_le_ltttime(gpointer,LttvFieldValue)
7145a073 945 *
946 * Applies the 'lower or equal' operator to the
947 * specified structure and value
948 * @param v1 left member of comparison
949 * @param v2 right member of comparison
950 * @return success/failure of operation
951 */
4d9ff942 952gboolean lttv_apply_op_le_ltttime(const gpointer v1, LttvFieldValue v2) {
7145a073 953 LttTime* r = (LttTime*) v1;
c6832b57 954// return ((r->tv_sec < v2.v_ltttime.tv_sec) || ((r->tv_sec == v2.v_ltttime.tv_sec) && (r->tv_nsec <= v2.v_ltttime.tv_nsec)));
955 return ltt_time_compare(*r, v2.v_ltttime)<1?1:0;
7145a073 956}
957
958
2ec11087 959/**
960 * @fn gboolean lttv_apply_op_gt_uint(gpointer,LttvFieldValue)
961 *
962 * Applies the 'greater than' operator to the
963 * specified structure and value
964 * @param v1 left member of comparison
965 * @param v2 right member of comparison
966 * @return success/failure of operation
967 */
968gboolean lttv_apply_op_gt_uint(const gpointer v1, LttvFieldValue v2) {
969 guint* r = (guint*) v1;
970 return (*r > v2.v_uint);
971}
972
5b729fcf 973/**
7e7af7f2 974 * @fn gboolean lttv_apply_op_gt_uint64(gpointer,LttvFieldValue)
56e29124 975 *
83aa92fc 976 * Applies the 'greater than' operator to the
47aa6e58 977 * specified structure and value
978 * @param v1 left member of comparison
979 * @param v2 right member of comparison
5b729fcf 980 * @return success/failure of operation
981 */
4d9ff942 982gboolean lttv_apply_op_gt_uint64(const gpointer v1, LttvFieldValue v2) {
83aa92fc 983 guint64* r = (guint64*) v1;
9ab5ebd7 984 return (*r > v2.v_uint64);
83aa92fc 985}
150f0d33 986
987/**
7e7af7f2 988 * @fn gboolean lttv_apply_op_gt_uint32(gpointer,LttvFieldValue)
56e29124 989 *
150f0d33 990 * Applies the 'greater than' operator to the
47aa6e58 991 * specified structure and value
992 * @param v1 left member of comparison
993 * @param v2 right member of comparison
150f0d33 994 * @return success/failure of operation
995 */
4d9ff942 996gboolean lttv_apply_op_gt_uint32(const gpointer v1, LttvFieldValue v2) {
83aa92fc 997 guint32* r = (guint32*) v1;
9ab5ebd7 998 return (*r > v2.v_uint32);
83aa92fc 999}
150f0d33 1000
5b729fcf 1001/**
7e7af7f2 1002 * @fn gboolean lttv_apply_op_gt_uint16(gpointer,LttvFieldValue)
56e29124 1003 *
5b729fcf 1004 * Applies the 'greater than' operator to the
47aa6e58 1005 * specified structure and value
1006 * @param v1 left member of comparison
1007 * @param v2 right member of comparison
5b729fcf 1008 * @return success/failure of operation
1009 */
4d9ff942 1010gboolean lttv_apply_op_gt_uint16(const gpointer v1, LttvFieldValue v2) {
83aa92fc 1011 guint16* r = (guint16*) v1;
9ab5ebd7 1012 return (*r > v2.v_uint16);
83aa92fc 1013}
5b729fcf 1014
1015/**
7e7af7f2 1016 * @fn gboolean lttv_apply_op_gt_double(gpointer,LttvFieldValue)
56e29124 1017 *
5b729fcf 1018 * Applies the 'greater than' operator to the
47aa6e58 1019 * specified structure and value
1020 * @param v1 left member of comparison
1021 * @param v2 right member of comparison
5b729fcf 1022 * @return success/failure of operation
1023 */
4d9ff942 1024gboolean lttv_apply_op_gt_double(const gpointer v1, LttvFieldValue v2) {
83aa92fc 1025 double* r = (double*) v1;
9ab5ebd7 1026 return (*r > v2.v_double);
83aa92fc 1027}
5b729fcf 1028
7145a073 1029/**
7e7af7f2 1030 * @fn gboolean lttv_apply_op_gt_ltttime(gpointer,LttvFieldValue)
7145a073 1031 *
1032 * Applies the 'greater than' operator to the
1033 * specified structure and value
1034 * @param v1 left member of comparison
1035 * @param v2 right member of comparison
1036 * @return success/failure of operation
1037 */
4d9ff942 1038gboolean lttv_apply_op_gt_ltttime(const gpointer v1, LttvFieldValue v2) {
7145a073 1039 LttTime* r = (LttTime*) v1;
c6832b57 1040// return ((r->tv_sec > v2.v_ltttime.tv_sec) || ((r->tv_sec == v2.v_ltttime.tv_sec) && (r->tv_nsec > v2.v_ltttime.tv_nsec)));
1041 return ltt_time_compare(*r, v2.v_ltttime)==1?1:0;
7145a073 1042}
1043
2ec11087 1044/**
1045 * @fn gboolean lttv_apply_op_ge_uint(gpointer,LttvFieldValue)
1046 *
1047 * Applies the 'greater or equal' operator to the
1048 * specified structure and value
1049 * @param v1 left member of comparison
1050 * @param v2 right member of comparison
1051 * @return success/failure of operation
1052 */
1053gboolean lttv_apply_op_ge_uint(const gpointer v1, LttvFieldValue v2) {
1054 guint* r = (guint*) v1;
1055 return (*r >= v2.v_uint);
1056}
7145a073 1057
5b729fcf 1058/**
7e7af7f2 1059 * @fn gboolean lttv_apply_op_ge_uint64(gpointer,LttvFieldValue)
56e29124 1060 *
83aa92fc 1061 * Applies the 'greater or equal' operator to the
47aa6e58 1062 * specified structure and value
1063 * @param v1 left member of comparison
1064 * @param v2 right member of comparison
5b729fcf 1065 * @return success/failure of operation
1066 */
4d9ff942 1067gboolean lttv_apply_op_ge_uint64(const gpointer v1, LttvFieldValue v2) {
83aa92fc 1068 guint64* r = (guint64*) v1;
9ab5ebd7 1069 return (*r >= v2.v_uint64);
83aa92fc 1070}
150f0d33 1071
1072/**
7e7af7f2 1073 * @fn gboolean lttv_apply_op_ge_uint32(gpointer,LttvFieldValue)
56e29124 1074 *
150f0d33 1075 * Applies the 'greater or equal' operator to the
47aa6e58 1076 * specified structure and value
1077 * @param v1 left member of comparison
1078 * @param v2 right member of comparison
150f0d33 1079 * @return success/failure of operation
1080 */
4d9ff942 1081gboolean lttv_apply_op_ge_uint32(const gpointer v1, LttvFieldValue v2) {
83aa92fc 1082 guint32* r = (guint32*) v1;
9ab5ebd7 1083 return (*r >= v2.v_uint32);
83aa92fc 1084}
150f0d33 1085
5b729fcf 1086/**
7e7af7f2 1087 * @fn gboolean lttv_apply_op_ge_uint16(gpointer,LttvFieldValue)
56e29124 1088 *
5b729fcf 1089 * Applies the 'greater or equal' operator to the
47aa6e58 1090 * specified structure and value
1091 * @param v1 left member of comparison
1092 * @param v2 right member of comparison
5b729fcf 1093 * @return success/failure of operation
1094 */
4d9ff942 1095gboolean lttv_apply_op_ge_uint16(const gpointer v1, LttvFieldValue v2) {
83aa92fc 1096 guint16* r = (guint16*) v1;
9ab5ebd7 1097 return (*r >= v2.v_uint16);
83aa92fc 1098}
150f0d33 1099
5b729fcf 1100/**
7e7af7f2 1101 * @fn gboolean lttv_apply_op_ge_double(gpointer,LttvFieldValue)
56e29124 1102 *
5b729fcf 1103 * Applies the 'greater or equal' operator to the
47aa6e58 1104 * specified structure and value
1105 * @param v1 left member of comparison
1106 * @param v2 right member of comparison
5b729fcf 1107 * @return success/failure of operation
1108 */
4d9ff942 1109gboolean lttv_apply_op_ge_double(const gpointer v1, LttvFieldValue v2) {
83aa92fc 1110 double* r = (double*) v1;
9ab5ebd7 1111 return (*r >= v2.v_double);
83aa92fc 1112}
150f0d33 1113
7145a073 1114/**
7e7af7f2 1115 * @fn gboolean lttv_apply_op_ge_ltttime(gpointer,LttvFieldValue)
7145a073 1116 *
1117 * Applies the 'greater or equal' operator to the
1118 * specified structure and value
1119 * @param v1 left member of comparison
1120 * @param v2 right member of comparison
1121 * @return success/failure of operation
1122 */
4d9ff942 1123gboolean lttv_apply_op_ge_ltttime(const gpointer v1, LttvFieldValue v2) {
7145a073 1124 LttTime* r = (LttTime*) v1;
c6832b57 1125// return ((r->tv_sec > v2.v_ltttime.tv_sec) || ((r->tv_sec == v2.v_ltttime.tv_sec) && (r->tv_nsec >= v2.v_ltttime.tv_nsec)));
1126 return ltt_time_compare(*r, v2.v_ltttime)>-1?1:0;
7145a073 1127}
1128
1129
150f0d33 1130
1131/**
56e29124 1132 * Makes a copy of the current filter tree
1133 * @param tree pointer to the current tree
1134 * @return new copy of the filter tree
150f0d33 1135 */
1136LttvFilterTree*
4d9ff942 1137lttv_filter_tree_clone(const LttvFilterTree* tree) {
150f0d33 1138
8c89f5a8 1139 LttvFilterTree* newtree = lttv_filter_tree_new();
150f0d33 1140
8c89f5a8 1141 newtree->node = tree->node;
1142
1143 newtree->left = tree->left;
1144 if(newtree->left == LTTV_TREE_NODE) {
1145 newtree->l_child.t = lttv_filter_tree_clone(tree->l_child.t);
1146 } else if(newtree->left == LTTV_TREE_LEAF) {
1147 newtree->l_child.leaf = lttv_simple_expression_new();
1148 newtree->l_child.leaf->field = tree->l_child.leaf->field;
1149 newtree->l_child.leaf->offset = tree->l_child.leaf->offset;
1150 newtree->l_child.leaf->op = tree->l_child.leaf->op;
9ab5ebd7 1151 /* FIXME: special case for string copy ! */
1152 newtree->l_child.leaf->value = tree->l_child.leaf->value;
8c89f5a8 1153 }
1154
1155 newtree->right = tree->right;
1156 if(newtree->right == LTTV_TREE_NODE) {
1157 newtree->r_child.t = lttv_filter_tree_clone(tree->r_child.t);
1158 } else if(newtree->right == LTTV_TREE_LEAF) {
1159 newtree->r_child.leaf = lttv_simple_expression_new();
1160 newtree->r_child.leaf->field = tree->r_child.leaf->field;
1161 newtree->r_child.leaf->offset = tree->r_child.leaf->offset;
1162 newtree->r_child.leaf->op = tree->r_child.leaf->op;
9ab5ebd7 1163 newtree->r_child.leaf->value = tree->r_child.leaf->value;
8c89f5a8 1164 }
1165
1166 return newtree;
1167
150f0d33 1168}
1169
1170/**
56e29124 1171 * Makes a copy of the current filter
1172 * @param filter pointer to the current filter
1173 * @return new copy of the filter
150f0d33 1174 */
1175LttvFilter*
4d9ff942 1176lttv_filter_clone(const LttvFilter* filter) {
ebcead4a 1177
1178 if(!filter) return NULL;
1179
150f0d33 1180 LttvFilter* newfilter = g_new(LttvFilter,1);
1181
150f0d33 1182 strcpy(newfilter->expression,filter->expression);
1183
1184 newfilter->head = lttv_filter_tree_clone(filter->head);
1185
1186 return newfilter;
1187
1188}
1189
1190
84a333d6 1191/**
56e29124 1192 * @fn LttvFilter* lttv_filter_new()
1193 *
7e7af7f2 1194 * Creates a new LttvFilter
1195 * @return the current LttvFilter or NULL if error
31452f49 1196 */
2ea36caf 1197LttvFilter*
5f185a2b 1198lttv_filter_new() {
a4c292d4 1199
5f185a2b 1200 LttvFilter* filter = g_new(LttvFilter,1);
1201 filter->expression = NULL;
1202 filter->head = NULL;
7e7af7f2 1203
1204 return filter;
5f185a2b 1205
1206}
a4c292d4 1207
8c89f5a8 1208/**
56e29124 1209 * @fn gboolean lttv_filter_update(LttvFilter*)
1210 *
8c89f5a8 1211 * Updates the current LttvFilter by building
1212 * its tree based upon the expression string
1213 * @param filter pointer to the current LttvFilter
1214 * @return Failure/Success of operation
1215 */
5f185a2b 1216gboolean
1217lttv_filter_update(LttvFilter* filter) {
1218
4d9ff942 1219// g_print("filter::lttv_filter_new()\n"); /* debug */
5f185a2b 1220
1221 if(filter->expression == NULL) return FALSE;
1222
f3020899 1223 int
a4c292d4 1224 i,
72911c5d 1225 p_nesting=0, /* parenthesis nesting value */
1226 not=0;
1227
1601b365 1228 /* trees */
5b729fcf 1229 LttvFilterTree
1601b365 1230 *tree = lttv_filter_tree_new(), /* main tree */
1231 *subtree = NULL, /* buffer for subtrees */
1232 *t1, /* buffer #1 */
72911c5d 1233 *t2, /* buffer #2 */
1234 *t3; /* buffer #3 */
1601b365 1235
5f185a2b 1236 /*
1237 * the filter
1238 * If the tree already exists,
1239 * destroy it and build a new one
1240 */
1241 if(filter->head != NULL) lttv_filter_tree_destroy(filter->head);
f3020899 1242 filter->head = NULL; /* will be assigned at the end */
5f185a2b 1243
1601b365 1244 /*
1245 * Tree Stack
f4e9dd16 1246 * each element of the list
1247 * is a sub tree created
1248 * by the use of parenthesis in the
1249 * global expression. The final tree
1601b365 1250 * will be the one left at the root of
f4e9dd16 1251 * the list
1252 */
18d1226f 1253 GPtrArray *tree_stack = g_ptr_array_new();
1254 g_ptr_array_add( tree_stack,(gpointer) tree );
f4e9dd16 1255
a4c292d4 1256 /* temporary values */
0769c82f 1257 GString *a_field_component = g_string_new("");
ef2b07c1 1258 GString *a_string_spaces = g_string_new("");
56e29124 1259 GPtrArray *a_field_path = g_ptr_array_new();
1260
1261 /* simple expression buffer */
389ba50e 1262 LttvSimpleExpression* a_simple_expression = lttv_simple_expression_new();
0769c82f 1263
a4c292d4 1264 /*
1265 * Parse entire expression and construct
1266 * the binary tree. There are two steps
1267 * in browsing that string
f4e9dd16 1268 * 1. finding boolean ops " &,|,^,! " and parenthesis " {,(,[,],),} "
a4c292d4 1269 * 2. finding simple expressions
0769c82f 1270 * - field path ( separated by dots )
a4c292d4 1271 * - op ( >, <, =, >=, <=, !=)
0769c82f 1272 * - value ( integer, string ... )
1273 * To spare computing time, the whole
1274 * string is parsed in this loop for a
1275 * O(n) complexity order.
1601b365 1276 *
18d1226f 1277 * When encountering logical op &,|,^
1278 * 1. parse the last value if any
1279 * 2. create a new tree
1280 * 3. add the expression (simple exp, or exp (subtree)) to the tree
1281 * 4. concatenate this tree with the current tree on top of the stack
1282 * When encountering math ops >,>=,<,<=,=,!=
1283 * 1. add to op to the simple expression
1284 * 2. concatenate last field component to field path
1285 * When encountering concatening ops .
1286 * 1. concatenate last field component to field path
1287 * When encountering opening parenthesis (,{,[
1288 * 1. create a new subtree on top of tree stack
1289 * When encountering closing parenthesis ),},]
1290 * 1. add the expression on right child of the current tree
1291 * 2. the subtree is completed, allocate a new subtree
1292 * 3. pop the tree value from the tree stack
1293 */
be66ef34 1294
1295#ifdef TEST
1296 struct timeval starttime;
1297 struct timeval endtime;
1298 gettimeofday(&starttime, NULL);
1299#endif
18d1226f 1300
5f185a2b 1301 for(i=0;i<strlen(filter->expression);i++) {
1302 // debug
72911c5d 1303// g_print("%c\n ",filter->expression[i]);
4d9ff942 1304
5f185a2b 1305 switch(filter->expression[i]) {
a4c292d4 1306 /*
1307 * logical operators
1308 */
1309 case '&': /* and */
72911c5d 1310
1311 /* get current tree in tree stack */
5b729fcf 1312 t1 = (LttvFilterTree*)g_ptr_array_index(tree_stack,tree_stack->len-1);
72911c5d 1313
1314 /* get current node at absolute right */
9ab5ebd7 1315 while(t1->right != LTTV_TREE_IDLE) {
1316 g_assert(t1->right == LTTV_TREE_NODE);
1317 t1 = t1->r_child.t;
1318 }
18d1226f 1319 t2 = lttv_filter_tree_new();
0cdc2470 1320 t2->node = LTTV_LOGICAL_AND;
72911c5d 1321 t1->right = LTTV_TREE_NODE;
1322 t1->r_child.t = t2;
1323 if(not) { /* add not operator to tree */
1324 t3 = lttv_filter_tree_new();
1325 t3->node = LTTV_LOGICAL_NOT;
1326 t2->left = LTTV_TREE_NODE;
1327 t2->l_child.t = t3;
72911c5d 1328 t2 = t3;
1329 not = 0;
72911c5d 1330 }
bb87caa7 1331 if(subtree != NULL) { /* append subtree to current tree */
18d1226f 1332 t2->left = LTTV_TREE_NODE;
1333 t2->l_child.t = subtree;
f4e9dd16 1334 subtree = NULL;
bb87caa7 1335 } else { /* append a simple expression */
9ab5ebd7 1336 lttv_simple_expression_assign_value(a_simple_expression,g_string_free(a_field_component,FALSE));
18d1226f 1337 a_field_component = g_string_new("");
ef2b07c1 1338 g_string_free(a_string_spaces, TRUE);
1339 a_string_spaces = g_string_new("");
18d1226f 1340 t2->left = LTTV_TREE_LEAF;
0cdc2470 1341 t2->l_child.leaf = a_simple_expression;
389ba50e 1342 a_simple_expression = lttv_simple_expression_new();
f4e9dd16 1343 }
f4e9dd16 1344 break;
aa4600f3 1345
a4c292d4 1346 case '|': /* or */
aa4600f3 1347
e00d6a24 1348 t1 = (LttvFilterTree*)g_ptr_array_index(tree_stack,tree_stack->len-1);
9ab5ebd7 1349 while(t1->right != LTTV_TREE_IDLE) {
1350 g_assert(t1->right == LTTV_TREE_NODE);
1351 t1 = t1->r_child.t;
1352 }
1601b365 1353 t2 = lttv_filter_tree_new();
0cdc2470 1354 t2->node = LTTV_LOGICAL_OR;
72911c5d 1355 t1->right = LTTV_TREE_NODE;
1356 t1->r_child.t = t2;
1357 if(not) { // add not operator to tree
1358 t3 = lttv_filter_tree_new();
1359 t3->node = LTTV_LOGICAL_NOT;
1360 t2->left = LTTV_TREE_NODE;
1361 t2->l_child.t = t3;
1362 t2 = t3;
1363 not = 0;
1364 }
1365 if(subtree != NULL) { /* append subtree to current tree */
1601b365 1366 t2->left = LTTV_TREE_NODE;
1367 t2->l_child.t = subtree;
1368 subtree = NULL;
72911c5d 1369 } else { /* append a simple expression */
9ab5ebd7 1370 lttv_simple_expression_assign_value(a_simple_expression,g_string_free(a_field_component,FALSE));
1601b365 1371 a_field_component = g_string_new("");
ef2b07c1 1372 g_string_free(a_string_spaces, TRUE);
1373 a_string_spaces = g_string_new("");
1601b365 1374 t2->left = LTTV_TREE_LEAF;
0cdc2470 1375 t2->l_child.leaf = a_simple_expression;
389ba50e 1376 a_simple_expression = lttv_simple_expression_new();
1601b365 1377 }
f4e9dd16 1378 break;
aa4600f3 1379
a4c292d4 1380 case '^': /* xor */
aa4600f3 1381
e00d6a24 1382 t1 = (LttvFilterTree*)g_ptr_array_index(tree_stack,tree_stack->len-1);
9ab5ebd7 1383 while(t1->right != LTTV_TREE_IDLE) {
1384 g_assert(t1->right == LTTV_TREE_NODE);
1385 t1 = t1->r_child.t;
1386 }
1601b365 1387 t2 = lttv_filter_tree_new();
0cdc2470 1388 t2->node = LTTV_LOGICAL_XOR;
72911c5d 1389 t1->right = LTTV_TREE_NODE;
1390 t1->r_child.t = t2;
1391 if(not) { // add not operator to tree
1392 t3 = lttv_filter_tree_new();
1393 t3->node = LTTV_LOGICAL_NOT;
1394 t2->left = LTTV_TREE_NODE;
1395 t2->l_child.t = t3;
1396 t2 = t3;
1397 not = 0;
1398 }
bb87caa7 1399 if(subtree != NULL) { /* append subtree to current tree */
1601b365 1400 t2->left = LTTV_TREE_NODE;
1401 t2->l_child.t = subtree;
1402 subtree = NULL;
bb87caa7 1403 } else { /* append a simple expression */
9ab5ebd7 1404 lttv_simple_expression_assign_value(a_simple_expression,g_string_free(a_field_component,FALSE));
1601b365 1405 a_field_component = g_string_new("");
ef2b07c1 1406 g_string_free(a_string_spaces, TRUE);
1407 a_string_spaces = g_string_new("");
1601b365 1408 t2->left = LTTV_TREE_LEAF;
0cdc2470 1409 t2->l_child.leaf = a_simple_expression;
389ba50e 1410 a_simple_expression = lttv_simple_expression_new();
1601b365 1411 }
a4c292d4 1412 break;
aa4600f3 1413
a4c292d4 1414 case '!': /* not, or not equal (math op) */
aa4600f3 1415
5f185a2b 1416 if(filter->expression[i+1] == '=') { /* != */
0cdc2470 1417 g_ptr_array_add( a_field_path,(gpointer) a_field_component );
9ab5ebd7 1418 lttv_simple_expression_assign_field(a_field_path,a_simple_expression);
0cdc2470 1419 a_field_component = g_string_new("");
ef2b07c1 1420 g_string_free(a_string_spaces, TRUE);
1421 a_string_spaces = g_string_new("");
56e29124 1422 lttv_simple_expression_assign_operator(a_simple_expression,LTTV_FIELD_NE);
aa4600f3 1423 i++;
a4c292d4 1424 } else { /* ! */
72911c5d 1425 not=1;
a4c292d4 1426 }
1427 break;
aa4600f3 1428
a4c292d4 1429 case '(': /* start of parenthesis */
91ad3f0a 1430 case '[':
1431 case '{':
aa4600f3 1432
91ad3f0a 1433 p_nesting++; /* incrementing parenthesis nesting value */
1601b365 1434 t1 = lttv_filter_tree_new();
72911c5d 1435 if(not) { /* add not operator to tree */
1436 t3 = lttv_filter_tree_new();
1437 t3->node = LTTV_LOGICAL_NOT;
1438 t1->right = LTTV_TREE_NODE;
1439 t1->r_child.t = t3;
1440 not = 0;
1441 }
1601b365 1442 g_ptr_array_add( tree_stack,(gpointer) t1 );
a4c292d4 1443 break;
aa4600f3 1444
a4c292d4 1445 case ')': /* end of parenthesis */
91ad3f0a 1446 case ']':
1447 case '}':
aa4600f3 1448
91ad3f0a 1449 p_nesting--; /* decrementing parenthesis nesting value */
18d1226f 1450 if(p_nesting<0 || tree_stack->len<2) {
f4e9dd16 1451 g_warning("Wrong filtering options, the string\n\"%s\"\n\
5f185a2b 1452 is not valid due to parenthesis incorrect use",filter->expression);
1453 return FALSE;
f4e9dd16 1454 }
56e29124 1455
1456 /* there must at least be the root tree left in the array */
18d1226f 1457 g_assert(tree_stack->len>0);
72911c5d 1458
1459 t1 = g_ptr_array_index(tree_stack,tree_stack->len-1);
1460 while(t1->right != LTTV_TREE_IDLE) {
1461 t1 = t1->r_child.t;
1462 }
1463 if(not) { // add not operator to tree
1464 g_print("ici");
1465 t3 = lttv_filter_tree_new();
1466 t3->node = LTTV_LOGICAL_NOT;
1467 t1->right = LTTV_TREE_NODE;
1468 t1->r_child.t = t3;
1469 t1 = t3;
1470 not = 0;
1471 }
bb87caa7 1472 if(subtree != NULL) { /* append subtree to current tree */
18d1226f 1473 t1->right = LTTV_TREE_NODE;
1474 t1->r_child.t = subtree;
1475 subtree = g_ptr_array_index(tree_stack,tree_stack->len-1);
1476 g_ptr_array_remove_index(tree_stack,tree_stack->len-1);
bb87caa7 1477 } else { /* assign subtree as current tree */
9ab5ebd7 1478 lttv_simple_expression_assign_value(a_simple_expression,g_string_free(a_field_component,FALSE));
18d1226f 1479 a_field_component = g_string_new("");
ef2b07c1 1480 g_string_free(a_string_spaces, TRUE);
1481 a_string_spaces = g_string_new("");
18d1226f 1482 t1->right = LTTV_TREE_LEAF;
0cdc2470 1483 t1->r_child.leaf = a_simple_expression;
389ba50e 1484 a_simple_expression = lttv_simple_expression_new();
9ab5ebd7 1485 subtree = g_ptr_array_remove_index(tree_stack,tree_stack->len-1);
18d1226f 1486 }
a4c292d4 1487 break;
1488
1489 /*
1490 * mathematic operators
1491 */
1492 case '<': /* lower, lower or equal */
aa4600f3 1493
1494 g_ptr_array_add( a_field_path,(gpointer) a_field_component );
9ab5ebd7 1495 lttv_simple_expression_assign_field(a_field_path,a_simple_expression);
aa4600f3 1496 a_field_component = g_string_new("");
ef2b07c1 1497 g_string_free(a_string_spaces, TRUE);
1498 a_string_spaces = g_string_new("");
5f185a2b 1499 if(filter->expression[i+1] == '=') { /* <= */
a4c292d4 1500 i++;
56e29124 1501 lttv_simple_expression_assign_operator(a_simple_expression,LTTV_FIELD_LE);
1502 } else lttv_simple_expression_assign_operator(a_simple_expression,LTTV_FIELD_LT);
aa4600f3 1503 break;
1504
1505 case '>': /* higher, higher or equal */
1506
1507 g_ptr_array_add( a_field_path,(gpointer) a_field_component );
9ab5ebd7 1508 lttv_simple_expression_assign_field(a_field_path,a_simple_expression);
f4e9dd16 1509 a_field_component = g_string_new("");
ef2b07c1 1510 g_string_free(a_string_spaces, TRUE);
1511 a_string_spaces = g_string_new("");
5f185a2b 1512 if(filter->expression[i+1] == '=') { /* >= */
a4c292d4 1513 i++;
56e29124 1514 lttv_simple_expression_assign_operator(a_simple_expression,LTTV_FIELD_GE);
1515 } else lttv_simple_expression_assign_operator(a_simple_expression,LTTV_FIELD_GT);
aa4600f3 1516 break;
1517
a4c292d4 1518 case '=': /* equal */
aa4600f3 1519
f4e9dd16 1520 g_ptr_array_add( a_field_path,(gpointer) a_field_component );
9ab5ebd7 1521 lttv_simple_expression_assign_field(a_field_path,a_simple_expression);
f4e9dd16 1522 a_field_component = g_string_new("");
ef2b07c1 1523 g_string_free(a_string_spaces, TRUE);
1524 a_string_spaces = g_string_new("");
56e29124 1525 lttv_simple_expression_assign_operator(a_simple_expression,LTTV_FIELD_EQ);
a4c292d4 1526 break;
aa4600f3 1527
0769c82f 1528 /*
1529 * Field concatening caracter
1530 */
1531 case '.': /* dot */
aa4600f3 1532
bb87caa7 1533 /*
1534 * divide field expression into elements
1535 * in a_field_path array.
4d9ff942 1536 *
1537 * A dot can also be present in double values
bb87caa7 1538 */
8ff6243c 1539 if(a_simple_expression->field == LTTV_FILTER_UNDEFINED) {
bb87caa7 1540 g_ptr_array_add( a_field_path,(gpointer) a_field_component );
1541 a_field_component = g_string_new("");
ef2b07c1 1542 g_string_free(a_string_spaces, TRUE);
1543 a_string_spaces = g_string_new("");
8ff6243c 1544 }
1545 break;
ef2b07c1 1546 case ' ': /* keep spaces that are within a field component */
1547 if(a_field_component->len == 0) break; /* ignore */
1548 else
1549 a_string_spaces = g_string_append_c(a_string_spaces,
1550 filter->expression[i]);
1551
4d9ff942 1552 case '\n': /* ignore */
0769c82f 1553 break;
a4c292d4 1554 default: /* concatening current string */
ef2b07c1 1555 if(a_string_spaces->len != 0) {
1556 g_string_append(a_field_component, a_string_spaces->str);
1557 a_string_spaces = g_string_set_size(a_string_spaces, 0);
1558 }
1559 a_field_component = g_string_append_c(a_field_component,
1560 filter->expression[i]);
a4c292d4 1561 }
1562 }
1601b365 1563
0cdc2470 1564 /*
1565 * Preliminary check to see
1566 * if tree was constructed correctly
1567 */
1568 if( p_nesting>0 ) {
1569 g_warning("Wrong filtering options, the string\n\"%s\"\n\
5f185a2b 1570 is not valid due to parenthesis incorrect use",filter->expression);
1571 return FALSE;
0cdc2470 1572 }
1573
1574 if(tree_stack->len != 1) /* only root tree should remain */
5f185a2b 1575 return FALSE;
1601b365 1576
72911c5d 1577 /*
1578 * processing last element of expression
1579 */
410c83da 1580 t1 = g_ptr_array_index(tree_stack,tree_stack->len-1);
9ab5ebd7 1581 while(t1->right != LTTV_TREE_IDLE) {
1582 g_assert(t1->right == LTTV_TREE_NODE);
1583 t1 = t1->r_child.t;
1584 }
72911c5d 1585 if(not) { // add not operator to tree
1586 t3 = lttv_filter_tree_new();
1587 t3->node = LTTV_LOGICAL_NOT;
1588 t1->right = LTTV_TREE_NODE;
1589 t1->r_child.t = t3;
1590 t1 = t3;
1591 not = 0;
1592 }
410c83da 1593 if(subtree != NULL) { /* add the subtree */
1594 t1->right = LTTV_TREE_NODE;
0cdc2470 1595 t1->r_child.t = subtree;
410c83da 1596 subtree = NULL;
1597 } else { /* add a leaf */
9ab5ebd7 1598 lttv_simple_expression_assign_value(a_simple_expression,g_string_free(a_field_component,FALSE));
56e29124 1599 a_field_component = NULL;
ef2b07c1 1600 g_string_free(a_string_spaces, TRUE);
1601 a_string_spaces = NULL;
410c83da 1602 t1->right = LTTV_TREE_LEAF;
0cdc2470 1603 t1->r_child.leaf = a_simple_expression;
56e29124 1604 a_simple_expression = NULL;
410c83da 1605 }
1606
56e29124 1607
73050a5f 1608 /* free the pointer array */
1609 g_assert(a_field_path->len == 0);
1610 g_ptr_array_free(a_field_path,TRUE);
56e29124 1611
1612 /* free the tree stack -- but keep the root tree */
f3020899 1613 filter->head = g_ptr_array_remove_index(tree_stack,0);
1614 g_ptr_array_free(tree_stack,TRUE);
1615
56e29124 1616 /* free the field buffer if allocated */
1617 if(a_field_component != NULL) g_string_free(a_field_component,TRUE);
ef2b07c1 1618 if(a_string_spaces != NULL) g_string_free(a_string_spaces, TRUE);
1619
56e29124 1620 /* free the simple expression buffer if allocated */
1621 if(a_simple_expression != NULL) lttv_simple_expression_destroy(a_simple_expression);
73050a5f 1622
f3020899 1623 g_assert(filter->head != NULL); /* tree should exist */
56e29124 1624 g_assert(subtree == NULL); /* remaining subtree should be included in main tree */
be66ef34 1625
1626#ifdef TEST
1627 gettimeofday(&endtime, NULL);
1628
1629 /* Calcul du temps de l'algorithme */
1630 double time1 = starttime.tv_sec + (starttime.tv_usec/1000000.0);
1631 double time2 = endtime.tv_sec + (endtime.tv_usec/1000000.0);
1632// g_print("Tree build took %.10f ms for strlen of %i\n",(time2-time1)*1000,strlen(filter->expression));
1633 g_print("%.10f %i\n",(time2-time1)*1000,strlen(filter->expression));
1634#endif
a4c292d4 1635
56e29124 1636 /* debug */
c2a4581e 1637 g_debug("+++++++++++++++ BEGIN PRINT ++++++++++++++++\n");
72911c5d 1638 lttv_print_tree(filter->head,0) ;
c2a4581e 1639 g_debug("+++++++++++++++ END PRINT ++++++++++++++++++\n");
56e29124 1640
1641 /* success */
5f185a2b 1642 return TRUE;
80f9611a 1643
31452f49 1644}
1645
8c89f5a8 1646/**
56e29124 1647 * @fn void lttv_filter_destroy(LttvFilter*)
1648 *
8c89f5a8 1649 * Destroy the current LttvFilter
1650 * @param filter pointer to the current LttvFilter
1651 */
1da1525d 1652void
2ea36caf 1653lttv_filter_destroy(LttvFilter* filter) {
5f185a2b 1654
ebcead4a 1655 if(!filter) return;
1656
1657 if(filter->expression)
1658 g_free(filter->expression);
1659 if(filter->head)
1660 lttv_filter_tree_destroy(filter->head);
5f185a2b 1661 g_free(filter);
1662
1da1525d 1663}
1664
150f0d33 1665/**
8ff6243c 1666 * @fn LttvFilterTree* lttv_filter_tree_new()
56e29124 1667 *
150f0d33 1668 * Assign a new tree for the current expression
1669 * or sub expression
1670 * @return pointer of LttvFilterTree
1671 */
5f185a2b 1672LttvFilterTree*
1673lttv_filter_tree_new() {
150f0d33 1674 LttvFilterTree* tree;
1675
e00d6a24 1676 tree = g_new(LttvFilterTree,1);
150f0d33 1677 tree->node = 0; //g_new(lttv_expression,1);
150f0d33 1678 tree->left = LTTV_TREE_IDLE;
1679 tree->right = LTTV_TREE_IDLE;
f3020899 1680 tree->r_child.t = NULL;
1681 tree->l_child.t = NULL;
1682
150f0d33 1683 return tree;
1684}
1685
80f9611a 1686/**
56e29124 1687 * @fn void lttv_filter_append_expression(LttvFilter*,char*)
1688 *
80f9611a 1689 * Append a new expression to the expression
1690 * defined in the current filter
1691 * @param filter pointer to the current LttvFilter
1692 * @param expression string that must be appended
56e29124 1693 * @return Success/Failure of operation
80f9611a 1694 */
be66ef34 1695gboolean
1696lttv_filter_append_expression(LttvFilter* filter, const char *expression) {
80f9611a 1697
56e29124 1698 if(expression == NULL) return FALSE;
da2e1bfb 1699 if(filter == NULL) return FALSE;
0bc23ba9 1700 if(expression[0] == '\0') return FALSE; /* Empty expression */
80f9611a 1701
da2e1bfb 1702 GString* s = g_string_new("");
1703 if(filter->expression != NULL) {
1704 g_string_append(s,filter->expression);
1705 g_string_append_c(s,'&');
1706 }
1707 g_string_append(s,expression);
786c5c3b 1708
1709 g_free(filter->expression);
da2e1bfb 1710 filter->expression = g_string_free(s,FALSE);
1711
1712 /* TRUE if construction of tree proceeded without errors */
56e29124 1713 return lttv_filter_update(filter);
80f9611a 1714
1715}
1716
1717/**
56e29124 1718 * @fn void lttv_filter_clear_expression(LttvFilter*)
1719 *
80f9611a 1720 * Clear the filter expression from the
1721 * current filter and sets its pointer to NULL
1722 * @param filter pointer to the current LttvFilter
1723 */
be66ef34 1724void
1725lttv_filter_clear_expression(LttvFilter* filter) {
80f9611a 1726
1727 if(filter->expression != NULL) {
1728 g_free(filter->expression);
1729 filter->expression = NULL;
1730 }
1731
1732}
1733
150f0d33 1734/**
56e29124 1735 * @fn void lttv_filter_tree_destroy(LttvFilterTree*)
1736 *
150f0d33 1737 * Destroys the tree and his sub-trees
1738 * @param tree Tree which must be destroyed
1739 */
5f185a2b 1740void
1741lttv_filter_tree_destroy(LttvFilterTree* tree) {
56e29124 1742
150f0d33 1743 if(tree == NULL) return;
1744
56e29124 1745 if(tree->left == LTTV_TREE_LEAF) lttv_simple_expression_destroy(tree->l_child.leaf);
150f0d33 1746 else if(tree->left == LTTV_TREE_NODE) lttv_filter_tree_destroy(tree->l_child.t);
1747
56e29124 1748 if(tree->right == LTTV_TREE_LEAF) lttv_simple_expression_destroy(tree->r_child.leaf);
150f0d33 1749 else if(tree->right == LTTV_TREE_NODE) lttv_filter_tree_destroy(tree->r_child.t);
1750
e00d6a24 1751// g_free(tree->node);
150f0d33 1752 g_free(tree);
1753}
1754
84a333d6 1755/**
80f9611a 1756 * Global parsing function for the current
1757 * LttvFilterTree
7e7af7f2 1758 * @param t pointer to the current LttvFilterTree
80f9611a 1759 * @param event current LttEvent, NULL if not used
1760 * @param tracefile current LttTracefile, NULL if not used
1761 * @param trace current LttTrace, NULL if not used
1762 * @param state current LttvProcessState, NULL if not used
4d9ff942 1763 * @param context current LttvTracefileContext, NULL if not used
1764 * @return response of filter
84a333d6 1765 */
31452f49 1766gboolean
80f9611a 1767lttv_filter_tree_parse(
4d9ff942 1768 const LttvFilterTree* t,
1769 const LttEvent* event,
1770 const LttTracefile* tracefile,
1771 const LttTrace* trace,
4d9ff942 1772 const LttvTracefileContext* context
80f9611a 1773 /*,...*/)
1774{
0769c82f 1775
80f9611a 1776 /*
1601b365 1777 * Each tree is parsed in inorder.
1778 * This way, it's possible to apply the left filter of the
1779 * tree, then decide whether or not the right branch should
1780 * be parsed depending on the linking logical operator
1781 *
80f9611a 1782 * Each node consists in a
1783 * 1. logical operator
1784 * 2. left child ( node or simple expression )
1785 * 3. right child ( node or simple expression )
1786 *
1787 * When the child is a simple expression, we must
1788 * before all determine if the expression refers to
1789 * a structure which is whithin observation ( not NULL ).
1790 * -If so, the expression is evaluated.
1791 * -If not, the result is set to TRUE since this particular
1792 * operation does not interfere with the lttv structure
1793 *
1794 * The result of each simple expression will directly
1795 * affect the next branch. This way, depending on
1796 * the linking logical operator, the parser will decide
1797 * to explore or not the next branch.
1798 * 1. AND OPERATOR
1799 * -If result of left branch is 0 / FALSE
1800 * then don't explore right branch and return 0;
1801 * -If result of left branch is 1 / TRUE then explore
1802 * 2. OR OPERATOR
1803 * -If result of left branch is 1 / TRUE
1804 * then don't explore right branch and return 1;
1805 * -If result of left branch is 0 / FALSE then explore
1806 * 3. XOR OPERATOR
56e29124 1807 * -Result of left branch will not affect exploration of
80f9611a 1808 * right branch
1601b365 1809 */
73050a5f 1810
80f9611a 1811 gboolean lresult = FALSE, rresult = FALSE;
33e44b82 1812
1813 LttvProcessState* state;
1814
6e0d58d6 1815 guint cpu = ltt_tracefile_num(context->tf);
1816 LttvTraceState *ts = (LttvTraceState*)context->t_context;
1817 state = ts->running_process[cpu];
0769c82f 1818
80f9611a 1819 /*
1820 * Parse left branch
1821 */
4d9ff942 1822 if(t->left == LTTV_TREE_NODE) {
33e44b82 1823 lresult = lttv_filter_tree_parse(t->l_child.t,event,tracefile,trace,context);
4d9ff942 1824 }
5b729fcf 1825 else if(t->left == LTTV_TREE_LEAF) {
4d9ff942 1826 lresult = lttv_filter_tree_parse_branch(t->l_child.leaf,event,tracefile,trace,state,context);
0cdc2470 1827 }
4d9ff942 1828
80f9611a 1829 /*
1830 * Parse linking operator
1831 * make a cutoff if possible
1832 */
1833 if((t->node & LTTV_LOGICAL_OR) && lresult == TRUE) return TRUE;
1834 if((t->node & LTTV_LOGICAL_AND) && lresult == FALSE) return FALSE;
1835
1836 /*
1837 * Parse right branch
1838 */
4d9ff942 1839 if(t->right == LTTV_TREE_NODE) {
33e44b82 1840 rresult = lttv_filter_tree_parse(t->r_child.t,event,tracefile,trace,context);
4d9ff942 1841 }
5b729fcf 1842 else if(t->right == LTTV_TREE_LEAF) {
4d9ff942 1843 rresult = lttv_filter_tree_parse_branch(t->r_child.leaf,event,tracefile,trace,state,context);
1844 }
2bdb97c5 1845
2bdb97c5 1846
4d9ff942 1847 /*
1848 * Apply and return the
1849 * logical link between the
1850 * two operation
1851 */
1852 switch(t->node) {
1853 case LTTV_LOGICAL_OR: return (lresult | rresult);
1854 case LTTV_LOGICAL_AND: return (lresult & rresult);
72911c5d 1855 case LTTV_LOGICAL_NOT:
1856 return (t->left==LTTV_TREE_LEAF)?!lresult:((t->right==LTTV_TREE_LEAF)?!rresult:TRUE);
4d9ff942 1857 case LTTV_LOGICAL_XOR: return (lresult ^ rresult);
1858 case 0: return (rresult);
1859 default:
1860 /*
1861 * This case should never be
1862 * parsed, if so, this subtree
1863 * is cancelled !
1864 */
1865 return TRUE;
1866 }
1867
1868}
1869
1870/**
4d9ff942 1871 * This function parses a particular branch of the tree
7e7af7f2 1872 * @param se pointer to the current LttvSimpleExpression
4d9ff942 1873 * @param event current LttEvent, NULL if not used
1874 * @param tracefile current LttTracefile, NULL if not used
1875 * @param trace current LttTrace, NULL if not used
1876 * @param state current LttvProcessState, NULL if not used
1877 * @param context current LttvTracefileContext, NULL if not used
1878 * @return response of filter
1879 */
be66ef34 1880gboolean
1881lttv_filter_tree_parse_branch(
4d9ff942 1882 const LttvSimpleExpression* se,
1883 const LttEvent* event,
1884 const LttTracefile* tracefile,
1885 const LttTrace* trace,
1886 const LttvProcessState* state,
1887 const LttvTracefileContext* context) {
1888
9ab5ebd7 1889 LttvFieldValue v;
4d9ff942 1890 v = se->value;
1891 switch(se->field) {
80f9611a 1892 case LTTV_FILTER_TRACE_NAME:
4d9ff942 1893 if(trace == NULL) return TRUE;
c6832b57 1894 else {
eed2ef37 1895 GQuark quark = ltt_trace_name(trace);
c6832b57 1896 return se->op((gpointer)&quark,v);
1897 }
80f9611a 1898 break;
1899 case LTTV_FILTER_TRACEFILE_NAME:
4d9ff942 1900 if(tracefile == NULL) return TRUE;
c6832b57 1901 else {
eed2ef37 1902 GQuark quark = ltt_tracefile_name(tracefile);
c6832b57 1903 return se->op((gpointer)&quark,v);
1904 }
80f9611a 1905 break;
1906 case LTTV_FILTER_STATE_PID:
4d9ff942 1907 if(state == NULL) return TRUE;
1908 else return se->op((gpointer)&state->pid,v);
80f9611a 1909 break;
1910 case LTTV_FILTER_STATE_PPID:
4d9ff942 1911 if(state == NULL) return TRUE;
1912 else return se->op((gpointer)&state->ppid,v);
80f9611a 1913 break;
1914 case LTTV_FILTER_STATE_CT:
4d9ff942 1915 if(state == NULL) return TRUE;
80f9611a 1916 else {
4d9ff942 1917 return se->op((gpointer)&state->creation_time,v);
80f9611a 1918 }
1919 break;
1920 case LTTV_FILTER_STATE_IT:
4d9ff942 1921 if(state == NULL) return TRUE;
80f9611a 1922 else {
4d9ff942 1923 return se->op((gpointer)&state->insertion_time,v);
80f9611a 1924 }
1925 break;
1926 case LTTV_FILTER_STATE_P_NAME:
1927 /*
4d9ff942 1928 * All 'unnamed' for the moment
80f9611a 1929 */
4d9ff942 1930 if(state == NULL) return TRUE;
46c40a93 1931 else {
bbd9d557 1932 GQuark quark = state->name;
c6832b57 1933 return se->op((gpointer)&quark,v);
46c40a93 1934 }
80f9611a 1935 break;
1936 case LTTV_FILTER_STATE_EX_MODE:
4d9ff942 1937 if(state == NULL) return TRUE;
1938 else return se->op((gpointer)&state->state->t,v);
80f9611a 1939 break;
1940 case LTTV_FILTER_STATE_EX_SUBMODE:
4d9ff942 1941 if(state == NULL) return TRUE;
1942 else return se->op((gpointer)&state->state->n,v);
80f9611a 1943 break;
1944 case LTTV_FILTER_STATE_P_STATUS:
4d9ff942 1945 if(state == NULL) return TRUE;
1946 else return se->op((gpointer)&state->state->s,v);
80f9611a 1947 break;
1948 case LTTV_FILTER_STATE_CPU:
4d9ff942 1949 if(context == NULL) return TRUE;
46c40a93 1950 else {
348c6ba8 1951 /* FIXME: not sure of that one Mathieu : fixed.*/
1952 // GQuark quark = ((LttvTracefileState*)context)->cpu_name;
1953 // return se->op((gpointer)&quark,v);
1954 if(state == NULL) return TRUE;
1955 else return se->op((gpointer)&state->cpu,v);
46c40a93 1956 }
80f9611a 1957 break;
1958 case LTTV_FILTER_EVENT_NAME:
4d9ff942 1959 if(event == NULL) return TRUE;
1960 else {
46c40a93 1961 LttEventType* et;
1962 et = ltt_event_eventtype(event);
eed2ef37 1963 GQuark quark = ltt_eventtype_name(et);
c6832b57 1964 return se->op((gpointer)&quark,v);
4d9ff942 1965 }
1966 break;
ffd088ef 1967 case LTTV_FILTER_EVENT_FACILITY:
1968 if(event == NULL) return TRUE;
1969 else {
1970 LttFacility* fac;
1971 fac = ltt_event_facility(event);
1972 GQuark quark = ltt_facility_name(fac);
1973 return se->op((gpointer)&quark,v);
1974 }
1975 break;
80f9611a 1976 case LTTV_FILTER_EVENT_CATEGORY:
1977 /*
c6832b57 1978 * TODO: Not yet implemented
80f9611a 1979 */
4d9ff942 1980 return TRUE;
80f9611a 1981 break;
1982 case LTTV_FILTER_EVENT_TIME:
4d9ff942 1983 if(event == NULL) return TRUE;
46c40a93 1984 else {
1985 LttTime time = ltt_event_time(event);
4d9ff942 1986 return se->op((gpointer)&time,v);
46c40a93 1987 }
80f9611a 1988 break;
1989 case LTTV_FILTER_EVENT_TSC:
bbd9d557 1990 if(event == NULL) return TRUE;
1991 else {
1992 LttCycleCount count = ltt_event_cycle_count(event);
1993 return se->op((gpointer)&count,v);
1994 }
80f9611a 1995 break;
1996 case LTTV_FILTER_EVENT_FIELD:
1997 /*
1998 * TODO: Use the offset to
1999 * find the dynamic field
2000 * in the event struct
2001 */
4d9ff942 2002 return TRUE;
80f9611a 2003 default:
2004 /*
2005 * This case should never be
4d9ff942 2006 * parsed, if so, the whole
2007 * filtering is cancelled
80f9611a 2008 */
2009 g_warning("Error while parsing the filter tree");
2010 return TRUE;
2011 }
4d9ff942 2012
2013 /* should never get here */
2014 return TRUE;
2015
80f9611a 2016}
0769c82f 2017
4d9ff942 2018
2019
80f9611a 2020/**
7e7af7f2 2021 * Debug function. Prints tree memory allocation.
56e29124 2022 * @param t the pointer to the current LttvFilterTree
80f9611a 2023 */
2024void
72911c5d 2025lttv_print_tree(const LttvFilterTree* t, const int count) {
0769c82f 2026
c2a4581e 2027 g_debug("node:%p lchild:%p rchild:%p depth:%i\n",t, //t->l_child.t,t->r_child.t);
80f9611a 2028 (t->left==LTTV_TREE_NODE)?t->l_child.t:NULL,
72911c5d 2029 (t->right==LTTV_TREE_NODE)?t->r_child.t:NULL,
2030 count);
c2a4581e 2031 g_debug("logic operator: %s\n",(t->node&1)?"OR":((t->node&2)?"AND":((t->node&4)?"NOT":((t->node&8)?"XOR":"IDLE"))));
2032 g_debug("|-> left branch %p is a %s\n",t->l_child.t,(t->left==LTTV_TREE_NODE)?"NODE":((t->left==LTTV_TREE_LEAF)?"LEAF":"IDLE"));
72911c5d 2033 if(t->left == LTTV_TREE_LEAF) {
c2a4581e 2034 g_debug("| |-> field type number: %i\n",t->l_child.leaf->field);
2035 g_debug("| |-> offset is: %i\n",t->l_child.leaf->offset);
2036 g_debug("| |-> operator function is: %p\n",t->l_child.leaf->op);
0769c82f 2037 }
c2a4581e 2038 g_debug("|-> right branch %p is a %s\n",t->r_child.t,(t->right==LTTV_TREE_NODE)?"NODE":((t->right==LTTV_TREE_LEAF)?"LEAF":"IDLE"));
72911c5d 2039 if(t->right == LTTV_TREE_LEAF) {
c2a4581e 2040 g_debug("| |-> field type number: %i\n",t->r_child.leaf->field);
2041 g_debug("| |-> offset is: %i\n",t->r_child.leaf->offset);
2042 g_debug("| |-> operator function is: %p\n",t->r_child.leaf->op);
80f9611a 2043 }
72911c5d 2044
2045 if(t->left == LTTV_TREE_NODE) lttv_print_tree(t->l_child.t,count+1);
2046 if(t->right == LTTV_TREE_NODE) lttv_print_tree(t->r_child.t,count+1);
80f9611a 2047}
2048
91ad3f0a 2049/**
56e29124 2050 * @fn static void module_init()
2051 *
91ad3f0a 2052 * Initializes the filter module and specific values
2053 */
1a7fa682 2054static void module_init()
2055{
91ad3f0a 2056
1a7fa682 2057}
2058
91ad3f0a 2059/**
7e7af7f2 2060 * Destroys the filter module and specific values
91ad3f0a 2061 */
1a7fa682 2062static void module_destroy()
2063{
56e29124 2064
1a7fa682 2065}
2066
2067
91ad3f0a 2068LTTV_MODULE("filter", "Filters traceset and events", \
2069 "Filters traceset and events specifically to user input", \
1a7fa682 2070 module_init, module_destroy)
2071
2072
2073
This page took 0.149578 seconds and 4 git commands to generate.