mathieu desnoyers : addition of lttv_filter api for Simon. breaks compile.
[lttv.git] / ltt / branches / poly / lttv / modules / text / textFilter.c
CommitLineData
a58509ee 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
91ad3f0a 19/*
20 * The text filter facility will prompt for user filter option
21 * and transmit them to the lttv core
22 */
a58509ee 23
24#include <lttv/lttv.h>
25#include <lttv/option.h>
26#include <lttv/module.h>
27#include <lttv/hook.h>
28#include <lttv/attribute.h>
29#include <lttv/iattribute.h>
30#include <lttv/stats.h>
31#include <lttv/filter.h>
32#include <ltt/ltt.h>
33#include <ltt/event.h>
34#include <ltt/type.h>
35#include <ltt/trace.h>
36#include <ltt/facility.h>
37#include <stdio.h>
38
39/* Insert the hooks before and after each trace and tracefile, and for each
40 event. Print a global header. */
41
91ad3f0a 42/*
43 * YET TO BE ANSWERED !
44 * - why does this module need dependency with batchAnalysis ?
45 */
46
1601b365 47/*
48 * TODO
49 * - specify wich hook function will be used to call the core filter
50 */
51
91ad3f0a 52static char
a58509ee 53 *a_file_name = NULL,
91ad3f0a 54 *a_string = NULL;
55
56static GString
a58509ee 57 *a_filter_string = NULL;
58
91ad3f0a 59
a58509ee 60static LttvHooks
61 *before_traceset,
62 *event_hook;
63
64static FILE *a_file;
65
91ad3f0a 66
a58509ee 67/**
91ad3f0a 68 * filters the file input from user
a58509ee 69 * @param hook_data the hook data
91ad3f0a 70 * @return success/failure of operation
a58509ee 71 */
91ad3f0a 72void filter_analyze_file(void *hook_data) {
73
74 g_print("textFilter::filter_analyze_file\n");
75
76 /*
a58509ee 77 * User may specify filtering options through static file
78 * and/or command line string. From these sources, an
79 * option string is rebuilded and sent to the filter core
80 */
91ad3f0a 81 a_file = fopen(a_file_name, "r");
82 if(a_file == NULL) {
83 g_warning("file %s does not exist", a_file_name);
84 return;
85 }
86
1601b365 87 char* line = NULL;
88 size_t len = 0;
91ad3f0a 89
1601b365 90 if(a_filter_string == NULL) {
91 a_filter_string = g_string_new("");
91ad3f0a 92 }
93 else {
94 g_string_append(a_filter_string,"&"); /*conjonction between expression*/
1601b365 95 }
96
97 while(!feof(a_file)) {
98 getline(&line,&len,a_file);
99 g_string_append(a_filter_string,line);
100 line = NULL;
91ad3f0a 101 }
102
1601b365 103 lttv_filter_new(a_filter_string->str,NULL);
91ad3f0a 104 fclose(a_file);
105}
106
107/**
108 * filters the string input from user
109 * @param hook_data the hook data
110 * @return success/failure of operation
111 */
112void filter_analyze_string(void *hook_data) {
113
114 g_print("textFilter::filter_analyze_string\n");
18d1226f 115
91ad3f0a 116 /*
117 * User may specify filtering options through static file
118 * and/or command line string. From these sources, an
119 * option string is rebuilded and sent to the filter core
120 */
1601b365 121 if(a_filter_string==NULL) {
122 a_filter_string = g_string_new("");
91ad3f0a 123 g_string_append(a_filter_string,a_string);
1601b365 124 }
125 else {
126 g_string_append(a_filter_string,"&"); /*conjonction between expression*/
127 g_string_append(a_filter_string,a_string);
128 }
91ad3f0a 129
a58509ee 130}
131
132/**
133 * filter to current event depending on the
134 * filter options tree
135 * @param hook_data the hook data
136 * @param call_data the call data
137 * @return success/error of operation
138 */
139static gboolean filter_event_content(void *hook_data, void *call_data) {
140
141 g_print("textFilter::filter_event_content\n"); /* debug */
142}
143
144/**
145 * initialize the new module
146 */
147static void init() {
148
91ad3f0a 149 g_print("textFilter::init()\n"); /* debug */
150
a58509ee 151 LttvAttributeValue value;
152
153 LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes());
154
155 g_info("Init textFilter.c");
156
91ad3f0a 157 a_string = NULL;
a58509ee 158 lttv_option_add("string", 's',
159 "filters a string issued by the user on the command line",
160 "string",
91ad3f0a 161 LTTV_OPT_STRING, &a_string, filter_analyze_string, NULL);
1a7fa682 162 // add function to call for option
163
a58509ee 164 a_file_name = NULL;
165 lttv_option_add("filename", 'f',
166 "browse the filter options contained in specified file",
167 "file name",
91ad3f0a 168 LTTV_OPT_STRING, &a_file_name, filter_analyze_file, NULL);
a58509ee 169
170 /*
171 * Note to myself !
172 * LttvAttributeValue::v_pointer is a gpointer* --> void**
173 * see union LttvAttributeValue for more info
174 */
175 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/event",
176 LTTV_POINTER, &value));
177 g_assert((event_hook = *(value.v_pointer)) != NULL);
178 lttv_hooks_add(event_hook, filter_event_content, NULL, LTTV_PRIO_DEFAULT);
179
91ad3f0a 180// g_assert(lttv_iattribute_find_by_path(attributes,"hooks/trace/before",
181// LTTV_POINTER, &value));
182// g_assert((before_traceset = *(value.v_pointer)) != NULL);
183// lttv_hooks_add(before_traceset, parse_filter_options, NULL, LTTV_PRIO_DEFAULT);
a58509ee 184
185
186}
187
188/**
189 * Destroy the current module
190 */
191static void destroy() {
192 g_info("Destroy textFilter");
193
194 lttv_option_remove("string");
195
196 lttv_option_remove("filename");
197
198 lttv_hooks_remove_data(event_hook, filter_event_content, NULL);
199
91ad3f0a 200// lttv_hooks_remove_data(before_traceset, parse_filter_options, NULL);
a58509ee 201
202}
203
204
205LTTV_MODULE("textFilter", "Filters traces", \
206 "Filter the trace following commands issued by user input", \
91ad3f0a 207 init, destroy, "batchAnalysis", "option")
a58509ee 208
This page took 0.031524 seconds and 4 git commands to generate.