154db9b04c811fd1ff4410b25690a6b60f829093
[lttv.git] / lttv / modules / text / batchAnalysis.c
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
19 /* This module inserts a hook in the program main loop. This hook processes
20 all the events in the main tracefile. */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <glib.h>
27 #include <unistd.h>
28 #include <lttv/lttv.h>
29 #include <lttv/attribute.h>
30 #include <lttv/hook.h>
31 #include <lttv/option.h>
32 #include <lttv/module.h>
33 #include <lttv/traceset-process.h>
34 #include <lttv/state.h>
35 #ifdef BABEL_CLEANUP
36 #include <lttv/stats.h>
37 #include <lttv/filter.h>
38 #endif
39 #ifdef BABEL_CLEANUP_SYNC
40 #include <lttv/sync/sync_chain_lttv.h>
41 #endif
42 #include <babeltrace/context.h>
43
44 static LttvTraceset *traceset;
45
46 static LttvHooks
47 *before_traceset,
48 *after_traceset,
49 *before_trace,
50 *after_trace,
51 *before_tracefile,
52 *after_tracefile,
53 *event_hook,
54 *main_hooks;
55
56 static char *trace_path;
57
58 static gboolean a_stats;
59 static gboolean a_live;
60 static int a_live_update_period;
61
62 #define DEFAULT_LIVE_UPDATE_PERIOD 1
63
64 void lttv_trace_option(void *hook_data)
65 {
66 //LttTrace *trace;
67 //trace_collection *trace;
68 //format *fmt = bt_lookup_format(g_quark_from_static_string("ctf"));
69 /*
70 if(a_live) {
71 //trace = ltt_trace_open_live(a_trace);
72 } else {
73 bt_create_context();
74 //trace = bt_add_trace(a_trace,"ctf");
75 }
76 if(trace == NULL) g_critical("cannot open trace %s", a_trace);
77 lttv_traceset_add(traceset, lttv_trace_new(trace));*/
78
79 if(lttv_traceset_add_path(traceset, trace_path) < 0) {
80 g_error("Cannot add trace %s", trace_path);
81 }
82 }
83
84
85 static gboolean process_traceset(void *hook_data, void *call_data)
86 {
87 #ifdef BABEL_CLEANUP
88 LttvAttributeValue value_expression, value_filter;
89
90 LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes());
91
92 LttvTracesetStats *tscs = NULL;
93
94 LttvTracesetState *tss;
95
96 LttvTracesetContext *tc;
97
98 gboolean retval;
99 #endif
100 LttTime start, end;
101
102
103 g_info("BatchAnalysis begin process traceset");
104 #ifdef BABEL_CLEANUP
105 if (a_stats) {
106 tscs = g_object_new(LTTV_TRACESET_STATS_TYPE, NULL);
107 tss = &tscs->parent;
108 } else {
109 tss = g_object_new(LTTV_TRACESET_STATE_TYPE, NULL);
110 }
111 tc = &tss->parent;
112
113 g_info("BatchAnalysis initialize context");
114
115 lttv_context_init(tc, traceset);
116
117
118 syncTraceset(tc);
119
120 lttv_state_add_event_hooks(tss);
121 if(a_stats) lttv_stats_add_event_hooks(tscs);
122
123
124 retval= lttv_iattribute_find_by_path(attributes, "filter/expression",
125 LTTV_POINTER, &value_expression);
126 g_assert(retval);
127
128 retval= lttv_iattribute_find_by_path(attributes, "filter/lttv_filter",
129 LTTV_POINTER, &value_filter);
130 g_assert(retval);
131
132 /* Repeat the search for the first element, the second search might have
133 * moved the first element (by creating the second element)
134 */
135 retval= lttv_iattribute_find_by_path(attributes, "filter/expression",
136 LTTV_POINTER, &value_expression);
137 g_assert(retval);
138
139 *(value_filter.v_pointer) = lttv_filter_new();
140 //g_debug("Filter string: %s",((GString*)*(value_expression.v_pointer))->str);
141
142 lttv_filter_append_expression(*(value_filter.v_pointer),((GString*)*(value_expression.v_pointer))->str);
143 #endif
144 //lttv_traceset_context_add_hooks(tc,
145 //before_traceset, after_traceset, NULL, before_trace, after_trace,
146 //NULL, before_tracefile, after_tracefile, NULL, before_event, after_event);
147
148 lttv_state_add_event_hooks(traceset);
149 lttv_process_traceset_begin(traceset,
150 before_traceset,
151 before_trace,
152 event_hook);
153
154 start.tv_sec = 0;
155 start.tv_nsec = 0;
156 end.tv_sec = G_MAXULONG;
157 end.tv_nsec = G_MAXULONG;
158
159 g_info("BatchAnalysis process traceset");
160
161 lttv_process_traceset_seek_time(traceset, start);
162 /* Read as long a we do not reach the end (0) */
163 unsigned int count;
164 #ifdef BABEL_CLEANUP
165 unsigned int updated_count;
166 #endif
167 do {
168 count = lttv_process_traceset_middle(traceset,
169 end,
170 G_MAXULONG,
171 NULL);
172
173 #ifdef BABEL_CLEANUP
174 updated_count = lttv_process_traceset_update(tc);
175 #endif
176
177 sleep(a_live_update_period);
178 } while(count != 0
179 #ifdef BABEL_CLEANUP
180 || updated_count > 0
181 #endif
182 );
183
184
185 //lttv_traceset_context_remove_hooks(tc,
186 //before_traceset, after_traceset, NULL, before_trace, after_trace,
187 //NULL, before_tracefile, after_tracefile, NULL, before_event, after_event);
188 lttv_process_traceset_end(traceset,
189 after_traceset,
190 after_trace,
191 event_hook);
192
193 g_info("BatchAnalysis destroy context");
194 #ifdef BABEL_CLEANUP
195 lttv_filter_destroy(*(value_filter.v_pointer));
196
197 lttv_state_remove_event_hooks(tss);
198 if(a_stats) lttv_stats_remove_event_hooks(tscs);
199
200 lttv_context_fini(tc);
201 if (a_stats)
202 g_object_unref(tscs);
203 else
204 g_object_unref(tss);
205 #endif
206 g_info("BatchAnalysis end process traceset");
207 return FALSE;
208 }
209
210
211 static void init()
212 {
213 LttvAttributeValue value;
214
215 LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes());
216 gboolean retval;
217
218 g_info("Init batchAnalysis.c");
219
220 lttv_option_add("trace", 't',
221 "add a trace to the trace set to analyse",
222 "pathname of the directory containing the trace",
223 LTTV_OPT_STRING, &trace_path, lttv_trace_option, NULL);
224
225 a_stats = FALSE;
226 lttv_option_add("stats", 's',
227 "write the traceset and trace statistics",
228 "",
229 LTTV_OPT_NONE, &a_stats, NULL, NULL);
230
231 a_live = FALSE;
232 lttv_option_add("live", 0,
233 "define if the traceset is receiving live informations",
234 "",
235 LTTV_OPT_NONE, &a_live, NULL, NULL);
236
237 a_live_update_period = DEFAULT_LIVE_UPDATE_PERIOD;
238 lttv_option_add("live-period", 0,
239 "period to update a live trace",
240 "in seconds",
241 LTTV_OPT_INT,
242 &a_live_update_period,
243 NULL, NULL);
244
245
246 traceset = lttv_traceset_new();
247
248 before_traceset = lttv_hooks_new();
249 after_traceset = lttv_hooks_new();
250 before_trace = lttv_hooks_new();
251 after_trace = lttv_hooks_new();
252 before_tracefile = lttv_hooks_new();
253 after_tracefile = lttv_hooks_new();
254 //before_event = lttv_hooks_new();
255 //after_event = lttv_hooks_new();
256 event_hook = lttv_hooks_new();
257
258 retval= lttv_iattribute_find_by_path(attributes, "hooks/traceset/before",
259 LTTV_POINTER, &value);
260 g_assert(retval);
261 *(value.v_pointer) = before_traceset;
262 retval= lttv_iattribute_find_by_path(attributes, "hooks/traceset/after",
263 LTTV_POINTER, &value);
264 g_assert(retval);
265 *(value.v_pointer) = after_traceset;
266 retval= lttv_iattribute_find_by_path(attributes, "hooks/trace/before",
267 LTTV_POINTER, &value);
268 g_assert(retval);
269 *(value.v_pointer) = before_trace;
270 retval= lttv_iattribute_find_by_path(attributes, "hooks/trace/after",
271 LTTV_POINTER, &value);
272 g_assert(retval);
273 *(value.v_pointer) = after_trace;
274 retval= lttv_iattribute_find_by_path(attributes, "hooks/tracefile/before",
275 LTTV_POINTER, &value);
276 g_assert(retval);
277 *(value.v_pointer) = before_tracefile;
278 retval= lttv_iattribute_find_by_path(attributes, "hooks/tracefile/after",
279 LTTV_POINTER, &value);
280 g_assert(retval);
281 *(value.v_pointer) = after_tracefile;
282 //g_assert(lttv_iattribute_find_by_path(attributes, "hooks/event/before",
283 // LTTV_POINTER, &value));
284 //*(value.v_pointer) = before_event;
285 //g_assert(lttv_iattribute_find_by_path(attributes, "hooks/event/after",
286 // LTTV_POINTER, &value));
287 //*(value.v_pointer) = after_event;
288 retval= lttv_iattribute_find_by_path(attributes, "hooks/event",
289 LTTV_POINTER, &value);
290 g_assert(retval);
291 *(value.v_pointer) = event_hook;
292
293 retval= lttv_iattribute_find_by_path(attributes, "hooks/main/before",
294 LTTV_POINTER, &value);
295 g_assert(retval);
296 g_assert((main_hooks = *(value.v_pointer)) != NULL);
297 lttv_hooks_add(main_hooks, process_traceset, NULL, LTTV_PRIO_DEFAULT);
298 }
299
300 static void destroy()
301 {
302 #ifdef BABEL_CLEANUP
303 guint i, nb;
304
305 LttvTrace *trace;
306 #endif
307
308 g_info("Destroy batchAnalysis.c");
309
310 lttv_option_remove("trace");
311 lttv_option_remove("stats");
312 lttv_option_remove("live");
313 lttv_option_remove("live-period");
314
315 lttv_hooks_destroy(before_traceset);
316 lttv_hooks_destroy(after_traceset);
317 lttv_hooks_destroy(before_trace);
318 lttv_hooks_destroy(after_trace);
319 lttv_hooks_destroy(before_tracefile);
320 lttv_hooks_destroy(after_tracefile);
321 //lttv_hooks_destroy(before_event);
322 //lttv_hooks_destroy(after_event);
323 lttv_hooks_destroy(event_hook);
324 lttv_hooks_remove_data(main_hooks, process_traceset, NULL);
325
326 #ifdef BABEL_CLEANUP
327 nb = lttv_traceset_number(traceset);
328 for(i = 0 ; i < nb ; i++) {
329 trace = lttv_traceset_get(traceset, i);
330 ltt_trace_close(lttv_trace(trace));
331 lttv_trace_destroy(trace);
332 }
333 #endif
334 lttv_traceset_destroy(traceset);
335 }
336
337 LTTV_MODULE("batchAnalysis", "Batch processing of a trace", \
338 "Run through a trace calling all the registered hooks", \
339 init, destroy, "state", "option")
340 //TODO ybrosseau 2012-05-15 reenable textFilter, stats, sync
This page took 0.035744 seconds and 3 git commands to generate.