fixed creation/destroy of main window symmetry
[lttv.git] / ltt / branches / poly / lttv / modules / gui / lttvwindow / lttvwindow / viewer.h
... / ...
CommitLineData
1/* This file is part of the Linux Trace Toolkit Graphic User Interface
2 * Copyright (C) 2003-2004 Xiangxiu Yang, Mathieu Desnoyers
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/*
20This file is what every viewer plugin writer should refer to.
21
22
23Module Related API
24
25A viewer plugin is, before anything, a plugin. As a dynamically loadable
26module, it thus has an init and a destroy function called whenever it is
27loaded/initialized and unloaded/destroyed. A graphical module depends on
28lttvwindow for construction of its viewer instances. In order to achieve this,
29it must register its constructor function to the main window along with
30button description or text menu entry description. A module keeps a list of
31every viewer that currently sits in memory so it can destroy them before the
32module gets unloaded/destroyed.
33
34The contructor registration to the main window adds button and menu entry
35to each main window, thus allowing instanciation of viewers.
36
37
38Main Window
39
40The main window is a container that offers menus, buttons and a notebook. Some
41of those menus and buttons are part of the core of the main window, others
42are dynamically added and removed when modules are loaded/unloaded.
43
44The notebook contains as much tabs as wanted. Each tab is linked with a
45set of traces (traceset). Each trace contains many tracefiles (one per cpu).
46A trace corresponds to a kernel being traced. A traceset corresponds to
47many traces read together. The time span of a traceset goes from the
48earliest start of all the traces to the latest end of all the traces.
49
50Inside each tab are added the viewers. When they interact with the main
51window through the lttvwindow API, they affect the other viewers located
52in the same tab as they are.
53
54The insertion of many viewers in a tab permits a quick look at all the
55information wanted in a glance. The main window does merge the read requests
56from all the viewers in the same tab in a way that every viewer will get exactly
57the events it asked for, while the event reading loop and state update are
58shared. It improves performance of events delivery to the viewers.
59
60
61
62Viewer Instance Related API
63
64The lifetime of a viewer is as follows. The viewer constructor function is
65called each time an instance view is created (one subwindow of this viewer
66type is created by the user either by clicking on the menu item or the button
67corresponding to the viewer). Thereafter, the viewer gets hooks called for
68different purposes by the window containing it. These hooks are detailed
69below. It also has to deal with GTK Events. Finally, it can be destructed by
70having its top level widget unreferenced by the main window or by any
71GTK Event causing a "destroy-event" signal on the its top widget. Another
72possible way for it do be destroyed is if the module gets unloaded. The module
73unload function will have to emit a "destroy" signal on each top level widget
74of all instances of its viewers.
75
76
77Notices from Main Window
78
79time_window : This is the time interval visible on the viewer's tab. Every
80 viewer that cares about being synchronised by respect to the
81 time with other viewers should register to this notification.
82 They should redraw all or part of their display when this occurs.
83
84traceset : This notification is called whenever a trace is added/removed
85 from the traceset. As it affects all the data displayed by the
86 viewer, it sould redraw itself totally.
87
88filter : FIXME : describe..
89
90current_time: Being able to zoom nearer a specific time or highlight a specific
91 time on every viewer in synchronicity implies that the viewer
92 has to shown a visual sign over the drawing or select an event
93 when it receives this notice. It should also inform the main
94 window with the appropriate report API function when a user
95 selects a specific time as being the current time.
96
97dividor : This notice links the positions of the horizontal dividors
98 between the graphic display zone of every viewer and their Y axis,
99 typically showing processes, cpus, ...
100
101
102FIXME : Add background computation explanation here
103background_init: prepare for background computation (comes after show_end).
104process_trace for background: done in small chunks in gtk_idle, hooks called.
105background_end: remove the hooks and perhaps update the window.
106
107
108Reporting Changes to the Main Window
109
110In most cases, the enclosing window knows about updates such as described in the
111Notification section higher. There are a few cases, however, where updates are
112caused by actions known by a view instance. For example, clicking in a view may
113update the current time; all viewers within the same window must be told about
114the new current time to change the currently highlighted time point. A viewer
115reports such events by calling lttvwindow_report_current_time on its lttvwindow.
116The lttvwindow will consequently call current_time_notify for each of its
117contained viewers.
118
119
120Available report methods are :
121
122lttvwindow_report_status : reports the text of the status bar.
123lttvwindow_report_time_window : reports the new time window.
124lttvwindow_report_current_time : reports the new current time.
125lttvwindow_report_dividor : reports the new horizontal dividor's position.
126lttvwindow_report_focus : One on the widgets in the viewer has the keyboard's
127 focus from GTK.
128
129
130
131Requesting Events to Main Window
132
133Events can be requested by passing a EventsRequest structure to the main window.
134They will be delivered later when the next g_idle functions will be called.
135Event delivery is done by calling the event hook for this event ID, or the
136main event hooks. A pointer to the EventsRequest structure is passed as
137hook_data to the event hooks of the viewers.
138
139EventsRequest consists in
140- a pointer to the viewer specific data structure
141- a start timestamp or position
142- a stop_flag, ending the read process when set to TRUE
143- a end timestamp and/or position and/or number of events to read
144- hook lists to call for traceset/trace/tracefile begin and end, and for each
145 event (event hooks and event_by_id hooks).
146
147The main window will deliver events for every EventRequests it has pending
148through an algorithm that guarantee that all events requested, and only them,
149will be delivered to the viewer between the call of the tracefile_begin hooks
150and the call of the tracefile_end hooks.
151
152If a viewer wants to stop the event request at a certain point inside the event
153hooks, it has to set the stop_flag to TRUE and return TRUE from the hook
154function. Then return value will stop the process traceset. Then, the main
155window will look for the stop_flag and remove the EventRequests from its lists,
156calling the process_traceset_end for this request (it removes hooks from the
157context and calls the after hooks).
158
159It no stop_flag is rose, the end timestamp, end position or number of events to
160read has to be reached to determine the end of the request. Otherwise,
161the end of traceset does determine it.
162
163
164GTK Events
165
166Events and Signals
167
168GTK is quite different from the other graphical toolkits around there. The main
169difference resides in that there are many X Windows inside one GtkWindow,
170instead of just one. That means that X events are delivered by the glib main
171loop directly to the widget corresponding to the GdkWindow affected by the X
172event.
173
174Event delivery to a widget emits a signal on that widget. Then, if a handler
175is connected to this widget's signal, it will be executed. There are default
176handlers for signals, connected at class instantiation time. There is also
177the possibility to connect other handlers to these signals, which is what
178should be done in most cases when a viewer needs to interact with X in any
179way.
180
181
182
183Signal emission and propagation is described there :
184
185http://www.gtk.org/tutorial/sec-signalemissionandpropagation.html
186
187For further information on the GTK main loop (now a wrapper over glib main loop)
188see :
189
190http://developer.gnome.org/doc/API/2.0/gtk/gtk-General.html
191http://developer.gnome.org/doc/API/2.0/glib/glib-The-Main-Event-Loop.html
192
193
194For documentation on event handling in GTK/GDK, see :
195
196http://developer.gnome.org/doc/API/2.0/gdk/gdk-Events.html
197http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html
198
199
200Signals can be connected to handlers, emitted, propagated, blocked,
201stopped. See :
202
203http://developer.gnome.org/doc/API/2.0/gobject/gobject-Signals.html
204
205
206
207
208The "expose_event"
209
210Provides the exposed region in the GdkEventExpose structure.
211
212There are two ways of dealing with exposures. The first one is to directly draw
213on the screen and the second one is to draw in a pixmap buffer, and then to
214update the screen when necessary.
215
216In the first case, the expose event will be responsible for registering hooks to
217process_traceset and require time intervals to the main window. So, in this
218scenario, if a part of the screen is damaged, the trace has to be read to
219redraw the screen.
220
221In the second case, with a pixmap buffer, the expose handler is only responsible
222of showing the pixmap buffer on the screen. If the pixmap buffer has never
223been filled with a drawing, the expose handler may ask for it to be filled.
224
225The interest of using events request to the main window instead of reading the
226events directly from the trace comes from the fact that the main window
227does merge requests from the different viewers in the same tab so that the
228read loop and the state update is shared. As viewers will, in the common
229scenario, request the same events, only one pass through the trace that will
230call the right hooks for the right intervals will be done.
231
232When the traceset read is over for a events request, the traceset_end hook is
233called. It has the responsibility of finishing the drawing if some parts
234still need to be drawn and to show it on the screen (if the viewer uses a pixmap
235buffer).
236
237It can add dotted lines and such visual effects to enhance the user's
238experience.
239
240
241FIXME : explain other important events
242
243*/
244
245
246
247
248/*! \file viewer.h
249 * \brief API used by the graphical viewers to interact with their top window.
250 *
251 * Main window (lttvwindow module) is the place to contain and display viewers.
252 * Viewers (lttv plugins) interact with main window through this API.
253 * This header file should be included in each graphic module.
254 *
255 */
256
257#include <gtk/gtk.h>
258#include <ltt/ltt.h>
259#include <ltt/time.h>
260#include <lttv/hook.h>
261#include <lttv/tracecontext.h>
262#include <lttv/stats.h>
263#include <lttvwindow/common.h>
264//FIXME (not ready yet) #include <lttv/filter.h>
265
266
267/* Module Related API */
268
269
270/* constructor a the viewer */
271//FIXME explain LttvTracesetSelector and key
272typedef GtkWidget * (*lttvwindow_viewer_constructor)
273 (MainWindow * main_window, LttvTracesetSelector * s, char *key);
274
275
276/**
277 * Function to register a view constructor so that main window can generate
278 * a menu item and a toolbar item for the viewer in order to generate a new
279 * instance easily. A menu entry and toolbar item will be added to each main
280 * window.
281 *
282 * It should be called by init function of the module.
283 *
284 * @param menu_path path of the menu item. NULL : no menu entry.
285 * @param menu_text text of the menu item.
286 * @param pixmap Image shown on the toolbar item. NULL : no button.
287 * @param tooltip tooltip of the toolbar item.
288 * @param view_constructor constructor of the viewer.
289 */
290
291void lttvwindow_register_constructor
292 (char * menu_path,
293 char * menu_text,
294 char ** pixmap,
295 char * tooltip,
296 lttvwindow_viewer_constructor view_constructor);
297
298
299/**
300 * Function to unregister the viewer's constructor, release the space
301 * occupied by menu_path, menu_text, pixmap, tooltip and constructor of the
302 * viewer.
303 *
304 * It will be called when a module is unloaded.
305 *
306 * @param view_constructor constructor of the viewer.
307 */
308
309void lttvwindow_unregister_constructor
310 (lttvwindow_viewer_constructor view_constructor);
311
312
313
314
315/* Viewer Instance Related API */
316
317/**
318 * Structure used as hook_data for the time_window_notify hook.
319 */
320typedef struct _TimeWindowNotifyData {
321 TimeWindow *new_time_window;
322 TimeWindow *old_time_window;
323} TimeWindowNotifyData;
324
325
326/**
327 * Function to register a hook function that will be called by the main window
328 * when the time interval needs to be updated.
329 *
330 * This register function is typically called by the constructor of the viewer.
331 *
332 * @param main_win the main window the viewer belongs to.
333 * @param hook hook that sould be called by the main window when the time
334 * interval changes. This hook function takes a
335 * TimeWindowNotifyData* as call_data.
336 * @param hook_data hook data associated with the hook function. It will
337 * be typically a pointer to the viewer's data structure.
338 */
339
340void lttvwindow_register_time_window_notify(MainWindow *main_win,
341 LttvHook hook,
342 gpointer hook_data);
343
344
345/**
346 * Function to unregister the time_window notification hook.
347 *
348 * This unregister function is typically called by the destructor of the viewer.
349 *
350 * @param main_win the main window the viewer belongs to.
351 * @param hook hook that sould be called by the main window when the time
352 * interval changes. This hook function takes a
353 * TimeWindowNotifyData* as call_data.
354 * @param hook_data hook data associated with the hook function. It will
355 * be typically a pointer to the viewer's data structure.
356 */
357
358void lttvwindow_unregister_time_window_notify(MainWindow *main_win,
359 LttvHook hook,
360 gpointer hook_data);
361
362
363/**
364 * Function to register a hook function that will be called by the main window
365 * when the traceset is changed. That means that the viewer must redraw
366 * itself completely or check if it's affected by the particular change to the
367 * traceset.
368 *
369 * This register function is typically called by the constructor of the viewer.
370 *
371 * @param main_win the main window the viewer belongs to.
372 * @param hook hook that should be called whenever a change to the traceset
373 * occurs. The call_data of this hook is a NULL pointer.
374 * @param hook_data hook data associated with the hook function. It will
375 * be typically a pointer to the viewer's data structure.
376 */
377
378void lttvwindow_register_traceset_notify(MainWindow *main_win,
379 LttvHook hook,
380 gpointer hook_data);
381
382
383/**
384 * Function to unregister the traceset_notify hook.
385 *
386 * @param main_win the main window the viewer belongs to.
387 * @param hook hook that should be called whenever a change to the traceset
388 * occurs. The call_data of this hook is a NULL pointer.
389 * @param hook_data hook data associated with the hook function. It will
390 * be typically a pointer to the viewer's data structure.
391 */
392
393void lttvwindow_unregister_traceset_notify(MainWindow *main_win,
394 LttvHook hook,
395 gpointer hook_data);
396
397
398/**
399 * Function to register a hook function for a viewer to set/update its
400 * filter.
401 *
402 * FIXME : Add information about what a filter is as seen from a viewer and how
403 * to use it.
404 *
405 * This register function is typically called by the constructor of the viewer.
406 *
407 * @param main_win the main window the viewer belongs to.
408 * @param hook hook function called by the main window when a filter change
409 * occurs.
410 * @param hook_data hook data associated with the hook function. It will
411 * be typically a pointer to the viewer's data structure.
412 */
413
414void lttvwindow_register_filter_notify(MainWindow *main_win,
415 LttvHook hook,
416 gpointer hook_data);
417
418
419/**
420 * Function to unregister a viewer's hook function which is used to
421 * set/update the filter of the viewer.
422 *
423 * This unregistration is called by the destructor of the viewer.
424 *
425 * @param main_win the main window the viewer belongs to.
426 * @param hook hook function called by the main window when a filter change
427 * occurs.
428 * @param hook_data hook data associated with the hook function. It will
429 * be typically a pointer to the viewer's data structure.
430 */
431
432void lttvwindow_unregister_filter_notify(MainWindow * main_win,
433 LttvHook hook,
434 gpointer hook_data);
435
436
437/**
438 * Function to register a hook function for a viewer to set/update its
439 * current time.
440 *
441 * @param main_win the main window the viewer belongs to.
442 * @param hook hook function of the viewer that updates the current time. The
443 * call_data is a LttTime* representing the new current time.
444 * @param hook_data hook data associated with the hook function. It will
445 * be typically a pointer to the viewer's data structure.
446 */
447
448void lttvwindow_register_current_time_notify(MainWindow *main_win,
449 LttvHook hook,
450 gpointer hook_data);
451
452
453/**
454 * Function to unregister a viewer's hook function which is used to
455 * set/update the current time of the viewer.
456 * @param main_win the main window the viewer belongs to.
457 * @param hook hook function of the viewer that updates the current time. The
458 * call_data is a LttTime* representing the new current time.
459 * @param hook_data hook data associated with the hook function. It will
460 * be typically a pointer to the viewer's data structure.
461 */
462
463void lttvwindow_unregister_current_time_notify(MainWindow *main_win,
464 LttvHook hook,
465 gpointer hook_data);
466
467
468/**
469 * Function to register a hook function for a viewer to set/update the
470 * dividor of the hpane. It provides a way to make the horizontal
471 * dividors of all the viewers linked together.
472 *
473 * @param main_win the main window the viewer belongs to.
474 * @param hook hook function of the viewer that will be called whenever a
475 * dividor changes in another viewer. The call_data of this hook
476 * is a gint*. The value of the integer is the new position of the
477 * hpane dividor.
478 * @param hook_data hook data associated with the hook function. It will
479 * be typically a pointer to the viewer's data structure.
480 */
481
482void lttvwindow_register_dividor(MainWindow *main_win,
483 LttvHook hook,
484 gpointer hook_data);
485
486
487/**
488 * Function to unregister a viewer's hook function which is used to
489 * set/update hpane's dividor of the viewer.
490 *
491 * @param main_win the main window the viewer belongs to.
492 * @param hook hook function of the viewer that will be called whenever a
493 * dividor changes in another viewer. The call_data of this hook
494 * is a gint*. The value of the integer is the new position of the
495 * hpane dividor.
496 * @param hook_data hook data associated with the hook function. It will
497 * be typically a pointer to the viewer's data structure.
498 */
499
500void lttvwindow_unregister_dividor(MainWindow *main_win,
501 LttvHook hook,
502 gpointer hook_data);
503
504
505
506/**
507 * This method reports the information to show on the status bar in the
508 * main window.
509 *
510 * @param main_win the main window the viewer belongs to.
511 * @param info the message which will be shown in the status bar.
512 */
513
514void lttvwindow_report_status(MainWindow *main_win, const char *info);
515
516
517/**
518 * Function to set the time interval of the current tab.a
519 *
520 * @param main_win the main window the viewer belongs to.
521 * @param time_interval pointer to the time interval value.
522 */
523
524void lttvwindow_report_time_window(MainWindow *main_win,
525 const TimeWindow *time_window);
526
527/**
528 * Function to set the current time/event of the current tab.
529 * It will be called by a viewer's signal handle associated with
530 * the button-release-event signal
531 * @param main_win the main window the viewer belongs to.
532 * @param time a pointer where time is stored.
533 */
534
535void lttvwindow_report_current_time(MainWindow *main_win,
536 const LttTime *time);
537
538
539/**
540 * Function to set the position of the hpane's dividor (viewer).
541 * It will typically be called by a viewer's signal handle associated
542 * with the motion_notify_event event/signal.
543 *
544 * @param main_win the main window the viewer belongs to.
545 * @param position position of the hpane's dividor.
546 */
547
548void lttvwindow_report_dividor(MainWindow *main_win, gint position);
549
550/**
551 * Function to set the focused viewer of the tab.
552 * It will be called by a viewer's signal handle associated with
553 * the grab_focus signal of all widgets in the viewer.
554 *
555 * @param main_win the main window the viewer belongs to.
556 * @param top_widget the top widget containing all the other widgets of the
557 * viewer.
558 */
559void lttvwindow_report_focus(MainWindow *main_win,
560 GtkWidget *top_widget);
561
562
563
564/* Structure sent to the time request hook */
565 /* Value considered as empty */
566typedef struct _EventsRequest {
567 LttTime start_time, /* Unset : { 0, 0 } */
568 LttvTracesetContextPosition start_position, /* Unset : num_traces = 0 */
569 gboolean stop_flag, /* Continue:TRUE Stop:FALSE */
570 LttTime end_time, /* Unset : { 0, 0 } */
571 guint num_events, /* Unset : G_MAXUINT */
572 LttvTracesetContextPosition end_position, /* Unset : num_traces = 0 */
573 LttvHooks *before_traceset, /* Unset : NULL */
574 LttvHooks *before_trace, /* Unset : NULL */
575 LttvHooks *before_tracefile, /* Unset : NULL */
576 LttvHooks *event, /* Unset : NULL */
577 LttvHooksById *event_by_id, /* Unset : NULL */
578 LttvHooks *after_tracefile, /* Unset : NULL */
579 LttvHooks *after_trace, /* Unset : NULL */
580 LttvHooks *after_traceset /* Unset : NULL */
581} EventsRequest;
582
583
584/**
585 * Function to request data in a specific time interval to the main window. The
586 * time request servicing is differed until the glib idle functions are
587 * called.
588 *
589 * The viewer has to provide hooks that should be associated with the event
590 * request.
591 *
592 * Either start time or start position must be defined in a EventRequest
593 * structure for it to be valid.
594 *
595 * end_time, end_position and num_events can all be defined. The first one
596 * to occur will be used as end criterion.
597 *
598 * @param main_win the main window the viewer belongs to.
599 * @param events_requested the structure of request from.
600 */
601
602void lttvwindow_events_request(MainWindow *main_win,
603 EventsRequest events_request);
604
605/**
606 * Function to get the current time window of the current tab.
607 *
608 * @param main_win the main window the viewer belongs to.
609 * @return a pointer to the current tab's time interval.
610 */
611
612const TimeWindow *lttvwindow_get_time_window(MainWindow *main_win);
613
614
615/**
616 * Function to get the current time of the current tab.
617 *
618 * @param main_win the main window the viewer belongs to.
619 * @return a pointer to the current tab's current time.
620 */
621
622const LttTime *lttvwindow_get_current_time(MainWindow *main_win);
623
624
625/**
626 * Function to get the filter of the current tab.
627 * @param main_win, the main window the viewer belongs to.
628 * @param filter, a pointer to a filter.
629 */
630
631//FIXME
632typedef void lttv_filter;
633//FIXME
634const lttv_filter *lttvwindow_get_filter(MainWindow *main_win);
635
636
637/**
638 * Function to get the stats of the traceset
639 * It must be non const so the viewer can modify it.
640 * FIXME : a set/get pair of functions would be more appropriate here.
641 * @param main_win the main window the viewer belongs to.
642 * @return A pointer to Traceset statistics.
643 */
644
645LttvTracesetStats* lttvwindow_get_traceset_stats(MainWindow *main_win);
646
647/**
648 * Function to get the context of the traceset
649 * It must be non const so the viewer can add and remove hooks from it.
650 * @param main_win the main window the viewer belongs to.
651 * @return Context of the current tab.
652 */
653
654
655LttvTracesetContext* lttvwindow_get_traceset_context(MainWindow *main_win);
656
657
This page took 0.027173 seconds and 4 git commands to generate.