Massive debugging in lttv filter core:
[lttv.git] / ltt / branches / poly / lttv / modules / text / batchAnalysis.c
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/* This module inserts a hook in the program main loop. This hook processes
20 all the events in the main tracefile. */
21
22
23#include <lttv/lttv.h>
24#include <lttv/attribute.h>
25#include <lttv/hook.h>
ffd54a90 26#include <lttv/option.h>
996acd92 27#include <lttv/module.h>
d8f124de 28#include <lttv/tracecontext.h>
dc877563 29#include <lttv/state.h>
b445142a 30#include <lttv/stats.h>
1da1525d 31#include <lttv/filter.h>
a5dcde2f 32#include <ltt/trace.h>
48f6f3c2 33
dc877563 34static LttvTraceset *traceset;
35
36static LttvHooks
37 *before_traceset,
38 *after_traceset,
39 *before_trace,
40 *after_trace,
41 *before_tracefile,
42 *after_tracefile,
12c59c3d 43 *event_hook,
dc877563 44 *main_hooks;
45
46static char *a_trace;
47
b445142a 48static gboolean a_stats;
dc877563 49
73050a5f 50LttvFilter *a_lttv_filter;
1da1525d 51
dc877563 52void lttv_trace_option(void *hook_data)
53{
54 LttTrace *trace;
55
56 trace = ltt_trace_open(a_trace);
57 if(trace == NULL) g_critical("cannot open trace %s", a_trace);
308711e5 58 lttv_traceset_add(traceset, lttv_trace_new(trace));
dc877563 59}
60
61
ffd54a90 62static gboolean process_traceset(void *hook_data, void *call_data)
48f6f3c2 63{
73050a5f 64 LttvAttributeValue value;
65
66 LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes());
67
b445142a 68 LttvTracesetStats *tscs;
69
70 LttvTracesetContext *tc;
48f6f3c2 71
dc877563 72 LttTime start, end;
48f6f3c2 73
b445142a 74 g_info("BatchAnalysis begin process traceset");
75
76 tscs = g_object_new(LTTV_TRACESET_STATS_TYPE, NULL);
77 tc = &tscs->parent.parent;
78
79 g_info("BatchAnalysis initialize context");
48f6f3c2 80
b445142a 81 lttv_context_init(tc, traceset);
82 lttv_state_add_event_hooks(&tscs->parent);
83 if(a_stats) lttv_stats_add_event_hooks(tscs);
84
73050a5f 85 g_assert(lttv_iattribute_find_by_path(attributes, "filter/expression",
86 LTTV_POINTER, &value));
87
cec3d7b0 88 a_lttv_filter = lttv_filter_new();
73050a5f 89 g_debug("Filter string: %s",((GString*)*(value.v_pointer))->str);
90 lttv_filter_append_expression(a_lttv_filter,((GString*)*(value.v_pointer))->str);
1da1525d 91
12c59c3d 92 //lttv_traceset_context_add_hooks(tc,
93 //before_traceset, after_traceset, NULL, before_trace, after_trace,
94 //NULL, before_tracefile, after_tracefile, NULL, before_event, after_event);
95 lttv_process_traceset_begin(tc,
96 before_traceset,
97 before_trace,
98 before_tracefile,
99 event_hook,
100 NULL);
48f6f3c2 101
dc877563 102 start.tv_sec = 0;
103 start.tv_nsec = 0;
104 end.tv_sec = G_MAXULONG;
105 end.tv_nsec = G_MAXULONG;
48f6f3c2 106
b445142a 107 g_info("BatchAnalysis process traceset");
108
308711e5 109 lttv_process_traceset_seek_time(tc, start);
12c59c3d 110 lttv_process_traceset_middle(tc,
111 end,
112 G_MAXULONG,
113 NULL);
b445142a 114
115 g_info("BatchAnalysis destroy context");
116
12c59c3d 117 //lttv_traceset_context_remove_hooks(tc,
118 //before_traceset, after_traceset, NULL, before_trace, after_trace,
119 //NULL, before_tracefile, after_tracefile, NULL, before_event, after_event);
120 lttv_process_traceset_end(tc,
121 after_traceset,
122 after_trace,
123 after_tracefile,
124 event_hook,
125 NULL);
126
1da1525d 127 lttv_filter_destroy(a_lttv_filter);
b445142a 128 lttv_state_remove_event_hooks(&tscs->parent);
129 if(a_stats) lttv_stats_remove_event_hooks(tscs);
130 lttv_context_fini(tc);
131 g_object_unref(tscs);
48f6f3c2 132
b445142a 133 g_info("BatchAnalysis end process traceset");
ba6f11f1 134 return FALSE;
48f6f3c2 135}
136
137
08b1c66e 138static void init()
48f6f3c2 139{
ffd54a90 140 LttvAttributeValue value;
dc877563 141
ffd54a90 142 LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes());
dc877563 143
b445142a 144 g_info("Init batchAnalysis.c");
145
dc877563 146 lttv_option_add("trace", 't',
147 "add a trace to the trace set to analyse",
148 "pathname of the directory containing the trace",
ffd54a90 149 LTTV_OPT_STRING, &a_trace, lttv_trace_option, NULL);
dc877563 150
b445142a 151 a_stats = FALSE;
152 lttv_option_add("stats", 's',
153 "write the traceset and trace statistics",
154 "",
155 LTTV_OPT_NONE, &a_stats, NULL, NULL);
156
157
dc877563 158 traceset = lttv_traceset_new();
159
160 before_traceset = lttv_hooks_new();
161 after_traceset = lttv_hooks_new();
162 before_trace = lttv_hooks_new();
163 after_trace = lttv_hooks_new();
164 before_tracefile = lttv_hooks_new();
165 after_tracefile = lttv_hooks_new();
12c59c3d 166 //before_event = lttv_hooks_new();
167 //after_event = lttv_hooks_new();
168 event_hook = lttv_hooks_new();
dc877563 169
170 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/traceset/before",
171 LTTV_POINTER, &value));
ffd54a90 172 *(value.v_pointer) = before_traceset;
dc877563 173 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/traceset/after",
174 LTTV_POINTER, &value));
ffd54a90 175 *(value.v_pointer) = after_traceset;
dc877563 176 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/trace/before",
177 LTTV_POINTER, &value));
ffd54a90 178 *(value.v_pointer) = before_trace;
dc877563 179 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/trace/after",
180 LTTV_POINTER, &value));
ffd54a90 181 *(value.v_pointer) = after_trace;
dc877563 182 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/tracefile/before",
183 LTTV_POINTER, &value));
ffd54a90 184 *(value.v_pointer) = before_tracefile;
dc877563 185 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/tracefile/after",
186 LTTV_POINTER, &value));
ffd54a90 187 *(value.v_pointer) = after_tracefile;
12c59c3d 188 //g_assert(lttv_iattribute_find_by_path(attributes, "hooks/event/before",
189 // LTTV_POINTER, &value));
190 //*(value.v_pointer) = before_event;
191 //g_assert(lttv_iattribute_find_by_path(attributes, "hooks/event/after",
192 // LTTV_POINTER, &value));
193 //*(value.v_pointer) = after_event;
194 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/event",
dc877563 195 LTTV_POINTER, &value));
12c59c3d 196 *(value.v_pointer) = event_hook;
dc877563 197
198 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/main/before",
199 LTTV_POINTER, &value));
ffd54a90 200 g_assert((main_hooks = *(value.v_pointer)) != NULL);
12c59c3d 201 lttv_hooks_add(main_hooks, process_traceset, NULL, LTTV_PRIO_DEFAULT);
48f6f3c2 202}
203
204
08b1c66e 205static void destroy()
48f6f3c2 206{
dc877563 207 guint i, nb;
48f6f3c2 208
308711e5 209 LttvTrace *trace;
210
b445142a 211 g_info("Destroy batchAnalysis.c");
212
dc877563 213 lttv_option_remove("trace");
b445142a 214 lttv_option_remove("stats");
48f6f3c2 215
dc877563 216 lttv_hooks_destroy(before_traceset);
217 lttv_hooks_destroy(after_traceset);
218 lttv_hooks_destroy(before_trace);
219 lttv_hooks_destroy(after_trace);
220 lttv_hooks_destroy(before_tracefile);
221 lttv_hooks_destroy(after_tracefile);
12c59c3d 222 //lttv_hooks_destroy(before_event);
223 //lttv_hooks_destroy(after_event);
224 lttv_hooks_destroy(event_hook);
311e7f46 225 lttv_hooks_remove_data(main_hooks, process_traceset, NULL);
48f6f3c2 226
dc877563 227 nb = lttv_traceset_number(traceset);
ffd54a90 228 for(i = 0 ; i < nb ; i++) {
308711e5 229 trace = lttv_traceset_get(traceset, i);
230 ltt_trace_close(lttv_trace(trace));
3d974afb 231 /* This will be done by lttv_traceset_destroy */
232 //lttv_trace_destroy(trace);
dc877563 233 }
c6bc9cb9 234
235 lttv_traceset_destroy(traceset);
dc877563 236}
48f6f3c2 237
08b1c66e 238
239LTTV_MODULE("batchAnalysis", "Batch processing of a trace", \
240 "Run through a trace calling all the registered hooks", \
cec3d7b0 241 init, destroy, "state", "stats", "option","textFilter")
This page took 0.042989 seconds and 4 git commands to generate.