fixed some errors !
[lttv.git] / ltt / branches / poly / lttv / lttv / filter.h
CommitLineData
9c312311 1/* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 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
48f6f3c2 19#ifndef FILTER_H
20#define FILTER_H
21
31452f49 22#include <lttv/traceset.h>
23
48f6f3c2 24/* A filter expression consists in nested AND, OR and NOT expressions
25 involving boolean relation (>, >=, =, !=, <, <=) between event fields and
26 specific values. It is compiled into an efficient data structure which
27 is used in functions to check if a given event or tracefile satisfies the
28 filter.
29
30 The grammar for filters is:
31
32 filter = expression
33
34 expression = "(" expression ")" | "!" expression |
35 expression "&&" expression | expression "||" expression |
36 simpleExpression
37
38 simpleExpression = fieldPath op value
39
40 fieldPath = fieldComponent [ "." fieldPath ]
41
42 fieldComponent = name [ "[" integer "]" ]
43
44 value = integer | double | string
45
46*/
47
84a333d6 48/**
49 * @enum lttv_expression_op
50 */
51typedef enum _lttv_expression_op
52{
53 LTTV_FIELD_EQ, /** equal */
54 LTTV_FIELD_NE, /** not equal */
55 LTTV_FIELD_LT, /** lower than */
56 LTTV_FIELD_LE, /** lower or equal */
57 LTTV_FIELD_GT, /** greater than */
58 LTTV_FIELD_GE /** greater or equal */
59} lttv_expression_op;
60
61typedef enum _lttv_expression_type
62{
63 LTTV_EXPRESSION,
64 LTTV_SIMPLE_EXPRESSION
65} lttv_expression_type;
66
67typedef struct _lttv_simple_expression
68{
69 lttv_expression_op op;
70 char *field_name;
71 char *value;
72} lttv_simple_expression;
73
74typedef struct _lttv_expression
75{
76 gboolean or;
77 gboolean not;
78 gboolean and;
79 gboolean xor;
80 gboolean simple_expression;
81// union e
82// {
83// struct lttv_expression *e;
84// lttv_field_relation *se;
85// };
86} lttv_expression;
87
88typedef struct _lttv_filter_tree {
89 lttv_expression* node;
90 struct lttv_filter_tree* r_child;
91 struct lttv_filter_tree* l_child;
92} lttv_filter_tree;
93
31452f49 94/**
95 * @struct lttv_filter
96 * ( will later contain a binary tree of filtering options )
97 */
84a333d6 98typedef struct _lttv_filter {
99 lttv_filter_tree* tree;
100} lttv_filter;
101
102gboolean parse_simple_expression(GString* expression);
48f6f3c2 103
48f6f3c2 104/* Compile the filter expression into an efficient data structure */
105
31452f49 106lttv_filter *lttv_filter_new(char *expression, LttvTrace *t);
48f6f3c2 107
108
109/* Check if the tracefile or event satisfies the filter. The arguments are
110 declared as void * to allow these functions to be used as hooks. */
111
31452f49 112gboolean lttv_filter_tracefile(lttv_filter *filter, void *tracefile);
48f6f3c2 113
31452f49 114gboolean lttv_filter_event(lttv_filter *filter, void *event);
48f6f3c2 115
116#endif // FILTER_H
117
This page took 0.034384 seconds and 4 git commands to generate.