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