Draw_Item .h and .c design complete. Now, needs to be implemented.
[lttv.git] / ltt / branches / poly / lttv / batchAnalysis.c
CommitLineData
48f6f3c2 1/* This module inserts a hook in the program main loop. This hook processes
2 all the events in the main tracefile. */
3
4
5#include <lttv/lttv.h>
6#include <lttv/attribute.h>
7#include <lttv/hook.h>
ffd54a90 8#include <lttv/option.h>
996acd92 9#include <lttv/module.h>
dc877563 10#include <lttv/processTrace.h>
11#include <lttv/state.h>
b445142a 12#include <lttv/stats.h>
48f6f3c2 13
dc877563 14static LttvTraceset *traceset;
15
16static LttvHooks
17 *before_traceset,
18 *after_traceset,
19 *before_trace,
20 *after_trace,
21 *before_tracefile,
22 *after_tracefile,
23 *before_event,
24 *after_event,
25 *main_hooks;
26
27static char *a_trace;
28
b445142a 29static gboolean a_stats;
dc877563 30
31void lttv_trace_option(void *hook_data)
32{
33 LttTrace *trace;
34
35 trace = ltt_trace_open(a_trace);
36 if(trace == NULL) g_critical("cannot open trace %s", a_trace);
37 lttv_traceset_add(traceset, trace);
38}
39
40
ffd54a90 41static gboolean process_traceset(void *hook_data, void *call_data)
48f6f3c2 42{
b445142a 43 LttvTracesetStats *tscs;
44
45 LttvTracesetContext *tc;
48f6f3c2 46
dc877563 47 LttTime start, end;
48f6f3c2 48
b445142a 49 g_info("BatchAnalysis begin process traceset");
50
51 tscs = g_object_new(LTTV_TRACESET_STATS_TYPE, NULL);
52 tc = &tscs->parent.parent;
53
54 g_info("BatchAnalysis initialize context");
48f6f3c2 55
b445142a 56 lttv_context_init(tc, traceset);
57 lttv_state_add_event_hooks(&tscs->parent);
58 if(a_stats) lttv_stats_add_event_hooks(tscs);
59
60 lttv_traceset_context_add_hooks(tc,
ffd54a90 61 before_traceset, after_traceset, NULL, before_trace, after_trace,
62 NULL, before_tracefile, after_tracefile, NULL, before_event, after_event);
48f6f3c2 63
dc877563 64 start.tv_sec = 0;
65 start.tv_nsec = 0;
66 end.tv_sec = G_MAXULONG;
67 end.tv_nsec = G_MAXULONG;
48f6f3c2 68
b445142a 69 g_info("BatchAnalysis process traceset");
70
71 lttv_process_trace(start, end, traceset, tc, G_MAXULONG);
72
73 g_info("BatchAnalysis destroy context");
74
75 lttv_traceset_context_remove_hooks(tc,
ffd54a90 76 before_traceset, after_traceset, NULL, before_trace, after_trace,
77 NULL, before_tracefile, after_tracefile, NULL, before_event, after_event);
b445142a 78 lttv_state_remove_event_hooks(&tscs->parent);
79 if(a_stats) lttv_stats_remove_event_hooks(tscs);
80 lttv_context_fini(tc);
81 g_object_unref(tscs);
48f6f3c2 82
b445142a 83 g_info("BatchAnalysis end process traceset");
48f6f3c2 84}
85
86
d83f6739 87G_MODULE_EXPORT void init(LttvModule *self, int argc, char **argv)
48f6f3c2 88{
ffd54a90 89 LttvAttributeValue value;
dc877563 90
ffd54a90 91 LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes());
dc877563 92
b445142a 93 g_info("Init batchAnalysis.c");
94
dc877563 95 lttv_option_add("trace", 't',
96 "add a trace to the trace set to analyse",
97 "pathname of the directory containing the trace",
ffd54a90 98 LTTV_OPT_STRING, &a_trace, lttv_trace_option, NULL);
dc877563 99
b445142a 100 a_stats = FALSE;
101 lttv_option_add("stats", 's',
102 "write the traceset and trace statistics",
103 "",
104 LTTV_OPT_NONE, &a_stats, NULL, NULL);
105
106
dc877563 107 traceset = lttv_traceset_new();
108
109 before_traceset = lttv_hooks_new();
110 after_traceset = lttv_hooks_new();
111 before_trace = lttv_hooks_new();
112 after_trace = lttv_hooks_new();
113 before_tracefile = lttv_hooks_new();
114 after_tracefile = lttv_hooks_new();
115 before_event = lttv_hooks_new();
116 after_event = lttv_hooks_new();
117
118 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/traceset/before",
119 LTTV_POINTER, &value));
ffd54a90 120 *(value.v_pointer) = before_traceset;
dc877563 121 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/traceset/after",
122 LTTV_POINTER, &value));
ffd54a90 123 *(value.v_pointer) = after_traceset;
dc877563 124 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/trace/before",
125 LTTV_POINTER, &value));
ffd54a90 126 *(value.v_pointer) = before_trace;
dc877563 127 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/trace/after",
128 LTTV_POINTER, &value));
ffd54a90 129 *(value.v_pointer) = after_trace;
dc877563 130 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/tracefile/before",
131 LTTV_POINTER, &value));
ffd54a90 132 *(value.v_pointer) = before_tracefile;
dc877563 133 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/tracefile/after",
134 LTTV_POINTER, &value));
ffd54a90 135 *(value.v_pointer) = after_tracefile;
dc877563 136 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/event/before",
137 LTTV_POINTER, &value));
ffd54a90 138 *(value.v_pointer) = before_event;
dc877563 139 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/event/after",
140 LTTV_POINTER, &value));
ffd54a90 141 *(value.v_pointer) = after_event;
dc877563 142
143 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/main/before",
144 LTTV_POINTER, &value));
ffd54a90 145 g_assert((main_hooks = *(value.v_pointer)) != NULL);
dc877563 146 lttv_hooks_add(main_hooks, process_traceset, NULL);
48f6f3c2 147}
148
149
d83f6739 150G_MODULE_EXPORT void destroy()
48f6f3c2 151{
dc877563 152 guint i, nb;
48f6f3c2 153
b445142a 154 g_info("Destroy batchAnalysis.c");
155
dc877563 156 lttv_option_remove("trace");
b445142a 157 lttv_option_remove("stats");
48f6f3c2 158
dc877563 159 lttv_hooks_destroy(before_traceset);
160 lttv_hooks_destroy(after_traceset);
161 lttv_hooks_destroy(before_trace);
162 lttv_hooks_destroy(after_trace);
163 lttv_hooks_destroy(before_tracefile);
164 lttv_hooks_destroy(after_tracefile);
165 lttv_hooks_destroy(before_event);
166 lttv_hooks_destroy(after_event);
311e7f46 167 lttv_hooks_remove_data(main_hooks, process_traceset, NULL);
48f6f3c2 168
dc877563 169 nb = lttv_traceset_number(traceset);
ffd54a90 170 for(i = 0 ; i < nb ; i++) {
171 ltt_trace_close(lttv_traceset_get(traceset, i));
dc877563 172 }
c6bc9cb9 173
174 lttv_traceset_destroy(traceset);
dc877563 175}
48f6f3c2 176
This page took 0.030838 seconds and 4 git commands to generate.