remove files unneeded for lttv
[lttv.git] / lttv / 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
b221eaef 72 LttvTracesetState *tss;
73
b445142a 74 LttvTracesetContext *tc;
48f6f3c2 75
dc877563 76 LttTime start, end;
48f6f3c2 77
b445142a 78 g_info("BatchAnalysis begin process traceset");
79
b221eaef 80 if (a_stats) {
81 tscs = g_object_new(LTTV_TRACESET_STATS_TYPE, NULL);
82 tss = &tscs->parent;
83 } else {
84 tss = g_object_new(LTTV_TRACESET_STATE_TYPE, NULL);
85 }
86 tc = &tss->parent;
b445142a 87
88 g_info("BatchAnalysis initialize context");
48f6f3c2 89
b445142a 90 lttv_context_init(tc, traceset);
b221eaef 91 lttv_state_add_event_hooks(tc);
b445142a 92 if(a_stats) lttv_stats_add_event_hooks(tscs);
93
73050a5f 94 g_assert(lttv_iattribute_find_by_path(attributes, "filter/expression",
8bf54995 95 LTTV_POINTER, &value_expression));
96
97 g_assert(lttv_iattribute_find_by_path(attributes, "filter/lttv_filter",
98 LTTV_POINTER, &value_filter));
73050a5f 99
8bf54995 100 *(value_filter.v_pointer) = lttv_filter_new();
32aa92c2 101 //g_debug("Filter string: %s",((GString*)*(value_expression.v_pointer))->str);
4ec0c904 102
0bc23ba9 103 lttv_filter_append_expression(*(value_filter.v_pointer),((GString*)*(value_expression.v_pointer))->str);
1da1525d 104
12c59c3d 105 //lttv_traceset_context_add_hooks(tc,
106 //before_traceset, after_traceset, NULL, before_trace, after_trace,
107 //NULL, before_tracefile, after_tracefile, NULL, before_event, after_event);
108 lttv_process_traceset_begin(tc,
109 before_traceset,
110 before_trace,
111 before_tracefile,
112 event_hook,
113 NULL);
48f6f3c2 114
dc877563 115 start.tv_sec = 0;
116 start.tv_nsec = 0;
117 end.tv_sec = G_MAXULONG;
118 end.tv_nsec = G_MAXULONG;
48f6f3c2 119
b445142a 120 g_info("BatchAnalysis process traceset");
121
308711e5 122 lttv_process_traceset_seek_time(tc, start);
12c59c3d 123 lttv_process_traceset_middle(tc,
124 end,
125 G_MAXULONG,
126 NULL);
b445142a 127
b445142a 128
12c59c3d 129 //lttv_traceset_context_remove_hooks(tc,
130 //before_traceset, after_traceset, NULL, before_trace, after_trace,
131 //NULL, before_tracefile, after_tracefile, NULL, before_event, after_event);
132 lttv_process_traceset_end(tc,
133 after_traceset,
134 after_trace,
135 after_tracefile,
136 event_hook,
137 NULL);
138
d730b5c8 139 g_info("BatchAnalysis destroy context");
140
8bf54995 141 lttv_filter_destroy(*(value_filter.v_pointer));
b221eaef 142 lttv_state_remove_event_hooks(tss);
b445142a 143 if(a_stats) lttv_stats_remove_event_hooks(tscs);
144 lttv_context_fini(tc);
b221eaef 145 if (a_stats)
146 g_object_unref(tscs);
147 else
148 g_object_unref(tss);
48f6f3c2 149
b445142a 150 g_info("BatchAnalysis end process traceset");
ba6f11f1 151 return FALSE;
48f6f3c2 152}
153
154
08b1c66e 155static void init()
48f6f3c2 156{
ffd54a90 157 LttvAttributeValue value;
dc877563 158
ffd54a90 159 LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes());
dc877563 160
b445142a 161 g_info("Init batchAnalysis.c");
162
dc877563 163 lttv_option_add("trace", 't',
164 "add a trace to the trace set to analyse",
165 "pathname of the directory containing the trace",
ffd54a90 166 LTTV_OPT_STRING, &a_trace, lttv_trace_option, NULL);
dc877563 167
b445142a 168 a_stats = FALSE;
169 lttv_option_add("stats", 's',
170 "write the traceset and trace statistics",
171 "",
172 LTTV_OPT_NONE, &a_stats, NULL, NULL);
173
174
dc877563 175 traceset = lttv_traceset_new();
176
177 before_traceset = lttv_hooks_new();
178 after_traceset = lttv_hooks_new();
179 before_trace = lttv_hooks_new();
180 after_trace = lttv_hooks_new();
181 before_tracefile = lttv_hooks_new();
182 after_tracefile = lttv_hooks_new();
12c59c3d 183 //before_event = lttv_hooks_new();
184 //after_event = lttv_hooks_new();
185 event_hook = lttv_hooks_new();
dc877563 186
187 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/traceset/before",
188 LTTV_POINTER, &value));
ffd54a90 189 *(value.v_pointer) = before_traceset;
dc877563 190 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/traceset/after",
191 LTTV_POINTER, &value));
ffd54a90 192 *(value.v_pointer) = after_traceset;
dc877563 193 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/trace/before",
194 LTTV_POINTER, &value));
ffd54a90 195 *(value.v_pointer) = before_trace;
dc877563 196 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/trace/after",
197 LTTV_POINTER, &value));
ffd54a90 198 *(value.v_pointer) = after_trace;
dc877563 199 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/tracefile/before",
200 LTTV_POINTER, &value));
ffd54a90 201 *(value.v_pointer) = before_tracefile;
dc877563 202 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/tracefile/after",
203 LTTV_POINTER, &value));
ffd54a90 204 *(value.v_pointer) = after_tracefile;
12c59c3d 205 //g_assert(lttv_iattribute_find_by_path(attributes, "hooks/event/before",
206 // LTTV_POINTER, &value));
207 //*(value.v_pointer) = before_event;
208 //g_assert(lttv_iattribute_find_by_path(attributes, "hooks/event/after",
209 // LTTV_POINTER, &value));
210 //*(value.v_pointer) = after_event;
211 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/event",
dc877563 212 LTTV_POINTER, &value));
12c59c3d 213 *(value.v_pointer) = event_hook;
dc877563 214
215 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/main/before",
216 LTTV_POINTER, &value));
ffd54a90 217 g_assert((main_hooks = *(value.v_pointer)) != NULL);
12c59c3d 218 lttv_hooks_add(main_hooks, process_traceset, NULL, LTTV_PRIO_DEFAULT);
48f6f3c2 219}
220
08b1c66e 221static void destroy()
48f6f3c2 222{
dc877563 223 guint i, nb;
48f6f3c2 224
308711e5 225 LttvTrace *trace;
226
b445142a 227 g_info("Destroy batchAnalysis.c");
228
dc877563 229 lttv_option_remove("trace");
b445142a 230 lttv_option_remove("stats");
48f6f3c2 231
dc877563 232 lttv_hooks_destroy(before_traceset);
233 lttv_hooks_destroy(after_traceset);
234 lttv_hooks_destroy(before_trace);
235 lttv_hooks_destroy(after_trace);
236 lttv_hooks_destroy(before_tracefile);
237 lttv_hooks_destroy(after_tracefile);
12c59c3d 238 //lttv_hooks_destroy(before_event);
239 //lttv_hooks_destroy(after_event);
240 lttv_hooks_destroy(event_hook);
311e7f46 241 lttv_hooks_remove_data(main_hooks, process_traceset, NULL);
48f6f3c2 242
dc877563 243 nb = lttv_traceset_number(traceset);
ffd54a90 244 for(i = 0 ; i < nb ; i++) {
308711e5 245 trace = lttv_traceset_get(traceset, i);
246 ltt_trace_close(lttv_trace(trace));
3d974afb 247 /* This will be done by lttv_traceset_destroy */
248 //lttv_trace_destroy(trace);
dc877563 249 }
c6bc9cb9 250
251 lttv_traceset_destroy(traceset);
dc877563 252}
48f6f3c2 253
08b1c66e 254LTTV_MODULE("batchAnalysis", "Batch processing of a trace", \
255 "Run through a trace calling all the registered hooks", \
cec3d7b0 256 init, destroy, "state", "stats", "option","textFilter")
This page took 0.07096 seconds and 4 git commands to generate.