Continued the gui filter module
[lttv.git] / ltt / branches / poly / lttv / lttv / filter.c
1 /* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2005 Michel Dagenais
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
19 /*
20 consist in AND, OR and NOT nested expressions, forming a tree with
21 simple relations as leaves. The simple relations test is a field
22 in an event is equal, not equal, smaller, smaller or equal, larger, or
23 larger or equal to a specified value.
24 */
25
26 /*
27 * YET TO BE ANSWERED
28 * - the exists an other lttv_filter which conflicts with this one
29 */
30
31 /*
32 * TODO
33 * - refine switch of expression in multiple uses functions
34 * - divide expression structure
35 * - a simple expression -> leaf
36 * - a logical operator -> node
37 * - add the current simple expression to the tree
38 */
39
40 #include <lttv/filter.h>
41
42 /*
43 read_token
44
45 read_expression
46 ( read expr )
47 simple expr [ op expr ]
48
49 read_simple_expression
50 read_field_path [ rel value ]
51
52 read_field_path
53 read_field_component [. field path]
54
55 read_field_component
56 name [ \[ value \] ]
57
58 data struct:
59 and/or(left/right)
60 not(child)
61 op(left/right)
62 path(component...) -> field
63 */
64
65 GQuark
66 LTTV_FILTER_TRACE,
67 LTTV_FILTER_TRACESET,
68 LTTV_FILTER_TRACEFILE,
69 LTTV_FILTER_STATE,
70 LTTV_FILTER_EVENT,
71 LTTV_FILTER_NAME,
72 LTTV_FILTER_CATEGORY,
73 LTTV_FILTER_TIME,
74 LTTV_FILTER_TSC,
75 LTTV_FILTER_PID,
76 LTTV_FILTER_PPID,
77 LTTV_FILTER_C_TIME,
78 LTTV_FILTER_I_TIME,
79 LTTV_FILTER_P_NAME,
80 LTTV_FILTER_EX_MODE,
81 LTTV_FILTER_EX_SUBMODE,
82 LTTV_FILTER_P_STATUS,
83 LTTV_FILTER_CPU;
84
85 /**
86 * Assign a new tree for the current expression
87 * or sub expression
88 * @return pointer of lttv_filter_tree
89 */
90 lttv_filter_tree* lttv_filter_tree_new() {
91 lttv_filter_tree* tree;
92
93 tree = g_new(lttv_filter_tree,1);
94 tree->node = g_new(lttv_expression,1);
95 tree->node->type = LTTV_UNDEFINED_EXPRESSION;
96 tree->left = LTTV_TREE_UNDEFINED;
97 tree->right = LTTV_TREE_UNDEFINED;
98
99 return tree;
100 }
101
102 /**
103 * Destroys the tree and his sub-trees
104 * @param tree Tree which must be destroyed
105 */
106 void lttv_filter_tree_destroy(lttv_filter_tree* tree) {
107
108 if(tree->left == LTTV_TREE_LEAF) g_free(tree->l_child.leaf);
109 else if(tree->left == LTTV_TREE_NODE) lttv_filter_tree_destroy(tree->l_child.t);
110
111 if(tree->right == LTTV_TREE_LEAF) g_free(tree->r_child.leaf);
112 else if(tree->right == LTTV_TREE_NODE) lttv_filter_tree_destroy(tree->r_child.t);
113
114 g_free(tree->node);
115 g_free(tree);
116 }
117
118 /**
119 * Parse through filtering field hierarchy as specified
120 * by user. This function compares each value to
121 * predetermined quarks
122 * @param fp The field path list
123 * @return success/failure of operation
124 */
125 gboolean
126 parse_field_path(GPtrArray* fp) {
127
128 GString* f = NULL;
129 if(fp->len < 2) return FALSE;
130 g_assert(f=g_ptr_array_index(fp,0)); //list_first(fp)->data;
131
132 if(g_quark_try_string(f->str) == LTTV_FILTER_EVENT) {
133 f=g_ptr_array_index(fp,1);
134 if(g_quark_try_string(f->str) == LTTV_FILTER_NAME) {}
135 else if(g_quark_try_string(f->str) == LTTV_FILTER_CATEGORY) {}
136 else if(g_quark_try_string(f->str) == LTTV_FILTER_TIME) {
137 // offset = &((LttEvent*)NULL)->event_time);
138 }
139 else if(g_quark_try_string(f->str) == LTTV_FILTER_TSC) {
140 // offset = &((LttEvent*)NULL)->event_cycle_count);
141 }
142 else { /* core.xml specified options */
143
144 }
145 } else if(g_quark_try_string(f->str) == LTTV_FILTER_TRACEFILE) {
146 f=g_ptr_array_index(fp,1);
147 if(g_quark_try_string(f->str) == LTTV_FILTER_NAME) {}
148 else return FALSE;
149 } else if(g_quark_try_string(f->str) == LTTV_FILTER_TRACE) {
150 f=g_ptr_array_index(fp,1);
151 if(g_quark_try_string(f->str) == LTTV_FILTER_NAME) {}
152 else return FALSE;
153
154 } else if(g_quark_try_string(f->str) == LTTV_FILTER_STATE) {
155 f=g_ptr_array_index(fp,1);
156 if(g_quark_try_string(f->str) == LTTV_FILTER_PID) {}
157 else if(g_quark_try_string(f->str) == LTTV_FILTER_PPID) {}
158 else if(g_quark_try_string(f->str) == LTTV_FILTER_C_TIME) {}
159 else if(g_quark_try_string(f->str) == LTTV_FILTER_I_TIME) {}
160 else if(g_quark_try_string(f->str) == LTTV_FILTER_P_NAME) {}
161 else if(g_quark_try_string(f->str) == LTTV_FILTER_EX_MODE) {}
162 else if(g_quark_try_string(f->str) == LTTV_FILTER_EX_SUBMODE) {}
163 else if(g_quark_try_string(f->str) == LTTV_FILTER_P_STATUS) {}
164 else if(g_quark_try_string(f->str) == LTTV_FILTER_CPU) {}
165 else return FALSE;
166
167 } else {
168 g_warning("Unrecognized field in filter string");
169 return FALSE;
170 }
171 return TRUE;
172 }
173
174 /**
175 * Add an filtering option to the current tree
176 * @param expression Current expression to parse
177 * @return success/failure of operation
178 */
179 gboolean
180 parse_simple_expression(GString* expression) {
181
182 unsigned i;
183
184
185
186
187 }
188
189 /**
190 * Creates a new lttv_filter
191 * @param expression filtering options string
192 * @param t pointer to the current LttvTrace
193 * @return the current lttv_filter or NULL if error
194 */
195 lttv_filter_tree*
196 lttv_filter_new(char *expression, LttvTraceState *tcs) {
197
198 g_print("filter::lttv_filter_new()\n"); /* debug */
199
200 unsigned
201 i,
202 p_nesting=0, /* parenthesis nesting value */
203 b=0; /* current breakpoint in expression string */
204
205 /* trees */
206 lttv_filter_tree
207 *tree = lttv_filter_tree_new(), /* main tree */
208 *subtree = NULL, /* buffer for subtrees */
209 *t1, /* buffer #1 */
210 *t2; /* buffer #2 */
211
212 /*
213 * Tree Stack
214 * each element of the list
215 * is a sub tree created
216 * by the use of parenthesis in the
217 * global expression. The final tree
218 * will be the one left at the root of
219 * the list
220 */
221 GPtrArray *tree_stack = g_ptr_array_new();
222 g_ptr_array_add( tree_stack,(gpointer) tree );
223
224 /* temporary values */
225 GString *a_field_component = g_string_new("");
226 GPtrArray *a_field_path = NULL;
227
228 lttv_simple_expression a_simple_expression;
229
230 /*
231 * Parse entire expression and construct
232 * the binary tree. There are two steps
233 * in browsing that string
234 * 1. finding boolean ops " &,|,^,! " and parenthesis " {,(,[,],),} "
235 * 2. finding simple expressions
236 * - field path ( separated by dots )
237 * - op ( >, <, =, >=, <=, !=)
238 * - value ( integer, string ... )
239 * To spare computing time, the whole
240 * string is parsed in this loop for a
241 * O(n) complexity order.
242 *
243 * When encountering logical op &,|,^
244 * 1. parse the last value if any
245 * 2. create a new tree
246 * 3. add the expression (simple exp, or exp (subtree)) to the tree
247 * 4. concatenate this tree with the current tree on top of the stack
248 * When encountering math ops >,>=,<,<=,=,!=
249 * 1. add to op to the simple expression
250 * 2. concatenate last field component to field path
251 * When encountering concatening ops .
252 * 1. concatenate last field component to field path
253 * When encountering opening parenthesis (,{,[
254 * 1. create a new subtree on top of tree stack
255 * When encountering closing parenthesis ),},]
256 * 1. add the expression on right child of the current tree
257 * 2. the subtree is completed, allocate a new subtree
258 * 3. pop the tree value from the tree stack
259 */
260
261 a_field_path = g_ptr_array_new();
262 g_ptr_array_set_size(a_field_path,2); /* by default, recording 2 field expressions */
263
264
265 for(i=0;i<strlen(expression);i++) {
266 // g_print("%s\n",a_field_component->str);
267 g_print("%c ",expression[i]);
268 // g_print("switch:%c -->subtree:%p\n",expression[i],subtree);
269 switch(expression[i]) {
270 /*
271 * logical operators
272 */
273 case '&': /* and */
274 t1 = (lttv_filter_tree*)g_ptr_array_index(tree_stack,tree_stack->len-1);
275 while(t1->right != LTTV_TREE_UNDEFINED) t1 = t1->r_child.t;
276 t2 = lttv_filter_tree_new();
277 t2->node->type = LTTV_EXPRESSION_OP;
278 t2->node->e.op = LTTV_LOGICAL_AND;
279 if(subtree != NULL) {
280 t2->left = LTTV_TREE_NODE;
281 t2->l_child.t = subtree;
282 subtree = NULL;
283 t1->right = LTTV_TREE_NODE;
284 t1->r_child.t = t2;
285 } else {
286 a_simple_expression.value = a_field_component->str;
287 a_field_component = g_string_new("");
288 t2->left = LTTV_TREE_LEAF;
289 t2->l_child.leaf = g_new(lttv_simple_expression,1);
290 t1->right = LTTV_TREE_NODE;
291 t1->r_child.t = t2;
292 }
293
294 break;
295 case '|': /* or */
296 t1 = (lttv_filter_tree*)g_ptr_array_index(tree_stack,tree_stack->len-1);
297 while(t1->right != LTTV_TREE_UNDEFINED) t1 = t1->r_child.t;
298 t2 = lttv_filter_tree_new();
299 t2->node->type = LTTV_EXPRESSION_OP;
300 t2->node->e.op = LTTV_LOGICAL_OR;
301 if(subtree != NULL) {
302 t2->left = LTTV_TREE_NODE;
303 t2->l_child.t = subtree;
304 subtree = NULL;
305 t1->right = LTTV_TREE_NODE;
306 t1->r_child.t = t2;
307 } else {
308 a_simple_expression.value = a_field_component->str;
309 a_field_component = g_string_new("");
310 t2->left = LTTV_TREE_LEAF;
311 t2->l_child.leaf = g_new(lttv_simple_expression,1);
312 t1->right = LTTV_TREE_NODE;
313 t1->r_child.t = t2;
314 }
315 break;
316 case '^': /* xor */
317 t1 = (lttv_filter_tree*)g_ptr_array_index(tree_stack,tree_stack->len-1);
318 while(t1->right != LTTV_TREE_UNDEFINED) t1 = t1->r_child.t;
319 t2 = lttv_filter_tree_new();
320 t2->node->type = LTTV_EXPRESSION_OP;
321 t2->node->e.op = LTTV_LOGICAL_XOR;
322 if(subtree != NULL) {
323 t2->left = LTTV_TREE_NODE;
324 t2->l_child.t = subtree;
325 subtree = NULL;
326 t1->right = LTTV_TREE_NODE;
327 t1->r_child.t = t2;
328 } else {
329 a_simple_expression.value = a_field_component->str;
330 a_field_component = g_string_new("");
331 t2->left = LTTV_TREE_LEAF;
332 t2->l_child.leaf = g_new(lttv_simple_expression,1);
333 t1->right = LTTV_TREE_NODE;
334 t1->r_child.t = t2;
335 }
336 break;
337 case '!': /* not, or not equal (math op) */
338 if(expression[i+1] == '=') { /* != */
339 a_simple_expression.op = LTTV_FIELD_NE;
340 i++;
341 } else { /* ! */
342 // g_print("%s\n",a_field_component);
343 // a_field_component = g_string_new("");
344 t1 = (lttv_filter_tree*)g_ptr_array_index(tree_stack,tree_stack->len-1);
345 while(t1->right != LTTV_TREE_UNDEFINED) t1 = t1->r_child.t;
346 t2 = lttv_filter_tree_new();
347 t2->node->type = LTTV_EXPRESSION_OP;
348 t2->node->e.op = LTTV_LOGICAL_NOT;
349 t1->right = LTTV_TREE_NODE;
350 t1->r_child.t = t2;
351 }
352 break;
353 case '(': /* start of parenthesis */
354 case '[':
355 case '{':
356 p_nesting++; /* incrementing parenthesis nesting value */
357 t1 = lttv_filter_tree_new();
358 g_ptr_array_add( tree_stack,(gpointer) t1 );
359 break;
360 case ')': /* end of parenthesis */
361 case ']':
362 case '}':
363 p_nesting--; /* decrementing parenthesis nesting value */
364 if(p_nesting<0 || tree_stack->len<2) {
365 g_warning("Wrong filtering options, the string\n\"%s\"\n\
366 is not valid due to parenthesis incorrect use",expression);
367 return NULL;
368 }
369
370 g_assert(tree_stack->len>0);
371 if(subtree != NULL) {
372 t1 = g_ptr_array_index(tree_stack,tree_stack->len-1);
373 while(t1->right != LTTV_TREE_UNDEFINED && t1->right != LTTV_TREE_LEAF) {
374 g_assert(t1!=NULL && t1->r_child.t != NULL);
375 t1 = t1->r_child.t;
376 }
377 t1->right = LTTV_TREE_NODE;
378 t1->r_child.t = subtree;
379 subtree = g_ptr_array_index(tree_stack,tree_stack->len-1);
380 g_ptr_array_remove_index(tree_stack,tree_stack->len-1);
381 } else {
382 a_simple_expression.value = a_field_component->str;
383 a_field_component = g_string_new("");
384 t1 = g_ptr_array_index(tree_stack,tree_stack->len-1);
385 while(t1->right != LTTV_TREE_UNDEFINED) t1 = t1->r_child.t;
386 t1->right = LTTV_TREE_LEAF;
387 t1->r_child.leaf = g_new(lttv_simple_expression,1);
388 subtree = g_ptr_array_index(tree_stack,tree_stack->len-1);
389 g_assert(subtree != NULL);
390 g_ptr_array_remove_index(tree_stack,tree_stack->len-1);
391 }
392 break;
393
394 /*
395 * mathematic operators
396 */
397 case '<': /* lower, lower or equal */
398 if(expression[i+1] == '=') { /* <= */
399 i++;
400 a_simple_expression.op = LTTV_FIELD_LE;
401 } else a_simple_expression.op = LTTV_FIELD_LT;
402 g_ptr_array_add( a_field_path,(gpointer) a_field_component );
403 a_field_component = g_string_new("");
404 break;
405 case '>': /* higher, higher or equal */
406 if(expression[i+1] == '=') { /* >= */
407 i++;
408 a_simple_expression.op = LTTV_FIELD_GE;
409 } else a_simple_expression.op = LTTV_FIELD_GT;
410 g_ptr_array_add( a_field_path,(gpointer) a_field_component );
411 a_field_component = g_string_new("");
412 break;
413 case '=': /* equal */
414 a_simple_expression.op = LTTV_FIELD_EQ;
415 g_ptr_array_add( a_field_path,(gpointer) a_field_component );
416 a_field_component = g_string_new("");
417 break;
418 /*
419 * Field concatening caracter
420 */
421 case '.': /* dot */
422 g_ptr_array_add( a_field_path,(gpointer) a_field_component );
423 a_field_component = g_string_new("");
424 break;
425 default: /* concatening current string */
426 g_string_append_c(a_field_component,expression[i]);
427 }
428 }
429
430 g_print("subtree:%p, tree:%p, t1:%p, t2:%p\n",subtree,tree,t1,t2);
431
432 /* processing last element of expression */
433 g_assert(tree_stack->len==1); /* only root tree should remain */
434 t1 = g_ptr_array_index(tree_stack,tree_stack->len-1);
435 while(t1->right != LTTV_TREE_UNDEFINED) t1 = t1->r_child.t;
436 if(subtree != NULL) { /* add the subtree */
437 t1->right = LTTV_TREE_NODE;
438 t1->l_child.t = subtree;
439 subtree = NULL;
440 } else { /* add a leaf */
441 a_simple_expression.value = a_field_component->str;
442 a_field_component = g_string_new("");
443 t1->right = LTTV_TREE_LEAF;
444 t1->r_child.leaf = g_new(lttv_simple_expression,1);
445 }
446
447 g_assert(tree != NULL);
448 g_assert(subtree == NULL);
449
450 if( p_nesting>0 ) {
451 g_warning("Wrong filtering options, the string\n\"%s\"\n\
452 is not valid due to parenthesis incorrect use",expression);
453 return NULL;
454 }
455
456 lttv_filter_tracefile(tree,NULL);
457
458 return tree;
459
460 }
461
462 /**
463 * Apply the filter to a specific trace
464 * @param filter the current filter applied
465 * @param tracefile the trace to apply the filter to
466 * @return success/failure of operation
467 */
468 gboolean
469 lttv_filter_tracefile(lttv_filter_tree *filter, LttTracefile *tracefile) {
470
471 /*
472 * Each tree is parsed in inorder.
473 * This way, it's possible to apply the left filter of the
474 * tree, then decide whether or not the right branch should
475 * be parsed depending on the linking logical operator
476 *
477 * As for the filtering structure, since we are trying
478 * to remove elements from the trace, it might be better
479 * managing an array of all items to be removed ..
480 */
481
482 g_print("node:%p lchild:%p rchild:%p\n",filter,filter->l_child.t,filter->r_child.t);
483 if(filter->node->type == LTTV_EXPRESSION_OP) {
484 g_print("node type%i\n",filter->node->e.op);
485 }
486 if(filter->left == LTTV_TREE_NODE) lttv_filter_tracefile(filter->l_child.t,NULL);
487 else g_print("%p: left is %i\n",filter,filter->left);
488 if(filter->right == LTTV_TREE_NODE) lttv_filter_tracefile(filter->r_child.t,NULL);
489 else g_print("%p: right is %i\n",filter,filter->right);
490
491 /* test */
492 /* int i, nb;
493 char *f_name, *e_name;
494
495 char* field = "cpu";
496
497 LttvTraceHook h;
498
499 LttEventType *et;
500
501 LttType *t;
502
503 GString *fe_name = g_string_new("");
504
505 nb = ltt_trace_eventtype_number(tcs->parent.t);
506 g_print("NB:%i\n",nb);
507 for(i = 0 ; i < nb ; i++) {
508 et = ltt_trace_eventtype_get(tcs->parent.t, i);
509 e_name = ltt_eventtype_name(et);
510 f_name = ltt_facility_name(ltt_eventtype_facility(et));
511 g_string_printf(fe_name, "%s.%s", f_name, e_name);
512 g_print("facility:%s and event:%s\n",f_name,e_name);
513 }
514 */
515 }
516
517 gboolean
518 lttv_filter_tracestate(lttv_filter_t *filter, LttvTraceState *tracestate) {
519
520 }
521
522 /**
523 * Apply the filter to a specific event
524 * @param filter the current filter applied
525 * @param event the event to apply the filter to
526 * @return success/failure of operation
527 */
528 gboolean
529 lttv_filter_event(lttv_filter_t *filter, LttEvent *event) {
530
531 }
532
533 /**
534 * Initializes the filter module and specific values
535 */
536 static void module_init()
537 {
538
539 /*
540 * Quarks initialization
541 * for hardcoded filtering options
542 *
543 * TODO: traceset has no yet been defined
544 */
545
546 /* top fields */
547 LTTV_FILTER_EVENT = g_quark_from_string("event");
548 LTTV_FILTER_TRACE = g_quark_from_string("trace");
549 LTTV_FILTER_TRACESET = g_quark_from_string("traceset");
550 LTTV_FILTER_STATE = g_quark_from_string("state");
551 LTTV_FILTER_TRACEFILE = g_quark_from_string("tracefile");
552
553 /* event.name, tracefile.name, trace.name */
554 LTTV_FILTER_NAME = g_quark_from_string("name");
555
556 /* event sub fields */
557 LTTV_FILTER_CATEGORY = g_quark_from_string("category");
558 LTTV_FILTER_TIME = g_quark_from_string("time");
559 LTTV_FILTER_TSC = g_quark_from_string("tsc");
560
561 /* state sub fields */
562 LTTV_FILTER_PID = g_quark_from_string("pid");
563 LTTV_FILTER_PPID = g_quark_from_string("ppid");
564 LTTV_FILTER_C_TIME = g_quark_from_string("creation_time");
565 LTTV_FILTER_I_TIME = g_quark_from_string("insertion_time");
566 LTTV_FILTER_P_NAME = g_quark_from_string("process_name");
567 LTTV_FILTER_EX_MODE = g_quark_from_string("execution_mode");
568 LTTV_FILTER_EX_SUBMODE = g_quark_from_string("execution_submode");
569 LTTV_FILTER_P_STATUS = g_quark_from_string("process_status");
570 LTTV_FILTER_CPU = g_quark_from_string("cpu");
571
572 }
573
574 /**
575 * Destroys the filter module and specific values
576 */
577 static void module_destroy()
578 {
579 }
580
581
582 LTTV_MODULE("filter", "Filters traceset and events", \
583 "Filters traceset and events specifically to user input", \
584 module_init, module_destroy)
585
586
587
This page took 0.042375 seconds and 4 git commands to generate.