filter core:
[lttv.git] / ltt / branches / poly / lttv / lttv / filter.c
CommitLineData
9c312311 1/* This file is part of the Linux Trace Toolkit viewer
0769c82f 2 * Copyright (C) 2003-2005 Michel Dagenais
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
31452f49 19/*
a4c292d4 20 read_token
48f6f3c2 21
a4c292d4 22 read_expression
23 ( read expr )
24 simple expr [ op expr ]
48f6f3c2 25
a4c292d4 26 read_simple_expression
27 read_field_path [ rel value ]
48f6f3c2 28
a4c292d4 29 read_field_path
30 read_field_component [. field path]
48f6f3c2 31
a4c292d4 32 read_field_component
33 name [ \[ value \] ]
48f6f3c2 34
a4c292d4 35 data struct:
36 and/or(left/right)
37 not(child)
38 op(left/right)
39 path(component...) -> field
150f0d33 40
41 consist in AND, OR and NOT nested expressions, forming a tree with
42 simple relations as leaves. The simple relations test is a field
43 in an event is equal, not equal, smaller, smaller or equal, larger, or
44 larger or equal to a specified value.
31452f49 45*/
46
150f0d33 47/*
48 * YET TO BE ANSWERED
49 * - none yet
50 */
51
52/*
53 * TODO
54 * - refine switch of expression in multiple uses functions
55 * - remove the idle expressions in the tree ****
56 * - add the current simple expression to the tree
389ba50e 57 * * clear the field_path array after use
150f0d33 58 */
59
60#include <lttv/filter.h>
61
62/*
1a7fa682 63GQuark
64 LTTV_FILTER_TRACE,
65 LTTV_FILTER_TRACESET,
66 LTTV_FILTER_TRACEFILE,
67 LTTV_FILTER_STATE,
91ad3f0a 68 LTTV_FILTER_EVENT,
69 LTTV_FILTER_NAME,
70 LTTV_FILTER_CATEGORY,
71 LTTV_FILTER_TIME,
72 LTTV_FILTER_TSC,
73 LTTV_FILTER_PID,
74 LTTV_FILTER_PPID,
75 LTTV_FILTER_C_TIME,
76 LTTV_FILTER_I_TIME,
77 LTTV_FILTER_P_NAME,
78 LTTV_FILTER_EX_MODE,
79 LTTV_FILTER_EX_SUBMODE,
80 LTTV_FILTER_P_STATUS,
81 LTTV_FILTER_CPU;
150f0d33 82*/
0cdc2470 83
389ba50e 84/**
85 * Constructor for LttvSimpleExpression
86 * @return pointer to new LttvSimpleExpression
87 */
2ea36caf 88LttvSimpleExpression*
0cdc2470 89lttv_simple_expression_new() {
90
389ba50e 91 LttvSimpleExpression* se = g_new(LttvSimpleExpression,1);
92
93 se->field = LTTV_FILTER_UNDEFINED;
bb87caa7 94 se->op = NULL;
389ba50e 95 se->offset = 0;
96 se->value = NULL;
97
98 return se;
0cdc2470 99}
f4e9dd16 100/**
150f0d33 101 * add a node to the current tree
bb87caa7 102 * FIXME: Might be used to lower coding in lttv_filter_new switch expression
150f0d33 103 * @param stack the tree stack
104 * @param subtree the subtree if available (pointer or NULL)
105 * @param op the logical operator that will form the node
f4e9dd16 106 */
0cdc2470 107void
5b729fcf 108lttv_filter_tree_add_node(GPtrArray* stack, LttvFilterTree* subtree, LttvLogicalOp op) {
0cdc2470 109
5b729fcf 110 LttvFilterTree* t1 = NULL;
111 LttvFilterTree* t2 = NULL;
0cdc2470 112
5b729fcf 113 t1 = (LttvFilterTree*)g_ptr_array_index(stack,stack->len-1);
0cdc2470 114 while(t1->right != LTTV_TREE_IDLE) t1 = t1->r_child.t;
115 t2 = lttv_filter_tree_new();
116 t2->node = op;
117 if(subtree != NULL) {
118 t2->left = LTTV_TREE_NODE;
119 t2->l_child.t = subtree;
120 subtree = NULL;
121 t1->right = LTTV_TREE_NODE;
122 t1->r_child.t = t2;
123 } else {
124// a_simple_expression->value = a_field_component->str;
125// a_field_component = g_string_new("");
126 t2->left = LTTV_TREE_LEAF;
127// t2->l_child.leaf = a_simple_expression;
128// a_simple_expression = g_new(lttv_simple_expression,1);
129 t1->right = LTTV_TREE_NODE;
130 t1->r_child.t = t2;
131 }
132
133}
134
0769c82f 135/**
136 * Parse through filtering field hierarchy as specified
137 * by user. This function compares each value to
138 * predetermined quarks
139 * @param fp The field path list
bb87caa7 140 * @param se current simple expression
0769c82f 141 * @return success/failure of operation
142 */
143gboolean
47aa6e58 144parse_field_path(GPtrArray* fp, LttvSimpleExpression* se) {
0769c82f 145
f4e9dd16 146 GString* f = NULL;
2b99ec10 147 if(fp->len < 2) return FALSE;
f4e9dd16 148 g_assert(f=g_ptr_array_index(fp,0)); //list_first(fp)->data;
47aa6e58 149
150 /*
151 * Parse through the specified
152 * hardcoded fields.
153 *
154 * Take note however that the
155 * 'event' subfields might change
156 * depending on values specified
157 * in core.xml file. Hence, if
158 * none of the subfields in the
159 * array match the hardcoded
160 * subfields, it will be considered
161 * as a dynamic field
162 */
163 if(g_strcasecmp(f->str,"trace") ) {
164 /*
165 * Possible values:
166 * trace.name
167 */
168 f=g_ptr_array_index(fp,1);
389ba50e 169 if(g_strcasecmp(f->str,"name")) {
170 se->field = LTTV_FILTER_TRACE_NAME;
171 }
47aa6e58 172 else return FALSE;
173 } else if(g_strcasecmp(f->str,"traceset") ) {
174 /*
175 * FIXME: not yet implemented !
176 */
177 } else if(g_strcasecmp(f->str,"tracefile") ) {
178 /*
179 * Possible values:
180 * tracefile.name
181 */
182 f=g_ptr_array_index(fp,1);
389ba50e 183 if(g_strcasecmp(f->str,"name")) {
184 se->field = LTTV_FILTER_TRACEFILE_NAME;
185 }
47aa6e58 186 else return FALSE;
187 } else if(g_strcasecmp(f->str,"state") ) {
188 /*
189 * Possible values:
190 * state.pid
191 * state.ppid
192 * state.creation_time
193 * state.insertion_time
194 * state.process_name
195 * state.execution_mode
196 * state.execution_submode
197 * state.process_status
198 * state.cpu
199 */
200 f=g_ptr_array_index(fp,1);
389ba50e 201 if(g_strcasecmp(f->str,"pid") ) {
202 se->field = LTTV_FILTER_STATE_PID;
203 }
204 else if(g_strcasecmp(f->str,"ppid") ) {
205 se->field = LTTV_FILTER_STATE_PPID;
206 }
207 else if(g_strcasecmp(f->str,"creation_time") ) {
208 se->field = LTTV_FILTER_STATE_CT;
209 }
210 else if(g_strcasecmp(f->str,"insertion_time") ) {
211 se->field = LTTV_FILTER_STATE_IT;
212 }
213 else if(g_strcasecmp(f->str,"process_name") ) {
214 se->field = LTTV_FILTER_STATE_P_NAME;
215 }
216 else if(g_strcasecmp(f->str,"execution_mode") ) {
217 se->field = LTTV_FILTER_STATE_EX_MODE;
218 }
219 else if(g_strcasecmp(f->str,"execution_submode") ) {
220 se->field = LTTV_FILTER_STATE_EX_SUBMODE;
221 }
222 else if(g_strcasecmp(f->str,"process_status") ) {
223 se->field = LTTV_FILTER_STATE_P_STATUS;
224 }
225 else if(g_strcasecmp(f->str,"cpu") ) {
226 se->field = LTTV_FILTER_STATE_CPU;
227 }
47aa6e58 228 else return FALSE;
229 } else if(g_strcasecmp(f->str,"event") ) {
389ba50e 230 /*
231 * Possible values:
232 * event.name
233 * event.category
234 * event.time
235 * event.tsc
236 */
2b99ec10 237 f=g_ptr_array_index(fp,1);
389ba50e 238 if(g_strcasecmp(f->str,"name") ) {
239 se->field = LTTV_FILTER_EVENT_NAME;
240 }
241 else if(g_strcasecmp(f->str,"category") ) {
242 /*
243 * FIXME: Category not yet functional in lttv
244 */
245 se->field = LTTV_FILTER_EVENT_CATEGORY;
246 }
47aa6e58 247 else if(g_strcasecmp(f->str,"time") ) {
389ba50e 248 se->field = LTTV_FILTER_EVENT_TIME;
2b99ec10 249 // offset = &((LttEvent*)NULL)->event_time);
250 }
47aa6e58 251 else if(g_strcasecmp(f->str,"tsc") ) {
389ba50e 252 se->field = LTTV_FILTER_EVENT_TSC;
2b99ec10 253 // offset = &((LttEvent*)NULL)->event_cycle_count);
254 }
255 else { /* core.xml specified options */
389ba50e 256 se->field = LTTV_FILTER_EVENT_FIELD;
257 //se->offset = (...);
2b99ec10 258 }
91ad3f0a 259 } else {
260 g_warning("Unrecognized field in filter string");
261 return FALSE;
0769c82f 262 }
47aa6e58 263
bb87caa7 264 /* free the pointer array */
265 g_ptr_array_free(fp,FALSE);
266
91ad3f0a 267 return TRUE;
0769c82f 268}
269
bb87caa7 270/**
271 * Sets the function pointer for the current
272 * Simple Expression
273 * @param se current simple expression
274 * @return success/failure of operation
275 */
276gboolean assign_operator(LttvSimpleExpression* se, LttvExpressionOp op) {
277
278 switch(se->field) {
279 /* char */
280 case LTTV_FILTER_TRACE_NAME:
281 case LTTV_FILTER_TRACEFILE_NAME:
282 case LTTV_FILTER_STATE_P_NAME:
283 case LTTV_FILTER_EVENT_NAME:
284 switch(op) {
285 case LTTV_FIELD_EQ:
286 se->op = lttv_apply_op_eq_string;
287 break;
288 case LTTV_FIELD_NE:
289 se->op = lttv_apply_op_eq_string;
290 break;
291 default:
292 g_warning("Error encountered in operator assignment");
293 return FALSE;
294 }
295 break;
296 case LTTV_FILTER_STATE_PID:
297 case LTTV_FILTER_STATE_PPID:
298 case LTTV_FILTER_STATE_EX_MODE:
299 case LTTV_FILTER_STATE_EX_SUBMODE:
300 case LTTV_FILTER_STATE_P_STATUS:
301 switch(op) {
302 case LTTV_FIELD_EQ:
303 se->op = lttv_apply_op_eq_uint64;
304 break;
305 case LTTV_FIELD_NE:
306 se->op = lttv_apply_op_ne_uint64;
307 break;
308 case LTTV_FIELD_LT:
309 se->op = lttv_apply_op_lt_uint64;
310 break;
311 case LTTV_FIELD_LE:
312 se->op = lttv_apply_op_le_uint64;
313 break;
314 case LTTV_FIELD_GT:
315 se->op = lttv_apply_op_gt_uint64;
316 break;
317 case LTTV_FIELD_GE:
318 se->op = lttv_apply_op_ge_uint64;
319 break;
320 default:
321 g_warning("Error encountered in operator assignment");
322 return FALSE;
323 }
324 break;
325 case LTTV_FILTER_STATE_CT:
326 case LTTV_FILTER_STATE_IT:
327 case LTTV_FILTER_EVENT_TIME:
328 case LTTV_FILTER_EVENT_TSC:
329 switch(op) {
330 case LTTV_FIELD_EQ:
331 se->op = lttv_apply_op_eq_double;
332 break;
333 case LTTV_FIELD_NE:
334 se->op = lttv_apply_op_ne_double;
335 break;
336 case LTTV_FIELD_LT:
337 se->op = lttv_apply_op_lt_double;
338 break;
339 case LTTV_FIELD_LE:
340 se->op = lttv_apply_op_le_double;
341 break;
342 case LTTV_FIELD_GT:
343 se->op = lttv_apply_op_gt_double;
344 break;
345 case LTTV_FIELD_GE:
346 se->op = lttv_apply_op_ge_double;
347 break;
348 default:
349 g_warning("Error encountered in operator assignment");
350 return FALSE;
351 }
352 break;
353 default:
354 g_warning("Error encountered in operator assignment");
355 return FALSE;
356 }
357
358}
359
31452f49 360/**
84a333d6 361 * Add an filtering option to the current tree
362 * @param expression Current expression to parse
363 * @return success/failure of operation
364 */
365gboolean
366parse_simple_expression(GString* expression) {
367
368 unsigned i;
369
a4c292d4 370
0769c82f 371
a4c292d4 372
5f185a2b 373}
374
375/**
376 * Append a new expression to the expression
377 * defined in the current filter
378 * @param filter pointer to the current LttvFilter
379 * @param expression string that must be appended
380 */
381void lttv_filter_append_expression(LttvFilter* filter, char *expression) {
382
383 if(expression == NULL) return;
384 if(filter == NULL) {
385 filter = lttv_filter_new();
386 filter->expression = expression;
387 } else if(filter->expression == NULL) {
388 filter->expression = expression;
389 } else {
390 filter->expression = g_strconcat(filter->expression,"&",expression);
391 }
392
393 lttv_filter_update(filter);
394
395}
396
397void lttv_filter_clear_expression(LttvFilter* filter) {
398
399 if(filter->expression != NULL) {
400 g_free(filter->expression);
401 filter->expression = NULL;
402 }
403
84a333d6 404}
405
150f0d33 406/**
407 * Applies the 'equal' operator to the
47aa6e58 408 * specified structure and value
409 * @param v1 left member of comparison
410 * @param v2 right member of comparison
150f0d33 411 * @return success/failure of operation
412 */
83aa92fc 413gboolean lttv_apply_op_eq_uint64(gpointer v1, char* v2) {
414
415 guint64* r = (guint64*) v1;
416 guint64 l = atoi(v2);
417 return (*r == l);
418
419}
150f0d33 420
5b729fcf 421/**
422 * Applies the 'equal' operator to the
47aa6e58 423 * specified structure and value
424 * @param v1 left member of comparison
425 * @param v2 right member of comparison
5b729fcf 426 * @return success/failure of operation
427 */
83aa92fc 428gboolean lttv_apply_op_eq_uint32(gpointer v1, char* v2) {
429 guint32* r = (guint32*) v1;
430 guint32 l = atoi(v2);
431 return (*r == l);
432}
5b729fcf 433
434/**
435 * Applies the 'equal' operator to the
47aa6e58 436 * specified structure and value
437 * @param v1 left member of comparison
438 * @param v2 right member of comparison
5b729fcf 439 * @return success/failure of operation
440 */
83aa92fc 441gboolean lttv_apply_op_eq_uint16(gpointer v1, char* v2) {
442 guint16* r = (guint16*) v1;
443 guint16 l = atoi(v2);
444 return (*r == l);
445}
5b729fcf 446
447/**
448 * Applies the 'equal' operator to the
47aa6e58 449 * specified structure and value
450 * @param v1 left member of comparison
451 * @param v2 right member of comparison
5b729fcf 452 * @return success/failure of operation
453 */
83aa92fc 454gboolean lttv_apply_op_eq_double(gpointer v1, char* v2) {
455 double* r = (double*) v1;
456 double l = atof(v2);
457 return (*r == l);
458}
5b729fcf 459
460/**
461 * Applies the 'equal' operator to the
47aa6e58 462 * specified structure and value
463 * @param v1 left member of comparison
464 * @param v2 right member of comparison
5b729fcf 465 * @return success/failure of operation
466 */
83aa92fc 467gboolean lttv_apply_op_eq_string(gpointer v1, char* v2) {
468 char* r = (char*) v1;
469 return (g_strcasecmp(r,v2));
470}
150f0d33 471
472/**
473 * Applies the 'not equal' operator to the
47aa6e58 474 * specified structure and value
475 * @param v1 left member of comparison
476 * @param v2 right member of comparison
150f0d33 477 * @return success/failure of operation
478 */
83aa92fc 479gboolean lttv_apply_op_ne_uint64(gpointer v1, char* v2) {
480 guint64* r = (guint64*) v1;
481 guint64 l = atoi(v2);
482 return (*r != l);
483}
150f0d33 484
5b729fcf 485/**
486 * Applies the 'not equal' operator to the
47aa6e58 487 * specified structure and value
488 * @param v1 left member of comparison
489 * @param v2 right member of comparison
5b729fcf 490 * @return success/failure of operation
491 */
83aa92fc 492gboolean lttv_apply_op_ne_uint32(gpointer v1, char* v2) {
493 guint32* r = (guint32*) v1;
494 guint32 l = atoi(v2);
495 return (*r != l);
496}
5b729fcf 497
498/**
499 * Applies the 'not equal' operator to the
47aa6e58 500 * specified structure and value
501 * @param v1 left member of comparison
502 * @param v2 right member of comparison
5b729fcf 503 * @return success/failure of operation
504 */
83aa92fc 505gboolean lttv_apply_op_ne_uint16(gpointer v1, char* v2) {
506 guint16* r = (guint16*) v1;
507 guint16 l = atoi(v2);
508 return (*r != l);
509}
5b729fcf 510
511/**
512 * Applies the 'not equal' operator to the
47aa6e58 513 * specified structure and value
514 * @param v1 left member of comparison
515 * @param v2 right member of comparison
5b729fcf 516 * @return success/failure of operation
517 */
83aa92fc 518gboolean lttv_apply_op_ne_double(gpointer v1, char* v2) {
519 double* r = (double*) v1;
520 double l = atof(v2);
521 return (*r != l);
522}
5b729fcf 523
524/**
525 * Applies the 'not equal' operator to the
47aa6e58 526 * specified structure and value
527 * @param v1 left member of comparison
528 * @param v2 right member of comparison
5b729fcf 529 * @return success/failure of operation
530 */
83aa92fc 531gboolean lttv_apply_op_ne_string(gpointer v1, char* v2) {
532 char* r = (char*) v1;
533 return (!g_strcasecmp(r,v2));
534}
150f0d33 535
536/**
537 * Applies the 'lower than' operator to the
47aa6e58 538 * specified structure and value
539 * @param v1 left member of comparison
540 * @param v2 right member of comparison
150f0d33 541 * @return success/failure of operation
542 */
83aa92fc 543gboolean lttv_apply_op_lt_uint64(gpointer v1, char* v2) {
544 guint64* r = (guint64*) v1;
545 guint64 l = atoi(v2);
546 return (*r < l);
547}
150f0d33 548
5b729fcf 549/**
550 * Applies the 'lower than' operator to the
47aa6e58 551 * specified structure and value
552 * @param v1 left member of comparison
553 * @param v2 right member of comparison
5b729fcf 554 * @return success/failure of operation
555 */
83aa92fc 556gboolean lttv_apply_op_lt_uint32(gpointer v1, char* v2) {
557 guint32* r = (guint32*) v1;
558 guint32 l = atoi(v2);
559 return (*r < l);
560}
5b729fcf 561
562/**
563 * Applies the 'lower than' operator to the
47aa6e58 564 * specified structure and value
565 * @param v1 left member of comparison
566 * @param v2 right member of comparison
5b729fcf 567 * @return success/failure of operation
568 */
83aa92fc 569gboolean lttv_apply_op_lt_uint16(gpointer v1, char* v2) {
570 guint16* r = (guint16*) v1;
571 guint16 l = atoi(v2);
572 return (*r < l);
573}
5b729fcf 574
575/**
576 * Applies the 'lower than' operator to the
47aa6e58 577 * specified structure and value
578 * @param v1 left member of comparison
579 * @param v2 right member of comparison
5b729fcf 580 * @return success/failure of operation
581 */
83aa92fc 582gboolean lttv_apply_op_lt_double(gpointer v1, char* v2) {
583 double* r = (double*) v1;
584 double l = atof(v2);
585 return (*r < l);
586}
5b729fcf 587
588/**
589 * Applies the 'lower than' operator to the
47aa6e58 590 * specified structure and value
591 * @param v1 left member of comparison
592 * @param v2 right member of comparison
5b729fcf 593 * @return success/failure of operation
594 */
83aa92fc 595gboolean lttv_apply_op_le_uint64(gpointer v1, char* v2) {
596 guint64* r = (guint64*) v1;
597 guint64 l = atoi(v2);
598 return (*r <= l);
599}
150f0d33 600
601/**
602 * Applies the 'lower or equal' operator to the
47aa6e58 603 * specified structure and value
604 * @param v1 left member of comparison
605 * @param v2 right member of comparison
150f0d33 606 * @return success/failure of operation
607 */
83aa92fc 608gboolean lttv_apply_op_le_uint32(gpointer v1, char* v2) {
609 guint32* r = (guint32*) v1;
610 guint32 l = atoi(v2);
611 return (*r <= l);
612}
150f0d33 613
5b729fcf 614/**
615 * Applies the 'lower or equal' operator to the
47aa6e58 616 * specified structure and value
617 * @param v1 left member of comparison
618 * @param v2 right member of comparison
5b729fcf 619 * @return success/failure of operation
620 */
83aa92fc 621gboolean lttv_apply_op_le_uint16(gpointer v1, char* v2) {
622 guint16* r = (guint16*) v1;
623 guint16 l = atoi(v2);
624 return (*r <= l);
625}
5b729fcf 626
627/**
628 * Applies the 'lower or equal' operator to the
47aa6e58 629 * specified structure and value
630 * @param v1 left member of comparison
631 * @param v2 right member of comparison
5b729fcf 632 * @return success/failure of operation
633 */
83aa92fc 634gboolean lttv_apply_op_le_double(gpointer v1, char* v2) {
635 double* r = (double*) v1;
636 double l = atof(v2);
637 return (*r <= l);
638}
5b729fcf 639
640/**
83aa92fc 641 * Applies the 'greater than' operator to the
47aa6e58 642 * specified structure and value
643 * @param v1 left member of comparison
644 * @param v2 right member of comparison
5b729fcf 645 * @return success/failure of operation
646 */
83aa92fc 647gboolean lttv_apply_op_gt_uint64(gpointer v1, char* v2) {
648 guint64* r = (guint64*) v1;
649 guint64 l = atoi(v2);
650 return (*r > l);
651}
150f0d33 652
653/**
654 * Applies the 'greater than' operator to the
47aa6e58 655 * specified structure and value
656 * @param v1 left member of comparison
657 * @param v2 right member of comparison
150f0d33 658 * @return success/failure of operation
659 */
83aa92fc 660gboolean lttv_apply_op_gt_uint32(gpointer v1, char* v2) {
661 guint32* r = (guint32*) v1;
662 guint32 l = atoi(v2);
663 return (*r > l);
664}
150f0d33 665
5b729fcf 666/**
667 * Applies the 'greater than' operator to the
47aa6e58 668 * specified structure and value
669 * @param v1 left member of comparison
670 * @param v2 right member of comparison
5b729fcf 671 * @return success/failure of operation
672 */
83aa92fc 673gboolean lttv_apply_op_gt_uint16(gpointer v1, char* v2) {
674 guint16* r = (guint16*) v1;
675 guint16 l = atoi(v2);
676 return (*r > l);
677}
5b729fcf 678
679/**
680 * Applies the 'greater than' operator to the
47aa6e58 681 * specified structure and value
682 * @param v1 left member of comparison
683 * @param v2 right member of comparison
5b729fcf 684 * @return success/failure of operation
685 */
83aa92fc 686gboolean lttv_apply_op_gt_double(gpointer v1, char* v2) {
687 double* r = (double*) v1;
688 double l = atof(v2);
689 return (*r > l);
690}
5b729fcf 691
692/**
83aa92fc 693 * Applies the 'greater or equal' operator to the
47aa6e58 694 * specified structure and value
695 * @param v1 left member of comparison
696 * @param v2 right member of comparison
5b729fcf 697 * @return success/failure of operation
698 */
83aa92fc 699gboolean lttv_apply_op_ge_uint64(gpointer v1, char* v2) {
700 guint64* r = (guint64*) v1;
701 guint64 l = atoi(v2);
702 return (*r >= l);
703}
150f0d33 704
705/**
706 * Applies the 'greater or equal' operator to the
47aa6e58 707 * specified structure and value
708 * @param v1 left member of comparison
709 * @param v2 right member of comparison
150f0d33 710 * @return success/failure of operation
711 */
83aa92fc 712gboolean lttv_apply_op_ge_uint32(gpointer v1, char* v2) {
713 guint32* r = (guint32*) v1;
714 guint32 l = atoi(v2);
715 return (*r >= l);
716}
150f0d33 717
5b729fcf 718/**
719 * Applies the 'greater or equal' operator to the
47aa6e58 720 * specified structure and value
721 * @param v1 left member of comparison
722 * @param v2 right member of comparison
5b729fcf 723 * @return success/failure of operation
724 */
83aa92fc 725gboolean lttv_apply_op_ge_uint16(gpointer v1, char* v2) {
726 guint16* r = (guint16*) v1;
727 guint16 l = atoi(v2);
728 return (*r >= l);
729}
150f0d33 730
5b729fcf 731/**
732 * Applies the 'greater or equal' operator to the
47aa6e58 733 * specified structure and value
734 * @param v1 left member of comparison
735 * @param v2 right member of comparison
5b729fcf 736 * @return success/failure of operation
737 */
83aa92fc 738gboolean lttv_apply_op_ge_double(gpointer v1, char* v2) {
739 double* r = (double*) v1;
740 double l = atof(v2);
741 return (*r >= l);
742}
150f0d33 743
744
745/**
746 * Makes a copy of the current filter tree
747 * @param tree pointer to the current tree
748 * @return new copy of the filter tree
749 */
750LttvFilterTree*
751lttv_filter_tree_clone(LttvFilterTree* tree) {
752
753
754
755}
756
757/**
758 * Makes a copy of the current filter
759 * @param filter pointer to the current filter
760 * @return new copy of the filter
761 */
762LttvFilter*
763lttv_filter_clone(LttvFilter* filter) {
764
765
766 LttvFilter* newfilter = g_new(LttvFilter,1);
767
768 // newfilter->expression = g_new(char,1)
769 strcpy(newfilter->expression,filter->expression);
770
771 newfilter->head = lttv_filter_tree_clone(filter->head);
772
773 return newfilter;
774
775}
776
777
84a333d6 778/**
779 * Creates a new lttv_filter
31452f49 780 * @param expression filtering options string
781 * @param t pointer to the current LttvTrace
84a333d6 782 * @return the current lttv_filter or NULL if error
31452f49 783 */
2ea36caf 784LttvFilter*
5f185a2b 785lttv_filter_new() {
a4c292d4 786
5f185a2b 787 LttvFilter* filter = g_new(LttvFilter,1);
788 filter->expression = NULL;
789 filter->head = NULL;
790
791}
a4c292d4 792
5f185a2b 793gboolean
794lttv_filter_update(LttvFilter* filter) {
795
796 g_print("filter::lttv_filter_new()\n"); /* debug */
797
798 if(filter->expression == NULL) return FALSE;
799
a4c292d4 800 unsigned
801 i,
91ad3f0a 802 p_nesting=0, /* parenthesis nesting value */
a4c292d4 803 b=0; /* current breakpoint in expression string */
1601b365 804
805 /* trees */
5b729fcf 806 LttvFilterTree
1601b365 807 *tree = lttv_filter_tree_new(), /* main tree */
808 *subtree = NULL, /* buffer for subtrees */
809 *t1, /* buffer #1 */
810 *t2; /* buffer #2 */
811
5f185a2b 812 /*
813 * the filter
814 * If the tree already exists,
815 * destroy it and build a new one
816 */
817 if(filter->head != NULL) lttv_filter_tree_destroy(filter->head);
818 filter->head = tree;
819
1601b365 820 /*
821 * Tree Stack
f4e9dd16 822 * each element of the list
823 * is a sub tree created
824 * by the use of parenthesis in the
825 * global expression. The final tree
1601b365 826 * will be the one left at the root of
f4e9dd16 827 * the list
828 */
18d1226f 829 GPtrArray *tree_stack = g_ptr_array_new();
830 g_ptr_array_add( tree_stack,(gpointer) tree );
f4e9dd16 831
a4c292d4 832 /* temporary values */
0769c82f 833 GString *a_field_component = g_string_new("");
f4e9dd16 834 GPtrArray *a_field_path = NULL;
835
389ba50e 836 LttvSimpleExpression* a_simple_expression = lttv_simple_expression_new();
0769c82f 837
a4c292d4 838 /*
839 * Parse entire expression and construct
840 * the binary tree. There are two steps
841 * in browsing that string
f4e9dd16 842 * 1. finding boolean ops " &,|,^,! " and parenthesis " {,(,[,],),} "
a4c292d4 843 * 2. finding simple expressions
0769c82f 844 * - field path ( separated by dots )
a4c292d4 845 * - op ( >, <, =, >=, <=, !=)
0769c82f 846 * - value ( integer, string ... )
847 * To spare computing time, the whole
848 * string is parsed in this loop for a
849 * O(n) complexity order.
1601b365 850 *
18d1226f 851 * When encountering logical op &,|,^
852 * 1. parse the last value if any
853 * 2. create a new tree
854 * 3. add the expression (simple exp, or exp (subtree)) to the tree
855 * 4. concatenate this tree with the current tree on top of the stack
856 * When encountering math ops >,>=,<,<=,=,!=
857 * 1. add to op to the simple expression
858 * 2. concatenate last field component to field path
859 * When encountering concatening ops .
860 * 1. concatenate last field component to field path
861 * When encountering opening parenthesis (,{,[
862 * 1. create a new subtree on top of tree stack
863 * When encountering closing parenthesis ),},]
864 * 1. add the expression on right child of the current tree
865 * 2. the subtree is completed, allocate a new subtree
866 * 3. pop the tree value from the tree stack
867 */
868
f4e9dd16 869 a_field_path = g_ptr_array_new();
870 g_ptr_array_set_size(a_field_path,2); /* by default, recording 2 field expressions */
871
18d1226f 872
5f185a2b 873 for(i=0;i<strlen(filter->expression);i++) {
874 // debug
875 g_print("%c ",filter->expression[i]);
876 switch(filter->expression[i]) {
a4c292d4 877 /*
878 * logical operators
879 */
880 case '&': /* and */
5b729fcf 881 t1 = (LttvFilterTree*)g_ptr_array_index(tree_stack,tree_stack->len-1);
2a734d8e 882 while(t1->right != LTTV_TREE_IDLE) t1 = t1->r_child.t;
18d1226f 883 t2 = lttv_filter_tree_new();
0cdc2470 884 t2->node = LTTV_LOGICAL_AND;
bb87caa7 885 if(subtree != NULL) { /* append subtree to current tree */
18d1226f 886 t2->left = LTTV_TREE_NODE;
887 t2->l_child.t = subtree;
f4e9dd16 888 subtree = NULL;
18d1226f 889 t1->right = LTTV_TREE_NODE;
410c83da 890 t1->r_child.t = t2;
bb87caa7 891 } else { /* append a simple expression */
0cdc2470 892 a_simple_expression->value = a_field_component->str;
18d1226f 893 a_field_component = g_string_new("");
894 t2->left = LTTV_TREE_LEAF;
0cdc2470 895 t2->l_child.leaf = a_simple_expression;
389ba50e 896 a_simple_expression = lttv_simple_expression_new();
18d1226f 897 t1->right = LTTV_TREE_NODE;
410c83da 898 t1->r_child.t = t2;
f4e9dd16 899 }
900
901 break;
a4c292d4 902 case '|': /* or */
2ea36caf 903 t1 = (LttvFilter*)g_ptr_array_index(tree_stack,tree_stack->len-1);
2a734d8e 904 while(t1->right != LTTV_TREE_IDLE) t1 = t1->r_child.t;
1601b365 905 t2 = lttv_filter_tree_new();
0cdc2470 906 t2->node = LTTV_LOGICAL_OR;
bb87caa7 907 if(subtree != NULL) { /* append subtree to current tree */
1601b365 908 t2->left = LTTV_TREE_NODE;
909 t2->l_child.t = subtree;
910 subtree = NULL;
911 t1->right = LTTV_TREE_NODE;
912 t1->r_child.t = t2;
bb87caa7 913 } else { /* append a simple expression */
0cdc2470 914 a_simple_expression->value = a_field_component->str;
1601b365 915 a_field_component = g_string_new("");
916 t2->left = LTTV_TREE_LEAF;
0cdc2470 917 t2->l_child.leaf = a_simple_expression;
389ba50e 918 a_simple_expression = lttv_simple_expression_new();
1601b365 919 t1->right = LTTV_TREE_NODE;
920 t1->r_child.t = t2;
921 }
f4e9dd16 922 break;
a4c292d4 923 case '^': /* xor */
2ea36caf 924 t1 = (LttvFilter*)g_ptr_array_index(tree_stack,tree_stack->len-1);
2a734d8e 925 while(t1->right != LTTV_TREE_IDLE) t1 = t1->r_child.t;
1601b365 926 t2 = lttv_filter_tree_new();
0cdc2470 927 t2->node = LTTV_LOGICAL_XOR;
bb87caa7 928 if(subtree != NULL) { /* append subtree to current tree */
1601b365 929 t2->left = LTTV_TREE_NODE;
930 t2->l_child.t = subtree;
931 subtree = NULL;
932 t1->right = LTTV_TREE_NODE;
933 t1->r_child.t = t2;
bb87caa7 934 } else { /* append a simple expression */
0cdc2470 935 a_simple_expression->value = a_field_component->str;
1601b365 936 a_field_component = g_string_new("");
937 t2->left = LTTV_TREE_LEAF;
0cdc2470 938 t2->l_child.leaf = a_simple_expression;
389ba50e 939 a_simple_expression = lttv_simple_expression_new();
1601b365 940 t1->right = LTTV_TREE_NODE;
941 t1->r_child.t = t2;
942 }
a4c292d4 943 break;
944 case '!': /* not, or not equal (math op) */
5f185a2b 945 if(filter->expression[i+1] == '=') { /* != */
bb87caa7 946 assign_operator(a_simple_expression,LTTV_FIELD_NE);
a4c292d4 947 i++;
0cdc2470 948 g_ptr_array_add( a_field_path,(gpointer) a_field_component );
389ba50e 949 parse_field_path(a_field_path,a_simple_expression);
0cdc2470 950 a_field_component = g_string_new("");
a4c292d4 951 } else { /* ! */
1601b365 952 // g_print("%s\n",a_field_component);
953 // a_field_component = g_string_new("");
2ea36caf 954 t1 = (LttvFilter*)g_ptr_array_index(tree_stack,tree_stack->len-1);
2a734d8e 955 while(t1->right != LTTV_TREE_IDLE) t1 = t1->r_child.t;
1601b365 956 t2 = lttv_filter_tree_new();
0cdc2470 957 t2->node = LTTV_LOGICAL_NOT;
1601b365 958 t1->right = LTTV_TREE_NODE;
959 t1->r_child.t = t2;
a4c292d4 960 }
961 break;
962 case '(': /* start of parenthesis */
91ad3f0a 963 case '[':
964 case '{':
965 p_nesting++; /* incrementing parenthesis nesting value */
1601b365 966 t1 = lttv_filter_tree_new();
967 g_ptr_array_add( tree_stack,(gpointer) t1 );
a4c292d4 968 break;
969 case ')': /* end of parenthesis */
91ad3f0a 970 case ']':
971 case '}':
972 p_nesting--; /* decrementing parenthesis nesting value */
18d1226f 973 if(p_nesting<0 || tree_stack->len<2) {
f4e9dd16 974 g_warning("Wrong filtering options, the string\n\"%s\"\n\
5f185a2b 975 is not valid due to parenthesis incorrect use",filter->expression);
976 return FALSE;
f4e9dd16 977 }
18d1226f 978
979 g_assert(tree_stack->len>0);
bb87caa7 980 if(subtree != NULL) { /* append subtree to current tree */
18d1226f 981 t1 = g_ptr_array_index(tree_stack,tree_stack->len-1);
2a734d8e 982 while(t1->right != LTTV_TREE_IDLE && t1->right != LTTV_TREE_LEAF) {
18d1226f 983 g_assert(t1!=NULL && t1->r_child.t != NULL);
984 t1 = t1->r_child.t;
985 }
986 t1->right = LTTV_TREE_NODE;
987 t1->r_child.t = subtree;
988 subtree = g_ptr_array_index(tree_stack,tree_stack->len-1);
989 g_ptr_array_remove_index(tree_stack,tree_stack->len-1);
bb87caa7 990 } else { /* assign subtree as current tree */
0cdc2470 991 a_simple_expression->value = a_field_component->str;
18d1226f 992 a_field_component = g_string_new("");
993 t1 = g_ptr_array_index(tree_stack,tree_stack->len-1);
2a734d8e 994 while(t1->right != LTTV_TREE_IDLE) t1 = t1->r_child.t;
18d1226f 995 t1->right = LTTV_TREE_LEAF;
0cdc2470 996 t1->r_child.leaf = a_simple_expression;
389ba50e 997 a_simple_expression = lttv_simple_expression_new();
18d1226f 998 subtree = g_ptr_array_index(tree_stack,tree_stack->len-1);
1601b365 999 g_assert(subtree != NULL);
18d1226f 1000 g_ptr_array_remove_index(tree_stack,tree_stack->len-1);
1001 }
a4c292d4 1002 break;
1003
1004 /*
1005 * mathematic operators
1006 */
1007 case '<': /* lower, lower or equal */
5f185a2b 1008 if(filter->expression[i+1] == '=') { /* <= */
a4c292d4 1009 i++;
bb87caa7 1010 assign_operator(a_simple_expression,LTTV_FIELD_LE);
1011 } else assign_operator(a_simple_expression,LTTV_FIELD_LT);
f4e9dd16 1012 g_ptr_array_add( a_field_path,(gpointer) a_field_component );
389ba50e 1013 parse_field_path(a_field_path,a_simple_expression);
f4e9dd16 1014 a_field_component = g_string_new("");
a4c292d4 1015 break;
1016 case '>': /* higher, higher or equal */
5f185a2b 1017 if(filter->expression[i+1] == '=') { /* >= */
a4c292d4 1018 i++;
bb87caa7 1019 assign_operator(a_simple_expression,LTTV_FIELD_GE);
1020 } else assign_operator(a_simple_expression,LTTV_FIELD_GT);
389ba50e 1021 g_ptr_array_add( a_field_path,(gpointer) a_field_component );
1022 parse_field_path(a_field_path,a_simple_expression);
f4e9dd16 1023 a_field_component = g_string_new("");
a4c292d4 1024 break;
1025 case '=': /* equal */
bb87caa7 1026 assign_operator(a_simple_expression,LTTV_FIELD_EQ);
f4e9dd16 1027 g_ptr_array_add( a_field_path,(gpointer) a_field_component );
389ba50e 1028 parse_field_path(a_field_path,a_simple_expression);
f4e9dd16 1029 a_field_component = g_string_new("");
a4c292d4 1030 break;
0769c82f 1031 /*
1032 * Field concatening caracter
1033 */
1034 case '.': /* dot */
bb87caa7 1035 /*
1036 * divide field expression into elements
1037 * in a_field_path array.
1038 */
1039 if(a_simple_expression->op != NULL) {
1040 g_ptr_array_add( a_field_path,(gpointer) a_field_component );
1041 a_field_component = g_string_new("");
1042 }
0769c82f 1043 break;
a4c292d4 1044 default: /* concatening current string */
5f185a2b 1045 g_string_append_c(a_field_component,filter->expression[i]);
a4c292d4 1046 }
1047 }
1601b365 1048
1049 g_print("subtree:%p, tree:%p, t1:%p, t2:%p\n",subtree,tree,t1,t2);
0cdc2470 1050 g_print("stack size: %i\n",tree_stack->len);
1051
1052 /*
1053 * Preliminary check to see
1054 * if tree was constructed correctly
1055 */
1056 if( p_nesting>0 ) {
1057 g_warning("Wrong filtering options, the string\n\"%s\"\n\
5f185a2b 1058 is not valid due to parenthesis incorrect use",filter->expression);
1059 return FALSE;
0cdc2470 1060 }
1061
1062 if(tree_stack->len != 1) /* only root tree should remain */
5f185a2b 1063 return FALSE;
1601b365 1064
410c83da 1065 /* processing last element of expression */
410c83da 1066 t1 = g_ptr_array_index(tree_stack,tree_stack->len-1);
2a734d8e 1067 while(t1->right != LTTV_TREE_IDLE) t1 = t1->r_child.t;
410c83da 1068 if(subtree != NULL) { /* add the subtree */
1069 t1->right = LTTV_TREE_NODE;
0cdc2470 1070 t1->r_child.t = subtree;
410c83da 1071 subtree = NULL;
1072 } else { /* add a leaf */
0cdc2470 1073 a_simple_expression->value = a_field_component->str;
410c83da 1074 a_field_component = g_string_new("");
1075 t1->right = LTTV_TREE_LEAF;
0cdc2470 1076 t1->r_child.leaf = a_simple_expression;
2ea36caf 1077 /*
1078 * FIXME: is it really necessary to reallocate
1079 * LttvSimpleExpression at this point ??
1080 */
389ba50e 1081 a_simple_expression = lttv_simple_expression_new();
410c83da 1082 }
1083
1084 g_assert(tree != NULL);
1085 g_assert(subtree == NULL);
a4c292d4 1086
5f185a2b 1087 return TRUE;
1088// return filter;
410c83da 1089
31452f49 1090}
1091
1da1525d 1092void
2ea36caf 1093lttv_filter_destroy(LttvFilter* filter) {
5f185a2b 1094
1095 g_free(filter->expression);
1096 lttv_filter_tree_destroy(filter->head);
1097 g_free(filter);
1098
1da1525d 1099}
1100
150f0d33 1101/**
1102 * Assign a new tree for the current expression
1103 * or sub expression
1104 * @return pointer of LttvFilterTree
1105 */
5f185a2b 1106LttvFilterTree*
1107lttv_filter_tree_new() {
150f0d33 1108 LttvFilterTree* tree;
1109
1110 tree = g_new(LttvFilter,1);
1111 tree->node = 0; //g_new(lttv_expression,1);
150f0d33 1112 tree->left = LTTV_TREE_IDLE;
1113 tree->right = LTTV_TREE_IDLE;
1114
1115 return tree;
1116}
1117
1118/**
1119 * Destroys the tree and his sub-trees
1120 * @param tree Tree which must be destroyed
1121 */
5f185a2b 1122void
1123lttv_filter_tree_destroy(LttvFilterTree* tree) {
150f0d33 1124
1125 if(tree == NULL) return;
1126
1127 if(tree->left == LTTV_TREE_LEAF) g_free(tree->l_child.leaf);
1128 else if(tree->left == LTTV_TREE_NODE) lttv_filter_tree_destroy(tree->l_child.t);
1129
1130 if(tree->right == LTTV_TREE_LEAF) g_free(tree->r_child.leaf);
1131 else if(tree->right == LTTV_TREE_NODE) lttv_filter_tree_destroy(tree->r_child.t);
1132
1133 g_free(tree->node);
1134 g_free(tree);
1135}
1136
1137
84a333d6 1138/**
1139 * Apply the filter to a specific trace
1140 * @param filter the current filter applied
1141 * @param tracefile the trace to apply the filter to
1142 * @return success/failure of operation
1143 */
31452f49 1144gboolean
2ea36caf 1145lttv_filter_tracefile(LttvFilter *filter, LttTracefile *tracefile) {
0769c82f 1146
5b729fcf 1147 LttvFilterTree* t = filter->head;
1148
1601b365 1149 /*
1150 * Each tree is parsed in inorder.
1151 * This way, it's possible to apply the left filter of the
1152 * tree, then decide whether or not the right branch should
1153 * be parsed depending on the linking logical operator
1154 *
1155 * As for the filtering structure, since we are trying
1156 * to remove elements from the trace, it might be better
1157 * managing an array of all items to be removed ..
1158 */
0769c82f 1159
5f185a2b 1160 /////////////////////////////////////////////////////////////////////////////
1161 // TEST //
1162 /////////////////////////////////////////////////////////////////////////////
5b729fcf 1163 g_print("node:%p lchild:%p rchild:%p\n",t,t->l_child.t,t->r_child.t);
1164 g_print("node type%i\n",t->node);
1165 if(t->left == LTTV_TREE_NODE) lttv_filter_tracefile(t->l_child.t,NULL);
1166 else if(t->left == LTTV_TREE_LEAF) {
1167 g_assert(t->l_child.leaf->value != NULL);
1168 g_print("%p: left is qqch %i %s\n",t,t->l_child.leaf->op,t->l_child.leaf->value);
0cdc2470 1169 }
5b729fcf 1170 if(t->right == LTTV_TREE_NODE) lttv_filter_tracefile(t->r_child.t,NULL);
1171 else if(t->right == LTTV_TREE_LEAF) {
1172 g_assert(t->r_child.leaf->value != NULL);
1173 g_print("%p: right is qqch %i %s\n",t,t->r_child.leaf->op,t->r_child.leaf->value);
0cdc2470 1174 }
5f185a2b 1175 /////////////////////////////////////////////////////////////////////////////
1176
1177
1178
0769c82f 1179
1180 /* test */
1181/* int i, nb;
1182 char *f_name, *e_name;
31452f49 1183
0769c82f 1184 char* field = "cpu";
1185
1186 LttvTraceHook h;
1187
1188 LttEventType *et;
1189
1190 LttType *t;
1191
1192 GString *fe_name = g_string_new("");
1193
1194 nb = ltt_trace_eventtype_number(tcs->parent.t);
1195 g_print("NB:%i\n",nb);
1196 for(i = 0 ; i < nb ; i++) {
1197 et = ltt_trace_eventtype_get(tcs->parent.t, i);
1198 e_name = ltt_eventtype_name(et);
1199 f_name = ltt_facility_name(ltt_eventtype_facility(et));
1200 g_string_printf(fe_name, "%s.%s", f_name, e_name);
1201 g_print("facility:%s and event:%s\n",f_name,e_name);
1202 }
1203 */
31452f49 1204}
1205
1a7fa682 1206gboolean
2ea36caf 1207lttv_filter_tracestate(LttvFilter *filter, LttvTraceState *tracestate) {
341aa948 1208
1209}
1a7fa682 1210
84a333d6 1211/**
1212 * Apply the filter to a specific event
1213 * @param filter the current filter applied
1214 * @param event the event to apply the filter to
1215 * @return success/failure of operation
1216 */
31452f49 1217gboolean
2ea36caf 1218lttv_filter_event(LttvFilter *filter, LttEvent *event) {
31452f49 1219
1220}
1a7fa682 1221
91ad3f0a 1222/**
1223 * Initializes the filter module and specific values
1224 */
1a7fa682 1225static void module_init()
1226{
91ad3f0a 1227
1228 /*
1229 * Quarks initialization
1230 * for hardcoded filtering options
1231 *
1232 * TODO: traceset has no yet been defined
1233 */
1234
1235 /* top fields */
5b729fcf 1236// LTTV_FILTER_EVENT = g_quark_from_string("event");
1237// LTTV_FILTER_TRACE = g_quark_from_string("trace");
1238// LTTV_FILTER_TRACESET = g_quark_from_string("traceset");
1239// LTTV_FILTER_STATE = g_quark_from_string("state");
1240// LTTV_FILTER_TRACEFILE = g_quark_from_string("tracefile");
1a7fa682 1241
91ad3f0a 1242 /* event.name, tracefile.name, trace.name */
5b729fcf 1243// LTTV_FILTER_NAME = g_quark_from_string("name");
91ad3f0a 1244
1245 /* event sub fields */
5b729fcf 1246// LTTV_FILTER_CATEGORY = g_quark_from_string("category");
1247// LTTV_FILTER_TIME = g_quark_from_string("time");
1248// LTTV_FILTER_TSC = g_quark_from_string("tsc");
91ad3f0a 1249
1250 /* state sub fields */
5b729fcf 1251// LTTV_FILTER_PID = g_quark_from_string("pid");
1252// LTTV_FILTER_PPID = g_quark_from_string("ppid");
1253// LTTV_FILTER_C_TIME = g_quark_from_string("creation_time");
1254// LTTV_FILTER_I_TIME = g_quark_from_string("insertion_time");
1255// LTTV_FILTER_P_NAME = g_quark_from_string("process_name");
1256// LTTV_FILTER_EX_MODE = g_quark_from_string("execution_mode");
1257// LTTV_FILTER_EX_SUBMODE = g_quark_from_string("execution_submode");
1258// LTTV_FILTER_P_STATUS = g_quark_from_string("process_status");
1259// LTTV_FILTER_CPU = g_quark_from_string("cpu");
91ad3f0a 1260
1a7fa682 1261}
1262
91ad3f0a 1263/**
1264 * Destroys the filter module and specific values
1265 */
1a7fa682 1266static void module_destroy()
1267{
1268}
1269
1270
91ad3f0a 1271LTTV_MODULE("filter", "Filters traceset and events", \
1272 "Filters traceset and events specifically to user input", \
1a7fa682 1273 module_init, module_destroy)
1274
1275
1276
This page took 0.141837 seconds and 4 git commands to generate.