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