Commit | Line | Data |
---|---|---|
9a9ca632 BP |
1 | /* This file is part of the Linux Trace Toolkit viewer |
2 | * Copyright (C) 2009 Benjamin Poirier | |
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 | #ifdef HAVE_CONFIG_H | |
20 | #include <config.h> | |
21 | #endif | |
22 | ||
23 | #include <errno.h> | |
24 | #include <fcntl.h> | |
25 | #include <glib.h> | |
26 | #include <inttypes.h> | |
27 | #include <stdio.h> | |
28 | #include <stdlib.h> | |
29 | #include <string.h> | |
30 | #include <sys/resource.h> | |
31 | #include <sys/time.h> | |
32 | #include <sys/types.h> | |
33 | #include <sys/stat.h> | |
34 | #include <unistd.h> | |
35 | ||
36 | #include <lttv/attribute.h> | |
37 | #include <lttv/filter.h> | |
38 | #include <lttv/hook.h> | |
39 | #include <lttv/iattribute.h> | |
40 | #include <lttv/lttv.h> | |
41 | #include <lttv/module.h> | |
42 | #include <lttv/option.h> | |
43 | #include <lttv/print.h> | |
2bd4b3e4 | 44 | #include <lttv/sync/sync_chain.h> |
9a9ca632 BP |
45 | #include <ltt/ltt.h> |
46 | #include <ltt/event.h> | |
47 | #include <ltt/trace.h> | |
48 | ||
49 | ||
50 | struct TracesetChainState { | |
51 | // uint64_t* eventNbs[LttvTraceContext*] | |
52 | GHashTable* eventNbs; | |
53 | ||
54 | SyncState* syncState; | |
55 | struct timeval startTime; | |
56 | struct rusage startUsage; | |
9a9ca632 BP |
57 | }; |
58 | ||
59 | static LttvHooks* before_traceset, * before_trace, * event_hook, * after_traceset; | |
60 | ||
61 | ||
62 | static void init(); | |
63 | static void destroy(); | |
64 | ||
65 | static gboolean tracesetStart(void *hook_data, void *call_data); | |
66 | static gboolean traceStart(void *hook_data, void *call_data); | |
67 | static int processEveryEvent(void *hook_data, void *call_data); | |
68 | static gboolean tracesetEnd(void *hook_data, void *call_data); | |
69 | ||
70 | static void setupSyncChain(LttvTracesetContext* const traceSetContext); | |
71 | static void teardownSyncChain(LttvTracesetContext* const traceSetContext); | |
72 | ||
73 | void ghfPrintEventCount(gpointer key, gpointer value, gpointer user_data); | |
74 | void gdnDestroyUint64(gpointer data); | |
75 | ||
76 | // struct TracesetChainState* tracesetChainStates[LttvTracesetContext*] | |
77 | static GHashTable* tracesetChainStates; | |
78 | ||
79 | static LttvHooks* before_traceset, * before_trace, * event_hook, * after_traceset; | |
80 | static const struct { | |
81 | const char const *path; | |
82 | LttvHooks **hook; | |
83 | LttvHook function; | |
84 | } batchAnalysisHooks[] = { | |
85 | {"hooks/traceset/before", &before_traceset, &tracesetStart}, | |
86 | {"hooks/trace/before", &before_trace, &traceStart}, | |
87 | {"hooks/event", &event_hook, &processEveryEvent}, | |
88 | {"hooks/traceset/after", &after_traceset, &tracesetEnd}, | |
89 | }; | |
90 | ||
91 | static gboolean optionEvalGraphs; | |
92 | static char* optionEvalGraphsDir; | |
93 | static char graphsDir[20]; | |
94 | ||
95 | ||
96 | /* | |
97 | * Module init function | |
98 | */ | |
99 | static void init() | |
100 | { | |
101 | gboolean result; | |
102 | unsigned int i; | |
103 | LttvAttributeValue value; | |
104 | int retval; | |
105 | LttvIAttribute* attributes= LTTV_IATTRIBUTE(lttv_global_attributes()); | |
106 | ||
107 | tracesetChainStates= g_hash_table_new(NULL, NULL); | |
108 | ||
109 | for (i= 0; i < sizeof(batchAnalysisHooks) / sizeof(*batchAnalysisHooks); | |
110 | i++) | |
111 | { | |
112 | result= lttv_iattribute_find_by_path(attributes, | |
113 | batchAnalysisHooks[i].path, LTTV_POINTER, &value); | |
114 | g_assert(result); | |
115 | *batchAnalysisHooks[i].hook= *(value.v_pointer); | |
116 | g_assert(*batchAnalysisHooks[i].hook); | |
117 | lttv_hooks_add(*batchAnalysisHooks[i].hook, | |
118 | batchAnalysisHooks[i].function, NULL, LTTV_PRIO_DEFAULT); | |
119 | } | |
120 | ||
121 | optionEvalGraphs= FALSE; | |
122 | lttv_option_add("eval-graphs", '\0', "output gnuplot graph showing " | |
123 | "synchronization points", "none", LTTV_OPT_NONE, &optionEvalGraphs, | |
124 | NULL, NULL); | |
125 | ||
d6ee5003 | 126 | retval= snprintf(graphsDir, sizeof(graphsDir), "eval-graphs-%d", getpid()); |
9a9ca632 BP |
127 | if (retval > sizeof(graphsDir) - 1) |
128 | { | |
129 | graphsDir[sizeof(graphsDir) - 1]= '\0'; | |
130 | } | |
131 | optionEvalGraphsDir= graphsDir; | |
132 | lttv_option_add("eval-graphs-dir", '\0', "specify the directory where to" | |
133 | " store the graphs", graphsDir, LTTV_OPT_STRING, &optionEvalGraphsDir, | |
134 | NULL, NULL); | |
135 | } | |
136 | ||
137 | ||
138 | /* | |
139 | * Module destroy function | |
140 | */ | |
141 | static void destroy() | |
142 | { | |
143 | unsigned int i; | |
144 | ||
145 | g_assert_cmpuint(g_hash_table_size(tracesetChainStates), ==, 0); | |
146 | g_hash_table_destroy(tracesetChainStates); | |
147 | ||
148 | for (i= 0; i < sizeof(batchAnalysisHooks) / sizeof(*batchAnalysisHooks); | |
149 | i++) | |
150 | { | |
151 | lttv_hooks_remove_data(*batchAnalysisHooks[i].hook, | |
152 | batchAnalysisHooks[i].function, NULL); | |
153 | } | |
154 | ||
155 | lttv_option_remove("eval-graphs"); | |
156 | lttv_option_remove("eval-graphs-dir"); | |
157 | } | |
158 | ||
159 | ||
160 | /* | |
161 | * Lttv hook function that will be called before a traceset is processed | |
162 | * | |
163 | * Args: | |
164 | * hookData: NULL | |
165 | * callData: LttvTracesetContext* at that moment | |
166 | * | |
167 | * Returns: | |
168 | * FALSE Always returns FALSE, meaning to keep processing hooks | |
169 | */ | |
170 | static gboolean tracesetStart(void *hook_data, void *call_data) | |
171 | { | |
172 | struct TracesetChainState* tracesetChainState; | |
173 | LttvTracesetContext *tsc= (LttvTracesetContext *) call_data; | |
174 | ||
175 | tracesetChainState= malloc(sizeof(struct TracesetChainState)); | |
176 | g_hash_table_insert(tracesetChainStates, tsc, tracesetChainState); | |
177 | tracesetChainState->eventNbs= g_hash_table_new_full(&g_direct_hash, | |
178 | &g_direct_equal, NULL, &gdnDestroyUint64); | |
179 | ||
180 | gettimeofday(&tracesetChainState->startTime, 0); | |
181 | getrusage(RUSAGE_SELF, &tracesetChainState->startUsage); | |
182 | ||
183 | setupSyncChain(tsc); | |
184 | ||
185 | return FALSE; | |
186 | } | |
187 | ||
188 | ||
189 | /* | |
190 | * Lttv hook function that will be called before a trace is processed | |
191 | * | |
192 | * Args: | |
193 | * hookData: NULL | |
194 | * callData: LttvTraceContext* at that moment | |
195 | * | |
196 | * Returns: | |
197 | * FALSE Always returns FALSE, meaning to keep processing hooks | |
198 | */ | |
199 | static gboolean traceStart(void *hook_data, void *call_data) | |
200 | { | |
201 | struct TracesetChainState* tracesetChainState; | |
202 | uint64_t* eventNb; | |
203 | LttvTraceContext* tc= (LttvTraceContext*) call_data; | |
204 | LttvTracesetContext* tsc= tc->ts_context; | |
205 | ||
206 | tracesetChainState= g_hash_table_lookup(tracesetChainStates, tsc); | |
207 | eventNb= malloc(sizeof(uint64_t)); | |
208 | *eventNb= 0; | |
209 | g_hash_table_insert(tracesetChainState->eventNbs, tc, eventNb); | |
210 | ||
211 | return FALSE; | |
212 | } | |
213 | ||
214 | ||
215 | /* | |
216 | * Lttv hook function that is called for every event | |
217 | * | |
218 | * Args: | |
219 | * hookData: NULL | |
220 | * callData: LttvTracefileContext* at the moment of the event | |
221 | * | |
222 | * Returns: | |
223 | * FALSE Always returns FALSE, meaning to keep processing hooks for | |
224 | * this event | |
225 | */ | |
226 | static int processEveryEvent(void *hook_data, void *call_data) | |
227 | { | |
228 | LttvTracefileContext* tfc= (LttvTracefileContext*) call_data; | |
229 | LttvTraceContext* tc= tfc->t_context; | |
230 | LttvTracesetContext* tsc= tc->ts_context; | |
231 | struct TracesetChainState* tracesetChainState; | |
232 | uint64_t* eventNb; | |
233 | ||
234 | tracesetChainState= g_hash_table_lookup(tracesetChainStates, tsc); | |
235 | eventNb= g_hash_table_lookup(tracesetChainState->eventNbs, tc); | |
236 | ||
237 | (*eventNb)++; | |
238 | ||
239 | return FALSE; | |
240 | } | |
241 | ||
242 | ||
243 | /* | |
244 | * Lttv hook function that is called after a traceset has been processed | |
245 | * | |
246 | * Args: | |
247 | * hookData: NULL | |
248 | * callData: LttvTracefileContext* at that moment | |
249 | * | |
250 | * Returns: | |
251 | * FALSE Always returns FALSE, meaning to keep processing hooks | |
252 | */ | |
253 | static gboolean tracesetEnd(void *hook_data, void *call_data) | |
254 | { | |
255 | struct TracesetChainState* tracesetChainState; | |
256 | LttvTracesetContext* tsc= (LttvTracesetContext*) call_data; | |
257 | uint64_t sum= 0; | |
258 | ||
259 | tracesetChainState= g_hash_table_lookup(tracesetChainStates, tsc); | |
260 | printf("Event count (%u traces):\n", | |
261 | g_hash_table_size(tracesetChainState->eventNbs)); | |
262 | g_hash_table_foreach(tracesetChainState->eventNbs, &ghfPrintEventCount, | |
263 | &sum); | |
264 | printf("\ttotal events: %" PRIu64 "\n", sum); | |
265 | g_hash_table_destroy(tracesetChainState->eventNbs); | |
266 | ||
267 | teardownSyncChain(tsc); | |
268 | ||
269 | g_hash_table_remove(tracesetChainStates, tsc); | |
270 | ||
271 | return FALSE; | |
272 | } | |
273 | ||
274 | ||
275 | /* | |
276 | * Initialize modules in a sync chain. Use modules that will check | |
277 | * the precision of time synchronization between a group of traces. | |
278 | * | |
279 | * Args: | |
280 | * traceSetContext: traceset | |
281 | */ | |
282 | void setupSyncChain(LttvTracesetContext* const traceSetContext) | |
283 | { | |
284 | struct TracesetChainState* tracesetChainState; | |
285 | SyncState* syncState; | |
286 | GList* result; | |
9a9ca632 BP |
287 | |
288 | tracesetChainState= g_hash_table_lookup(tracesetChainStates, traceSetContext); | |
289 | syncState= malloc(sizeof(SyncState)); | |
290 | tracesetChainState->syncState= syncState; | |
291 | syncState->traceNb= lttv_traceset_number(traceSetContext->ts); | |
292 | ||
1ed11971 | 293 | // Statistics are always on with eval |
9a9ca632 BP |
294 | syncState->stats= true; |
295 | ||
296 | if (optionEvalGraphs) | |
9a9ca632 | 297 | { |
9a9ca632 BP |
298 | // Create the graph directory right away in case the module initialization |
299 | // functions have something to write in it. | |
8d7d16dd | 300 | syncState->graphsDir= optionEvalGraphsDir; |
1d597550 | 301 | syncState->graphsStream= createGraphsDir(syncState->graphsDir); |
9a9ca632 | 302 | } |
8d7d16dd BP |
303 | else |
304 | { | |
305 | syncState->graphsStream= NULL; | |
306 | syncState->graphsDir= NULL; | |
307 | } | |
9a9ca632 | 308 | |
b2da0724 BP |
309 | syncState->reductionData= NULL; |
310 | syncState->reductionModule= NULL; | |
311 | ||
9a9ca632 | 312 | syncState->analysisData= NULL; |
cdce23b3 BP |
313 | result= g_queue_find_custom(&analysisModules, "eval", |
314 | &gcfCompareAnalysis); | |
9a9ca632 | 315 | syncState->analysisModule= (AnalysisModule*) result->data; |
d4721e1a | 316 | syncState->analysisModule->initAnalysis(syncState); |
9a9ca632 | 317 | |
d4721e1a | 318 | syncState->matchingData= NULL; |
d6ee5003 BP |
319 | result= g_queue_find_custom(&matchingModules, "distributor", |
320 | &gcfCompareMatching); | |
d4721e1a | 321 | syncState->matchingModule= (MatchingModule*) result->data; |
9a9ca632 | 322 | syncState->matchingModule->initMatching(syncState); |
d4721e1a BP |
323 | |
324 | syncState->processingData= NULL; | |
325 | result= g_queue_find_custom(&processingModules, "LTTV-standard", | |
326 | &gcfCompareProcessing); | |
327 | syncState->processingModule= (ProcessingModule*) result->data; | |
328 | syncState->processingModule->initProcessing(syncState, traceSetContext); | |
9a9ca632 BP |
329 | } |
330 | ||
331 | ||
332 | /* | |
333 | * Destroy modules in a sync chain | |
334 | * | |
335 | * Args: | |
336 | * traceSetContext: traceset | |
337 | */ | |
338 | void teardownSyncChain(LttvTracesetContext* const traceSetContext) | |
339 | { | |
340 | struct TracesetChainState* tracesetChainState; | |
341 | SyncState* syncState; | |
342 | struct timeval endTime; | |
343 | struct rusage endUsage; | |
344 | int retval; | |
345 | ||
346 | tracesetChainState= g_hash_table_lookup(tracesetChainStates, traceSetContext); | |
347 | syncState= tracesetChainState->syncState; | |
348 | ||
b2da0724 BP |
349 | freeAllFactors(syncState->processingModule->finalizeProcessing(syncState), |
350 | syncState->traceNb); | |
9a9ca632 BP |
351 | |
352 | // Write graphs file | |
8d7d16dd | 353 | if (optionEvalGraphs) |
9a9ca632 | 354 | { |
467066ee | 355 | writeGraphsScript(syncState); |
9a9ca632 | 356 | |
8d7d16dd | 357 | if (fclose(syncState->graphsStream) != 0) |
9a9ca632 | 358 | { |
c7cb53d7 | 359 | g_error("%s", strerror(errno)); |
9a9ca632 BP |
360 | } |
361 | } | |
362 | ||
1ed11971 | 363 | printStats(syncState); |
d6ee5003 | 364 | |
9a9ca632 BP |
365 | syncState->processingModule->destroyProcessing(syncState); |
366 | if (syncState->matchingModule != NULL) | |
367 | { | |
368 | syncState->matchingModule->destroyMatching(syncState); | |
369 | } | |
370 | if (syncState->analysisModule != NULL) | |
371 | { | |
372 | syncState->analysisModule->destroyAnalysis(syncState); | |
373 | } | |
b2da0724 BP |
374 | if (syncState->reductionModule != NULL) |
375 | { | |
376 | syncState->reductionModule->destroyReduction(syncState); | |
377 | } | |
9a9ca632 BP |
378 | |
379 | free(syncState); | |
380 | ||
381 | gettimeofday(&endTime, 0); | |
382 | retval= getrusage(RUSAGE_SELF, &endUsage); | |
383 | ||
384 | timeDiff(&endTime, &tracesetChainState->startTime); | |
385 | timeDiff(&endUsage.ru_utime, &tracesetChainState->startUsage.ru_utime); | |
386 | timeDiff(&endUsage.ru_stime, &tracesetChainState->startUsage.ru_stime); | |
387 | ||
388 | printf("Evaluation time:\n"); | |
389 | printf("\treal time: %ld.%06ld\n", endTime.tv_sec, endTime.tv_usec); | |
390 | printf("\tuser time: %ld.%06ld\n", endUsage.ru_utime.tv_sec, | |
391 | endUsage.ru_utime.tv_usec); | |
392 | printf("\tsystem time: %ld.%06ld\n", endUsage.ru_stime.tv_sec, | |
393 | endUsage.ru_stime.tv_usec); | |
394 | ||
395 | g_hash_table_remove(tracesetChainStates, traceSetContext); | |
396 | free(tracesetChainState); | |
397 | } | |
398 | ||
399 | ||
400 | ||
401 | /* | |
402 | * A GHFunc function for g_hash_table_foreach() | |
403 | * | |
404 | * Args: | |
405 | * key: LttvTraceContext * | |
406 | * value: uint64_t *, event count for this trace | |
407 | * user_data: uint64_t *, sum of the event counts | |
408 | * | |
409 | * Returns: | |
410 | * Updates the sum in user_data | |
411 | */ | |
412 | void ghfPrintEventCount(gpointer key, gpointer value, gpointer user_data) | |
413 | { | |
414 | LttvTraceContext *tc = (LttvTraceContext *) key; | |
415 | uint64_t *eventNb = (uint64_t *)value; | |
416 | uint64_t *sum = (uint64_t *)user_data; | |
417 | ||
418 | printf("\t%s: %" PRIu64 "\n", g_quark_to_string(ltt_trace_name(tc->t)), | |
419 | *eventNb); | |
420 | *sum += *eventNb; | |
421 | } | |
422 | ||
423 | ||
424 | /* | |
425 | * A GDestroyNotify function for g_hash_table_new_full() | |
426 | * | |
427 | * Args: | |
428 | * data: TsetStats * | |
429 | */ | |
430 | void gdnDestroyUint64(gpointer data) | |
431 | { | |
432 | free((uint64_t *) data); | |
433 | } | |
434 | ||
435 | ||
436 | LTTV_MODULE("sync_chain_batch", "Execute synchronization modules in a "\ | |
437 | "post-processing step.", "This can be used to quantify the precision "\ | |
438 | "with which a group of trace is synchronized.", init, destroy,\ | |
439 | "batchAnalysis", "option", "sync") |