main window call process_traceset for each viewer
[lttv.git] / ltt / branches / poly / lttv / modules / gui / API / gtkTraceSet.c
CommitLineData
561f5852 1/*! \file gtkTraceSet.h
2 * \brief API used by the graphical viewers to interact with their top window.
3 *
4 * Main window (gui module) is the place to contain and display viewers.
5 * Viewers (lttv plugins) interacte with main window through this API and
6 * events sent by gtk.
7 * This header file should be included in each graphic module.
8 * This library is used by graphical modules to interact with the
9 * tracesetWindow.
10 *
11 */
12
d0cf1bcd 13#include <lttv/common.h>
561f5852 14#include <ltt/ltt.h>
15#include <lttv/lttv.h>
16#include <lttv/mainWindow.h>
17#include <lttv/gtkTraceSet.h>
18#include <lttv/processTrace.h>
c4c15b5e 19#include <lttv/toolbar.h>
20#include <lttv/menu.h>
6b1d3120 21#include <lttv/state.h>
22#include <lttv/stats.h>
23
561f5852 24
25/**
26 * Internal function parts
27 */
28
561f5852 29/**
30 * Function to set/update traceset for the viewers
31 * @param main_win main window
32 * @param traceset traceset of the main window.
33 */
34
bca3b81f 35void SetTraceset(MainWindow * main_win, gpointer traceset)
561f5852 36{
37 LttvHooks * tmp;
38 LttvAttributeValue value;
39
bca3b81f 40 g_assert(lttv_iattribute_find_by_path(main_win->attributes,
561f5852 41 "hooks/updatetraceset", LTTV_POINTER, &value));
42 tmp = (LttvHooks*)*(value.v_pointer);
43 if(tmp == NULL)return;
44 lttv_hooks_call(tmp,traceset);
45}
46
47
48/**
49 * Function to set/update filter for the viewers
50 * @param main_win main window
51 * @param filter filter of the main window.
52 */
53
bca3b81f 54void SetFilter(MainWindow * main_win, gpointer filter)
561f5852 55{
56 LttvHooks * tmp;
57 LttvAttributeValue value;
58
bca3b81f 59 g_assert(lttv_iattribute_find_by_path(main_win->attributes,
561f5852 60 "hooks/updatefilter", LTTV_POINTER, &value));
61 tmp = (LttvHooks*)*(value.v_pointer);
62
63 if(tmp == NULL)return;
64 lttv_hooks_call(tmp,filter);
65}
66
67
68
69/**
70 * API parts
71 */
72
73/**
74 * Function to register a view constructor so that main window can generate
75 * a toolbar item for the viewer in order to generate a new instance easily.
76 * It will be called by init function of the module.
77 * @param ButtonPixmap image shown on the toolbar item.
78 * @param tooltip tooltip of the toolbar item.
79 * @param view_constructor constructor of the viewer.
80 */
81
41a76985 82void toolbar_item_reg(char ** pixmap, char *tooltip, lttv_constructor view_constructor)
561f5852 83{
84 LttvIAttribute *attributes_global = LTTV_IATTRIBUTE(lttv_global_attributes());
85 LttvToolbars * toolbar;
86 LttvAttributeValue value;
87
88 g_assert(lttv_iattribute_find_by_path(attributes_global,
89 "viewers/toolbar", LTTV_POINTER, &value));
90 toolbar = (LttvToolbars*)*(value.v_pointer);
91
92 if(toolbar == NULL){
93 toolbar = lttv_toolbars_new();
94 *(value.v_pointer) = toolbar;
95 }
96 lttv_toolbars_add(toolbar, view_constructor, tooltip, pixmap);
97}
98
99
100/**
101 * Function to unregister the viewer's constructor, release the space
102 * occupied by pixmap, tooltip and constructor of the viewer.
103 * It will be called when a module is unloaded.
104 * @param view_constructor constructor of the viewer which is used as
105 * a reference to find out where the pixmap and tooltip are.
106 */
107
41a76985 108void toolbar_item_unreg(lttv_constructor view_constructor)
561f5852 109{
110 LttvIAttribute *attributes_global = LTTV_IATTRIBUTE(lttv_global_attributes());
111 LttvToolbars * toolbar;
112 LttvAttributeValue value;
113
114 g_assert(lttv_iattribute_find_by_path(attributes_global,
115 "viewers/toolbar", LTTV_POINTER, &value));
116 toolbar = (LttvToolbars*)*(value.v_pointer);
117
2061e03d 118 main_window_remove_toolbar_item(view_constructor);
119
120 lttv_toolbars_remove(toolbar, view_constructor);
561f5852 121}
122
123
124/**
125 * Function to register a view constructor so that main window can generate
126 * a menu item for the viewer in order to generate a new instance easily.
127 * It will be called by init function of the module.
128 * @param menu_path path of the menu item.
129 * @param menu_text text of the menu item.
130 * @param view_constructor constructor of the viewer.
131 */
132
41a76985 133void menu_item_reg(char *menu_path, char *menu_text, lttv_constructor view_constructor)
561f5852 134{
135 LttvIAttribute *attributes_global = LTTV_IATTRIBUTE(lttv_global_attributes());
136 LttvMenus * menu;
137 LttvAttributeValue value;
138
139 g_assert(lttv_iattribute_find_by_path(attributes_global,
140 "viewers/menu", LTTV_POINTER, &value));
141 menu = (LttvMenus*)*(value.v_pointer);
142
143 if(menu == NULL){
144 menu = lttv_menus_new();
145 *(value.v_pointer) = menu;
146 }
147 lttv_menus_add(menu, view_constructor, menu_path, menu_text);
148}
149
150/**
151 * Function to unregister the viewer's constructor, release the space
152 * occupied by menu_path, menu_text and constructor of the viewer.
153 * It will be called when a module is unloaded.
154 * @param view_constructor constructor of the viewer which is used as
155 * a reference to find out where the menu_path and menu_text are.
156 */
157
41a76985 158void menu_item_unreg(lttv_constructor view_constructor)
561f5852 159{
160 LttvIAttribute *attributes_global = LTTV_IATTRIBUTE(lttv_global_attributes());
161 LttvMenus * menu;
162 LttvAttributeValue value;
163
164 g_assert(lttv_iattribute_find_by_path(attributes_global,
c4c15b5e 165 "viewers/menu", LTTV_POINTER, &value));
561f5852 166 menu = (LttvMenus*)*(value.v_pointer);
167
2061e03d 168 main_window_remove_menu_item(view_constructor);
169
170 lttv_menus_remove(menu, view_constructor);
561f5852 171}
172
173
174/**
175 * Update the status bar whenever something changed in the viewer.
176 * @param main_win the main window the viewer belongs to.
177 * @param info the message which will be shown in the status bar.
178 */
179
41a76985 180void update_status(MainWindow *main_win, char *info)
561f5852 181{
182}
183
184
185/**
f7afe191 186 * Function to get the current time interval shown on the current tab.
187 * It will be called by a viewer's hook function to update the
188 * shown time interval of the viewer and also be called by the constructor
189 * of the viewer.
190 * @param main_win the main window the viewer belongs to.
191 * @param time_interval a pointer where time interval will be stored.
192 */
193
41a76985 194void get_time_window(MainWindow *main_win, TimeWindow *time_window)
f7afe191 195{
bca3b81f 196 //time_window->start_time = main_win->current_tab->time_window.start_time;
197 //time_window->time_width = main_win->current_tab->time_window.time_width;
198 *time_window = main_win->current_tab->time_window;
f7afe191 199}
200
201/**
202 * Function to get the current time interval of the current traceset.
561f5852 203 * It will be called by a viewer's hook function to update the
204 * time interval of the viewer and also be called by the constructor
205 * of the viewer.
206 * @param main_win the main window the viewer belongs to.
207 * @param time_interval a pointer where time interval will be stored.
208 */
209
41a76985 210void get_traceset_time_span(MainWindow *main_win, TimeInterval *time_interval)
561f5852 211{
bca3b81f 212 //time_window->start_time = main_win->current_tab->time_window.start_time;
213 //time_window->time_width = main_win->current_tab->time_window.time_width;
716e4367 214 *time_interval = *(LTTV_TRACESET_CONTEXT(main_win->current_tab->traceset_info->
215 traceset_context)->Time_Span);
561f5852 216}
217
218
f7afe191 219
561f5852 220/**
221 * Function to set the time interval of the current tab.
222 * It will be called by a viewer's signal handle associated with
223 * the move_slider signal
224 * @param main_win the main window the viewer belongs to.
225 * @param time_interval a pointer where time interval is stored.
226 */
227
41a76985 228void set_time_window(MainWindow *main_win, TimeWindow *time_window)
561f5852 229{
230 LttvAttributeValue value;
231 LttvHooks * tmp;
bca3b81f 232 main_win->current_tab->time_window = *time_window;
233 g_assert(lttv_iattribute_find_by_path(main_win->current_tab->attributes,
f7afe191 234 "hooks/updatetimewindow", LTTV_POINTER, &value));
561f5852 235 tmp = (LttvHooks*)*(value.v_pointer);
f7afe191 236 if(tmp == NULL) return;
a2eab0c9 237 lttv_hooks_call(tmp, time_window);
561f5852 238}
239
240
241/**
242 * Function to get the current time/event of the current tab.
243 * It will be called by a viewer's hook function to update the
244 * current time/event of the viewer.
245 * @param main_win the main window the viewer belongs to.
246 * @param time a pointer where time will be stored.
247 */
248
41a76985 249void get_current_time(MainWindow *main_win, LttTime *time)
561f5852 250{
bca3b81f 251 time = &main_win->current_tab->current_time;
561f5852 252}
253
254
255/**
256 * Function to set the current time/event of the current tab.
257 * It will be called by a viewer's signal handle associated with
258 * the button-release-event signal
259 * @param main_win the main window the viewer belongs to.
260 * @param time a pointer where time is stored.
261 */
262
41a76985 263void set_current_time(MainWindow *main_win, LttTime *time)
561f5852 264{
265 LttvAttributeValue value;
266 LttvHooks * tmp;
bca3b81f 267 main_win->current_tab->current_time = *time;
268 g_assert(lttv_iattribute_find_by_path(main_win->current_tab->attributes,
561f5852 269 "hooks/updatecurrenttime", LTTV_POINTER, &value));
270 tmp = (LttvHooks*)*(value.v_pointer);
271
272 if(tmp == NULL)return;
273 lttv_hooks_call(tmp, time);
274}
275
276
277/**
278 * Function to get the traceset from the current tab.
279 * It will be called by the constructor of the viewer and also be
280 * called by a hook funtion of the viewer to update its traceset.
281 * @param main_win the main window the viewer belongs to.
282 * @param traceset a pointer to a traceset.
283 */
284/*
41a76985 285void get_traceset(MainWindow *main_win, Traceset *traceset)
561f5852 286{
287}
288*/
289
290/**
291 * Function to get the filter of the current tab.
292 * It will be called by the constructor of the viewer and also be
293 * called by a hook funtion of the viewer to update its filter.
294 * @param main_win, the main window the viewer belongs to.
295 * @param filter, a pointer to a filter.
296 */
297/*
41a76985 298void get_filter(MainWindow *main_win, Filter *filter)
561f5852 299{
300}
301*/
302
303/**
304 * Function to register a hook function for a viewer to set/update its
305 * time interval.
306 * It will be called by the constructor of the viewer.
307 * @param hook hook function of the viewer.
308 * @param hook_data hook data associated with the hook function.
309 * @param main_win the main window the viewer belongs to.
310 */
311
41a76985 312void reg_update_time_window(LttvHook hook, gpointer hook_data,
bca3b81f 313 MainWindow * main_win)
561f5852 314{
315 LttvAttributeValue value;
316 LttvHooks * tmp;
bca3b81f 317 g_assert(lttv_iattribute_find_by_path(main_win->current_tab->attributes,
f7afe191 318 "hooks/updatetimewindow", LTTV_POINTER, &value));
561f5852 319 tmp = (LttvHooks*)*(value.v_pointer);
320 if(tmp == NULL){
321 tmp = lttv_hooks_new();
322 *(value.v_pointer) = tmp;
323 }
324 lttv_hooks_add(tmp, hook,hook_data);
325}
326
327
328/**
329 * Function to unregister a viewer's hook function which is used to
330 * set/update the time interval of the viewer.
331 * It will be called by the destructor of the viewer.
332 * @param hook hook function of the viewer.
333 * @param hook_data hook data associated with the hook function.
334 * @param main_win the main window the viewer belongs to.
335 */
336
41a76985 337void unreg_update_time_window(LttvHook hook, gpointer hook_data,
bca3b81f 338 MainWindow * main_win)
561f5852 339{
340 LttvAttributeValue value;
341 LttvHooks * tmp;
bca3b81f 342 g_assert(lttv_iattribute_find_by_path(main_win->current_tab->attributes,
f7afe191 343 "hooks/updatetimewindow", LTTV_POINTER, &value));
561f5852 344 tmp = (LttvHooks*)*(value.v_pointer);
345 if(tmp == NULL) return;
346 lttv_hooks_remove_data(tmp, hook, hook_data);
347}
348
349
350/**
351 * Function to register a hook function for a viewer to set/update its
352 * traceset.
353 * It will be called by the constructor of the viewer.
354 * @param hook hook function of the viewer.
355 * @param hook_data hook data associated with the hook function.
356 * @param main_win the main window the viewer belongs to.
357 */
358
41a76985 359void reg_update_traceset(LttvHook hook, gpointer hook_data,
bca3b81f 360 MainWindow * main_win)
561f5852 361{
362 LttvAttributeValue value;
363 LttvHooks * tmp;
bca3b81f 364 g_assert(lttv_iattribute_find_by_path(main_win->attributes,
561f5852 365 "hooks/updatetraceset", LTTV_POINTER, &value));
366 tmp = (LttvHooks*)*(value.v_pointer);
367 if(tmp == NULL){
368 tmp = lttv_hooks_new();
369 *(value.v_pointer) = tmp;
370 }
371 lttv_hooks_add(tmp, hook, hook_data);
372}
373
374
375/**
376 * Function to unregister a viewer's hook function which is used to
377 * set/update the traceset of the viewer.
378 * It will be called by the destructor of the viewer.
379 * @param hook hook function of the viewer.
380 * @param hook_data hook data associated with the hook function.
381 * @param main_win the main window the viewer belongs to.
382 */
383
41a76985 384void unreg_update_traceset(LttvHook hook, gpointer hook_data,
bca3b81f 385 MainWindow * main_win)
561f5852 386{
387 LttvAttributeValue value;
388 LttvHooks * tmp;
bca3b81f 389 g_assert(lttv_iattribute_find_by_path(main_win->attributes,
561f5852 390 "hooks/updatetraceset", LTTV_POINTER, &value));
391 tmp = (LttvHooks*)*(value.v_pointer);
392 if(tmp == NULL) return;
393 lttv_hooks_remove_data(tmp, hook, hook_data);
394}
395
396
397/**
398 * Function to register a hook function for a viewer to set/update its
399 * filter.
400 * It will be called by the constructor of the viewer.
401 * @param hook hook function of the viewer.
402 * @param hook_data hook data associated with the hook function.
403 * @param main_win the main window the viewer belongs to.
404 */
405
41a76985 406void reg_update_filter(LttvHook hook, gpointer hook_data,
bca3b81f 407 MainWindow *main_win)
561f5852 408{
409 LttvAttributeValue value;
410 LttvHooks * tmp;
bca3b81f 411 g_assert(lttv_iattribute_find_by_path(main_win->attributes,
561f5852 412 "hooks/updatefilter", LTTV_POINTER, &value));
413 tmp = (LttvHooks*)*(value.v_pointer);
414 if(tmp == NULL){
415 tmp = lttv_hooks_new();
416 *(value.v_pointer) = tmp;
417 }
418 lttv_hooks_add(tmp, hook, hook_data);
419}
420
421
422/**
423 * Function to unregister a viewer's hook function which is used to
424 * set/update the filter of the viewer.
425 * It will be called by the destructor of the viewer.
426 * @param hook hook function of the viewer.
427 * @param hook_data hook data associated with the hook function.
428 * @param main_win the main window the viewer belongs to.
429 */
430
41a76985 431void unreg_update_filter(LttvHook hook, gpointer hook_data,
bca3b81f 432 MainWindow * main_win)
561f5852 433{
434 LttvAttributeValue value;
435 LttvHooks * tmp;
bca3b81f 436 g_assert(lttv_iattribute_find_by_path(main_win->attributes,
561f5852 437 "hooks/updatefilter", LTTV_POINTER, &value));
438 tmp = (LttvHooks*)*(value.v_pointer);
439 if(tmp == NULL) return;
440 lttv_hooks_remove_data(tmp, hook, hook_data);
441}
442
443
444/**
445 * Function to register a hook function for a viewer to set/update its
446 * current time.
447 * It will be called by the constructor of the viewer.
448 * @param hook hook function of the viewer.
449 * @param hook_data hook data associated with the hook function.
450 * @param main_win the main window the viewer belongs to.
451 */
452
41a76985 453void reg_update_current_time(LttvHook hook, gpointer hook_data,
bca3b81f 454 MainWindow *main_win)
561f5852 455{
456 LttvAttributeValue value;
457 LttvHooks * tmp;
bca3b81f 458 g_assert(lttv_iattribute_find_by_path(main_win->current_tab->attributes,
561f5852 459 "hooks/updatecurrenttime", LTTV_POINTER, &value));
460 tmp = (LttvHooks*)*(value.v_pointer);
461 if(tmp == NULL){
462 tmp = lttv_hooks_new();
463 *(value.v_pointer) = tmp;
464 }
465 lttv_hooks_add(tmp, hook, hook_data);
466}
467
468
469/**
470 * Function to unregister a viewer's hook function which is used to
471 * set/update the current time of the viewer.
472 * It will be called by the destructor of the viewer.
473 * @param hook hook function of the viewer.
474 * @param hook_data hook data associated with the hook function.
475 * @param main_win the main window the viewer belongs to.
476 */
477
41a76985 478void unreg_update_current_time(LttvHook hook, gpointer hook_data,
bca3b81f 479 MainWindow * main_win)
561f5852 480{
481 LttvAttributeValue value;
482 LttvHooks * tmp;
bca3b81f 483 g_assert(lttv_iattribute_find_by_path(main_win->current_tab->attributes,
561f5852 484 "hooks/updatecurrenttime", LTTV_POINTER, &value));
485 tmp = (LttvHooks*)*(value.v_pointer);
486 if(tmp == NULL) return;
487 lttv_hooks_remove_data(tmp, hook, hook_data);
488}
489
490
202f6c8f 491/**
492 * Function to register a hook function for a viewer to show
493 *the content of the viewer.
494 * It will be called by the constructor of the viewer.
495 * @param hook hook function of the viewer.
496 * @param hook_data hook data associated with the hook function.
497 * @param main_win the main window the viewer belongs to.
498 */
499
500void reg_show_viewer(LttvHook hook, gpointer hook_data,
501 MainWindow *main_win)
502{
503 LttvAttributeValue value;
504 LttvHooks * tmp;
505 g_assert(lttv_iattribute_find_by_path(main_win->current_tab->attributes,
506 "hooks/showviewer", LTTV_POINTER, &value));
507 tmp = (LttvHooks*)*(value.v_pointer);
508 if(tmp == NULL){
509 tmp = lttv_hooks_new();
510 *(value.v_pointer) = tmp;
511 }
512 lttv_hooks_add(tmp, hook, hook_data);
513}
514
515
516/**
517 * Function to unregister a viewer's hook function which is used to
518 * show the content of the viewer..
519 * It will be called by the destructor of the viewer.
520 * @param hook hook function of the viewer.
521 * @param hook_data hook data associated with the hook function.
522 * @param main_win the main window the viewer belongs to.
523 */
524
525void unreg_show_viewer(LttvHook hook, gpointer hook_data,
526 MainWindow * main_win)
527{
528 LttvAttributeValue value;
529 LttvHooks * tmp;
530 g_assert(lttv_iattribute_find_by_path(main_win->current_tab->attributes,
531 "hooks/showviewer", LTTV_POINTER, &value));
532 tmp = (LttvHooks*)*(value.v_pointer);
533 if(tmp == NULL) return;
534 lttv_hooks_remove_data(tmp, hook, hook_data);
535}
536
537
538/**
539 * Function to show each viewer in the current tab.
540 * It will be called by main window after it called process_traceset
541 * @param main_win the main window the viewer belongs to.
542 */
543
544void show_viewer(MainWindow *main_win)
545{
546 LttvAttributeValue value;
547 LttvHooks * tmp;
548 g_assert(lttv_iattribute_find_by_path(main_win->current_tab->attributes,
549 "hooks/showviewer", LTTV_POINTER, &value));
550 tmp = (LttvHooks*)*(value.v_pointer);
551 if(tmp == NULL) return;
552 lttv_hooks_call(tmp, NULL);
553}
554
555
561f5852 556/**
557 * Function to set the focused pane (viewer).
558 * It will be called by a viewer's signal handle associated with
559 * the grab_focus signal
560 * @param main_win the main window the viewer belongs to.
561 * @param paned a pointer to a pane where the viewer is contained.
562 */
563
41a76985 564void set_focused_pane(MainWindow *main_win, gpointer paned)
561f5852 565{
daecc161 566 gtk_multi_vpaned_set_focus((GtkWidget*)main_win->current_tab->multi_vpaned,paned);
561f5852 567}
568
569
570/**
571 * Function to register a hook function for a viewer to set/update the
572 * dividor of the hpane.
573 * It will be called by the constructor of the viewer.
574 * @param hook hook function of the viewer.
575 * @param hook_data hook data associated with the hook function.
576 * @param main_win the main window the viewer belongs to.
577 */
578
41a76985 579void reg_update_dividor(LttvHook hook, gpointer hook_data,
bca3b81f 580 MainWindow *main_win)
561f5852 581{
582 LttvAttributeValue value;
583 LttvHooks * tmp;
bca3b81f 584 g_assert(lttv_iattribute_find_by_path(main_win->current_tab->attributes,
561f5852 585 "hooks/hpanedividor", LTTV_POINTER, &value));
586 tmp = (LttvHooks*)*(value.v_pointer);
587 if(tmp == NULL){
588 tmp = lttv_hooks_new();
589 *(value.v_pointer) = tmp;
590 }
591 lttv_hooks_add(tmp, hook, hook_data);
592}
593
594
595/**
596 * Function to unregister a viewer's hook function which is used to
597 * set/update hpane's dividor of the viewer.
598 * It will be called by the destructor of the viewer.
599 * @param hook hook function of the viewer.
600 * @param hook_data hook data associated with the hook function.
601 * @param main_win the main window the viewer belongs to.
602 */
603
41a76985 604void unreg_update_dividor(LttvHook hook, gpointer hook_data,
bca3b81f 605 MainWindow *main_win)
561f5852 606{
607 LttvAttributeValue value;
608 LttvHooks * tmp;
bca3b81f 609 g_assert(lttv_iattribute_find_by_path(main_win->current_tab->attributes,
561f5852 610 "hooks/hpanedividor", LTTV_POINTER, &value));
611 tmp = (LttvHooks*)*(value.v_pointer);
612 if(tmp == NULL) return;
613 lttv_hooks_remove_data(tmp, hook, hook_data);
614}
615
616
617/**
618 * Function to set the position of the hpane's dividor (viewer).
619 * It will be called by a viewer's signal handle associated with
620 * the motion_notify_event event/signal
621 * @param main_win the main window the viewer belongs to.
622 * @param position position of the hpane's dividor.
623 */
624
41a76985 625void set_hpane_dividor(MainWindow *main_win, gint position)
561f5852 626{
627 LttvAttributeValue value;
628 LttvHooks * tmp;
bca3b81f 629 g_assert(lttv_iattribute_find_by_path(main_win->current_tab->attributes,
561f5852 630 "hooks/hpanedividor", LTTV_POINTER, &value));
631 tmp = (LttvHooks*)*(value.v_pointer);
632 if(tmp == NULL) return;
633 lttv_hooks_call(tmp, &position);
634}
635
636
637/**
638 * Function to process traceset. It will call lttv_process_trace,
639 * each view will call this api to get events.
640 * @param main_win the main window the viewer belongs to.
641 * @param start the start time of the first event to be processed.
642 * @param end the end time of the last event to be processed.
643 */
644
41a76985 645void process_traceset_api(MainWindow *main_win, LttTime start,
646 LttTime end, unsigned maxNumEvents)
561f5852 647{
716e4367 648 lttv_process_traceset_seek_time(main_win->current_tab->traceset_info->
649 traceset_context, start);
650 lttv_process_traceset(main_win->current_tab->traceset_info->
651 traceset_context, end, maxNumEvents);
561f5852 652}
653
654/**
655 * Function to add hooks into the context of a traceset,
656 * before reading events from traceset, viewer will call this api to
657 * register hooks
658 * @param main_win the main window the viewer belongs to.
659 * @param LttvHooks hooks to be registered.
660 */
661
41a76985 662void context_add_hooks_api(MainWindow *main_win ,
663 LttvHooks *before_traceset,
664 LttvHooks *after_traceset,
665 LttvHooks *check_trace,
666 LttvHooks *before_trace,
667 LttvHooks *after_trace,
668 LttvHooks *check_tracefile,
669 LttvHooks *before_tracefile,
670 LttvHooks *after_tracefile,
671 LttvHooks *check_event,
672 LttvHooks *before_event,
673 LttvHooks *after_event)
561f5852 674{
f7afe191 675 LttvTracesetContext * tsc =
716e4367 676 LTTV_TRACESET_CONTEXT(main_win->current_tab->traceset_info->
677 traceset_context);
561f5852 678 lttv_traceset_context_add_hooks(tsc,before_traceset,after_traceset,
679 check_trace,before_trace,after_trace,
680 check_tracefile,before_tracefile,after_tracefile,
681 check_event,before_event, after_event);
682}
683
684
685/**
686 * Function to remove hooks from the context of a traceset,
687 * before reading events from traceset, viewer will call this api to
688 * unregister hooks
689 * @param main_win the main window the viewer belongs to.
690 * @param LttvHooks hooks to be registered.
691 */
692
41a76985 693void context_remove_hooks_api(MainWindow *main_win ,
694 LttvHooks *before_traceset,
695 LttvHooks *after_traceset,
696 LttvHooks *check_trace,
697 LttvHooks *before_trace,
698 LttvHooks *after_trace,
699 LttvHooks *check_tracefile,
700 LttvHooks *before_tracefile,
701 LttvHooks *after_tracefile,
702 LttvHooks *check_event,
703 LttvHooks *before_event,
704 LttvHooks *after_event)
561f5852 705{
f7afe191 706 LttvTracesetContext * tsc =
716e4367 707 LTTV_TRACESET_CONTEXT(main_win->current_tab->traceset_info->traceset_context);
561f5852 708 lttv_traceset_context_remove_hooks(tsc,before_traceset,after_traceset,
709 check_trace,before_trace,after_trace,
710 check_tracefile,before_tracefile,after_tracefile,
711 check_event,before_event, after_event);
712}
f735c59a 713
714
6b1d3120 715/**
716 * Function to add/remove event hooks for state
717 * @param main_win the main window the viewer belongs to.
718 */
719
41a76985 720void state_add_event_hooks_api(MainWindow *main_win )
6b1d3120 721{
f7afe191 722 lttv_state_add_event_hooks(
716e4367 723 (LttvTracesetState*)main_win->current_tab->traceset_info->traceset_context);
6b1d3120 724}
725
41a76985 726void state_remove_event_hooks_api(MainWindow *main_win )
6b1d3120 727{
f7afe191 728 lttv_state_remove_event_hooks(
716e4367 729 (LttvTracesetState*)main_win->current_tab->traceset_info->traceset_context);
6b1d3120 730}
731
732
733/**
734 * Function to add/remove event hooks for stats
735 * @param main_win the main window the viewer belongs to.
736 */
737
41a76985 738void stats_add_event_hooks_api(MainWindow *main_win )
6b1d3120 739{
f7afe191 740 lttv_stats_add_event_hooks(
716e4367 741 (LttvTracesetStats*)main_win->current_tab->traceset_info->traceset_context);
6b1d3120 742}
743
41a76985 744void stats_remove_event_hooks_api(MainWindow *main_win )
6b1d3120 745{
f7afe191 746 lttv_stats_remove_event_hooks(
716e4367 747 (LttvTracesetStats*)main_win->current_tab->traceset_info->traceset_context);
6b1d3120 748}
749
750/**
751 * Function to get the stats of the traceset
752 * @param main_win the main window the viewer belongs to.
753 */
754
41a76985 755LttvTracesetStats* get_traceset_stats_api(MainWindow *main_win)
6b1d3120 756{
716e4367 757 return main_win->current_tab->traceset_info->traceset_context;
6b1d3120 758}
This page took 0.054215 seconds and 4 git commands to generate.