filter change : some fields are 32 bits
[lttv.git] / ltt / branches / poly / lttv / lttv / filter.h
... / ...
CommitLineData
1/* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2005 Michel Dagenais and Simon Bouvier-Zappa
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#ifndef FILTER_H
20#define FILTER_H
21
22/*! \file lttv/lttv/filter.h
23 * \brief Defines the core filter of application
24 *
25 * A filter expression consists in nested AND, OR and NOT expressions
26 * involving boolean relation (>, >=, =, !=, <, <=) between event fields and
27 * specific values. It is compiled into an efficient data structure which
28 * is used in functions to check if a given event or tracefile satisfies the
29 * filter.
30 *
31 * The grammar for filters is:
32 *
33 * filter = expression
34 *
35 * expression = "(" expression ")" | "!" expression |
36 * expression "&&" expression | expression "||" expression |
37 * simpleExpression
38 *
39 * simpleExpression = fieldPath op value
40 *
41 * fieldPath = fieldComponent [ "." fieldPath ]
42 *
43 * fieldComponent = name [ "[" integer "]" ]
44 *
45 * value = integer | double | string
46 */
47
48
49#include <lttv/traceset.h>
50#include <lttv/tracecontext.h>
51#include <lttv/state.h>
52#include <lttv/module.h>
53#include <ltt/ltt.h>
54#include <ltt/time.h>
55#include <ltt/event.h>
56
57/* structures prototypes */
58typedef enum _LttvStructType LttvStructType;
59typedef enum _LttvFieldType LttvFieldType;
60typedef enum _LttvExpressionOp LttvExpressionOp;
61typedef enum _LttvTreeElement LttvTreeElement;
62typedef enum _LttvLogicalOp LttvLogicalOp;
63
64typedef union _LttvFieldValue LttvFieldValue;
65
66typedef struct _LttvSimpleExpression LttvSimpleExpression;
67typedef struct _LttvFilterTree LttvFilterTree;
68
69#ifndef LTTVFILTER_TYPE_DEFINED
70typedef struct _LttvFilter LttvFilter;
71#define LTTVFILTER_TYPE_DEFINED
72#endif
73
74/**
75 * @enum _LttvStructType
76 * @brief The lttv structures
77 *
78 * the LttvStructType enumerates
79 * the possible structures for the
80 * lttv core filter
81 */
82enum _LttvStructType {
83 LTTV_FILTER_TRACE, /**< trace (LttTrace) */
84 LTTV_FILTER_TRACESET, /**< traceset */
85 LTTV_FILTER_TRACEFILE, /**< tracefile (LttTracefile) */
86 LTTV_FILTER_EVENT, /**< event (LttEvent) */
87 LTTV_FILTER_STATE /**< state (LttvProcessState) */
88};
89
90/**
91 * @enum _LttvFieldType
92 * @brief Possible fields for the structures
93 *
94 * the LttvFieldType enum consists on
95 * all the hardcoded structures and
96 * their appropriate fields on which
97 * filters can be applied.
98 */
99enum _LttvFieldType {
100 LTTV_FILTER_TRACE_NAME, /**< trace.name (char*) */
101 LTTV_FILTER_TRACEFILE_NAME, /**< tracefile.name (char*) */
102 LTTV_FILTER_STATE_PID, /**< state.pid (guint) */
103 LTTV_FILTER_STATE_PPID, /**< state.ppid (guint) */
104 LTTV_FILTER_STATE_CT, /**< state.creation_time (double) */
105 LTTV_FILTER_STATE_IT, /**< state.insertion_time (double) */
106 LTTV_FILTER_STATE_P_NAME, /**< state.process_name (char*) */
107 LTTV_FILTER_STATE_EX_MODE, /**< state.execution_mode (LttvExecutionMode) */
108 LTTV_FILTER_STATE_EX_SUBMODE, /**< state.execution_submode (LttvExecutionSubmode) */
109 LTTV_FILTER_STATE_P_STATUS, /**< state.process_status (LttvProcessStatus) */
110 LTTV_FILTER_STATE_CPU, /**< state.cpu (?last_cpu?) */
111 LTTV_FILTER_EVENT_NAME, /**< event.name (char*) */
112 LTTV_FILTER_EVENT_CATEGORY, /**< FIXME: not implemented */
113 LTTV_FILTER_EVENT_TIME, /**< event.time (double) */
114 LTTV_FILTER_EVENT_TSC, /**< event.tsc (double) */
115 LTTV_FILTER_EVENT_FIELD, /**< dynamic field, specified in core.xml */
116 LTTV_FILTER_UNDEFINED /**< undefined field */
117};
118
119/**
120 * @enum _LttvExpressionOp
121 * @brief Contains possible operators
122 *
123 * This enumeration defines the
124 * possible operator used to compare
125 * right and left member in simple
126 * expression
127 */
128enum _LttvExpressionOp
129{
130 LTTV_FIELD_EQ, /**< equal */
131 LTTV_FIELD_NE, /**< not equal */
132 LTTV_FIELD_LT, /**< lower than */
133 LTTV_FIELD_LE, /**< lower or equal */
134 LTTV_FIELD_GT, /**< greater than */
135 LTTV_FIELD_GE /**< greater or equal */
136};
137
138/**
139 * @union _LttvFieldValue
140 * @brief Contains possible field values
141 *
142 * This particular union defines the
143 * possible set of values taken by the
144 * right member of a simple expression.
145 * It is used for comparison whithin the
146 * 'operators' functions
147 */
148union _LttvFieldValue {
149 guint64 v_uint64; /**< unsigned int of 64 bytes */
150 guint32 v_uint32; /**< unsigned int of 32 bytes */
151 guint16 v_uint16; /**< unsigned int of 16 bytes */
152 double v_double; /**< double */
153 char* v_string; /**< string */
154 LttTime v_ltttime; /**< LttTime */
155};
156
157/**
158 * @enum _LttvTreeElement
159 * @brief element types for the tree nodes
160 *
161 * LttvTreeElement defines the possible
162 * types of nodes which build the LttvFilterTree.
163 */
164enum _LttvTreeElement {
165 LTTV_TREE_IDLE, /**< this node does nothing */
166 LTTV_TREE_NODE, /**< this node contains a logical operator */
167 LTTV_TREE_LEAF /**< this node is a leaf and contains a simple expression */
168};
169
170
171/**
172 * @struct _LttvSimpleExpression
173 * @brief simple expression structure
174 *
175 * An LttvSimpleExpression is the base
176 * of all filtering operations. It also
177 * populates the leaves of the
178 * LttvFilterTree. Each expression
179 * consists basically in a structure
180 * field, an operator and a specific
181 * value.
182 */
183struct _LttvSimpleExpression
184{
185 gint field; /**< left member of simple expression */
186 gint offset; /**< offset used for dynamic fields */
187 gboolean (*op)(gpointer,LttvFieldValue); /**< operator of simple expression */
188 LttvFieldValue value; /**< right member of simple expression */
189};
190
191/**
192 * @enum _LttvLogicalOp
193 * @brief logical operators
194 *
195 * Contains the possible values taken
196 * by logical operator used to link
197 * simple expression. Values are
198 * AND, OR, XOR or NOT
199 */
200enum _LttvLogicalOp {
201 LTTV_LOGICAL_OR = 1, /**< OR (1) */
202 LTTV_LOGICAL_AND = 1<<1, /**< AND (2) */
203 LTTV_LOGICAL_NOT = 1<<2, /**< NOT (4) */
204 LTTV_LOGICAL_XOR = 1<<3 /**< XOR (8) */
205};
206
207/**
208 * @struct _LttvFilterTree
209 * @brief The filtering tree
210 *
211 * The filtering tree is used to represent the
212 * expression string in its entire hierarchy
213 * composed of simple expressions and logical
214 * operators
215 */
216struct _LttvFilterTree {
217 int node; /**< value of LttvLogicalOp */
218 LttvTreeElement left; /**< nature of left branch (node/leaf) */
219 LttvTreeElement right; /**< nature of right branch (node/leaf) */
220 union {
221 LttvFilterTree* t;
222 LttvSimpleExpression* leaf;
223 } l_child; /**< left branch of tree */
224 union {
225 LttvFilterTree* t;
226 LttvSimpleExpression* leaf;
227 } r_child; /**< right branch of tree */
228};
229
230/**
231 * @struct _LttvFilter
232 * @brief The filter
233 *
234 * Contains a binary tree of filtering options along
235 * with the expression itself.
236 */
237struct _LttvFilter {
238 char *expression; /**< filtering expression string */
239 LttvFilterTree *head; /**< tree associated to expression */
240};
241
242/*
243 * Simple Expression
244 */
245LttvSimpleExpression* lttv_simple_expression_new();
246
247gboolean lttv_simple_expression_assign_field(GPtrArray* fp, LttvSimpleExpression* se);
248
249gboolean lttv_simple_expression_assign_operator(LttvSimpleExpression* se, LttvExpressionOp op);
250
251gboolean lttv_simple_expression_assign_value(LttvSimpleExpression* se, char* value);
252
253void lttv_simple_expression_destroy(LttvSimpleExpression* se);
254
255
256/*
257 * Logical operators functions
258 */
259
260gboolean lttv_apply_op_eq_uint64(const gpointer v1, LttvFieldValue v2);
261gboolean lttv_apply_op_eq_uint32(const gpointer v1, LttvFieldValue v2);
262gboolean lttv_apply_op_eq_uint16(const gpointer v1, LttvFieldValue v2);
263gboolean lttv_apply_op_eq_double(const gpointer v1, LttvFieldValue v2);
264gboolean lttv_apply_op_eq_string(const gpointer v1, LttvFieldValue v2);
265gboolean lttv_apply_op_eq_quark(const gpointer v1, LttvFieldValue v2);
266gboolean lttv_apply_op_eq_ltttime(const gpointer v1, LttvFieldValue v2);
267
268gboolean lttv_apply_op_ne_uint64(const gpointer v1, LttvFieldValue v2);
269gboolean lttv_apply_op_ne_uint32(const gpointer v1, LttvFieldValue v2);
270gboolean lttv_apply_op_ne_uint16(const gpointer v1, LttvFieldValue v2);
271gboolean lttv_apply_op_ne_double(const gpointer v1, LttvFieldValue v2);
272gboolean lttv_apply_op_ne_string(const gpointer v1, LttvFieldValue v2);
273gboolean lttv_apply_op_ne_quark(const gpointer v1, LttvFieldValue v2);
274gboolean lttv_apply_op_ne_ltttime(const gpointer v1, LttvFieldValue v2);
275
276gboolean lttv_apply_op_lt_uint64(const gpointer v1, LttvFieldValue v2);
277gboolean lttv_apply_op_lt_uint32(const gpointer v1, LttvFieldValue v2);
278gboolean lttv_apply_op_lt_uint16(const gpointer v1, LttvFieldValue v2);
279gboolean lttv_apply_op_lt_double(const gpointer v1, LttvFieldValue v2);
280gboolean lttv_apply_op_lt_ltttime(const gpointer v1, LttvFieldValue v2);
281
282gboolean lttv_apply_op_le_uint64(const gpointer v1, LttvFieldValue v2);
283gboolean lttv_apply_op_le_uint32(const gpointer v1, LttvFieldValue v2);
284gboolean lttv_apply_op_le_uint16(const gpointer v1, LttvFieldValue v2);
285gboolean lttv_apply_op_le_double(const gpointer v1, LttvFieldValue v2);
286gboolean lttv_apply_op_le_ltttime(const gpointer v1, LttvFieldValue v2);
287
288gboolean lttv_apply_op_gt_uint64(const gpointer v1, LttvFieldValue v2);
289gboolean lttv_apply_op_gt_uint32(const gpointer v1, LttvFieldValue v2);
290gboolean lttv_apply_op_gt_uint16(const gpointer v1, LttvFieldValue v2);
291gboolean lttv_apply_op_gt_double(const gpointer v1, LttvFieldValue v2);
292gboolean lttv_apply_op_gt_ltttime(const gpointer v1, LttvFieldValue v2);
293
294gboolean lttv_apply_op_ge_uint64(const gpointer v1, LttvFieldValue v2);
295gboolean lttv_apply_op_ge_uint32(const gpointer v1, LttvFieldValue v2);
296gboolean lttv_apply_op_ge_uint16(const gpointer v1, LttvFieldValue v2);
297gboolean lttv_apply_op_ge_double(const gpointer v1, LttvFieldValue v2);
298gboolean lttv_apply_op_ge_ltttime(const gpointer v1, LttvFieldValue v2);
299
300/*
301 * Cloning
302 */
303
304LttvFilterTree* lttv_filter_tree_clone(const LttvFilterTree* tree);
305
306LttvFilter* lttv_filter_clone(const LttvFilter* filter);
307
308/*
309 * LttvFilter
310 */
311LttvFilter *lttv_filter_new();
312
313gboolean lttv_filter_update(LttvFilter* filter);
314
315void lttv_filter_destroy(LttvFilter* filter);
316
317gboolean lttv_filter_append_expression(LttvFilter* filter, const char *expression);
318
319void lttv_filter_clear_expression(LttvFilter* filter);
320
321/*
322 * LttvFilterTree
323 */
324LttvFilterTree* lttv_filter_tree_new();
325
326void lttv_filter_tree_destroy(LttvFilterTree* tree);
327
328gboolean lttv_filter_tree_parse(
329 const LttvFilterTree* t,
330 const LttEvent* event,
331 const LttTracefile* tracefile,
332 const LttTrace* trace,
333 const LttvTracefileContext* context);
334
335gboolean lttv_filter_tree_parse_branch(
336 const LttvSimpleExpression* se,
337 const LttEvent* event,
338 const LttTracefile* tracefile,
339 const LttTrace* trace,
340 const LttvProcessState* state,
341 const LttvTracefileContext* context);
342
343/*
344 * Debug functions
345 */
346void lttv_print_tree(const LttvFilterTree* t, const int count);
347
348#endif // FILTER_H
349
This page took 0.025043 seconds and 4 git commands to generate.