filter core & textDump
[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
a58509ee 56static LttvHooks
57 *before_traceset,
58 *event_hook;
59
a58509ee 60/**
91ad3f0a 61 * filters the file input from user
a58509ee 62 * @param hook_data the hook data
91ad3f0a 63 * @return success/failure of operation
a58509ee 64 */
91ad3f0a 65void filter_analyze_file(void *hook_data) {
66
67 g_print("textFilter::filter_analyze_file\n");
68
73050a5f 69 LttvAttributeValue value;
70
71 LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes());
72
91ad3f0a 73 /*
a58509ee 74 * User may specify filtering options through static file
75 * and/or command line string. From these sources, an
76 * option string is rebuilded and sent to the filter core
77 */
c684db06 78
79/* OLD CODE
80 * GString* a_file_content = g_string_new("");
73050a5f 81 a_file = fopen(a_file_name, "r");
91ad3f0a 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;
cec3d7b0 89
1601b365 90 while(!feof(a_file)) {
73050a5f 91 len = getline(&line,&len,a_file);
92 g_string_append(a_file_content,line);
91ad3f0a 93 }
73050a5f 94 free(line);
c684db06 95
96 fclose(a_file);
97*/
98
99 if(!g_file_test(a_file_name,G_FILE_TEST_EXISTS)) {
100 g_warning("file %s does not exist", a_file_name);
101 return;
102 }
103
104 char* a_file_content = NULL;
105
106 g_file_get_contents(a_file_name,&a_file_content,NULL,NULL);
91ad3f0a 107
73050a5f 108 g_assert(lttv_iattribute_find_by_path(attributes, "filter/expression",
109 LTTV_POINTER, &value));
110
73050a5f 111 if(((GString*)*(value.v_pointer))->len != 0) g_string_append_c((GString*)*(value.v_pointer),'&');
c684db06 112 g_string_append_c((GString*)*(value.v_pointer),'(');
113 g_string_append((GString*)*(value.v_pointer),a_file_content);
114 g_string_append_c((GString*)*(value.v_pointer),')');
56e29124 115
91ad3f0a 116}
117
118/**
119 * filters the string input from user
120 * @param hook_data the hook data
121 * @return success/failure of operation
122 */
123void filter_analyze_string(void *hook_data) {
124
125 g_print("textFilter::filter_analyze_string\n");
18d1226f 126
73050a5f 127 LttvAttributeValue value;
128
129 LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes());
130
91ad3f0a 131 /*
132 * User may specify filtering options through static file
133 * and/or command line string. From these sources, an
134 * option string is rebuilded and sent to the filter core
135 */
73050a5f 136/* if(a_filter_string==NULL) {
1601b365 137 a_filter_string = g_string_new("");
91ad3f0a 138 g_string_append(a_filter_string,a_string);
1601b365 139 }
140 else {
cec3d7b0 141 g_string_append(a_filter_string,"&");
1601b365 142 g_string_append(a_filter_string,a_string);
143 }
73050a5f 144*/
56e29124 145
73050a5f 146 g_assert(lttv_iattribute_find_by_path(attributes, "filter/expression",
147 LTTV_POINTER, &value));
cec3d7b0 148
73050a5f 149 if(((GString*)*(value.v_pointer))->len != 0) g_string_append_c((GString*)*(value.v_pointer),'&');
c684db06 150 g_string_append_c((GString*)*(value.v_pointer),'(');
73050a5f 151 g_string_append((GString*)*(value.v_pointer),a_string);
c684db06 152 g_string_append_c((GString*)*(value.v_pointer),')');
56e29124 153
8ff6243c 154// LttvFilter* filter = lttv_filter_new();
155// lttv_filter_append_expression(filter,a_string);
a58509ee 156}
157
158/**
159 * initialize the new module
160 */
161static void init() {
162
91ad3f0a 163 g_print("textFilter::init()\n"); /* debug */
164
a58509ee 165 LttvAttributeValue value;
166
167 LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes());
168
73050a5f 169 g_assert(lttv_iattribute_find_by_path(attributes, "filter/expression",
170 LTTV_POINTER, &value));
171
172 *(value.v_pointer) = g_string_new("");
173
a58509ee 174 g_info("Init textFilter.c");
cec3d7b0 175
91ad3f0a 176 a_string = NULL;
73050a5f 177 lttv_option_add("expression", 'e',
a58509ee 178 "filters a string issued by the user on the command line",
179 "string",
91ad3f0a 180 LTTV_OPT_STRING, &a_string, filter_analyze_string, NULL);
1a7fa682 181 // add function to call for option
182
a58509ee 183 a_file_name = NULL;
184 lttv_option_add("filename", 'f',
185 "browse the filter options contained in specified file",
186 "file name",
91ad3f0a 187 LTTV_OPT_STRING, &a_file_name, filter_analyze_file, NULL);
a58509ee 188
a58509ee 189}
190
191/**
192 * Destroy the current module
193 */
194static void destroy() {
195 g_info("Destroy textFilter");
196
73050a5f 197 lttv_option_remove("expression");
a58509ee 198
199 lttv_option_remove("filename");
200
73050a5f 201 LttvAttributeValue value;
202
203 LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes());
a58509ee 204
73050a5f 205 g_assert(lttv_iattribute_find_by_path(attributes, "filter/expression",
206 LTTV_POINTER, &value));
207
208 g_string_free((GString*)*(value.v_pointer),TRUE);
a58509ee 209
210}
211
212
213LTTV_MODULE("textFilter", "Filters traces", \
214 "Filter the trace following commands issued by user input", \
73050a5f 215 init, destroy, "option")
a58509ee 216
This page took 0.031605 seconds and 4 git commands to generate.