resourceview: add sanity check for irq exit event
[lttv.git] / trunk / lttv / lttv / modules / gui / resourceview / eventhooks.c
CommitLineData
9e01e6d4 1/* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 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
20/*****************************************************************************
21 * Hooks to be called by the main window *
22 *****************************************************************************/
23
24
25/* Event hooks are the drawing hooks called during traceset read. They draw the
26 * icons, text, lines and background color corresponding to the events read.
27 *
28 * Two hooks are used for drawing : before_schedchange and after_schedchange hooks. The
29 * before_schedchange is called before the state update that occurs with an event and
30 * the after_schedchange hook is called after this state update.
31 *
32 * The before_schedchange hooks fulfill the task of drawing the visible objects that
33 * corresponds to the data accumulated by the after_schedchange hook.
34 *
35 * The after_schedchange hook accumulates the data that need to be shown on the screen
36 * (items) into a queue. Then, the next before_schedchange hook will draw what that
37 * queue contains. That's the Right Way (TM) of drawing items on the screen,
38 * because we need to draw the background first (and then add icons, text, ...
39 * over it), but we only know the length of a background region once the state
40 * corresponding to it is over, which happens to be at the next before_schedchange
41 * hook.
42 *
43 * We also have a hook called at the end of a chunk to draw the information left
44 * undrawn in each process queue. We use the current time as end of
45 * line/background.
46 */
47
48#ifdef HAVE_CONFIG_H
49#include <config.h>
50#endif
51
52//#define PANGO_ENABLE_BACKEND
53#include <gtk/gtk.h>
54#include <gdk/gdk.h>
55#include <glib.h>
56#include <assert.h>
57#include <string.h>
58#include <stdio.h>
43ed82b5 59#include <inttypes.h>
9e01e6d4 60
61//#include <pango/pango.h>
62
63#include <ltt/event.h>
64#include <ltt/time.h>
9e01e6d4 65#include <ltt/trace.h>
66
67#include <lttv/lttv.h>
68#include <lttv/hook.h>
69#include <lttv/state.h>
70#include <lttvwindow/lttvwindow.h>
71#include <lttvwindow/lttvwindowtraces.h>
72#include <lttvwindow/support.h>
73
74
75#include "eventhooks.h"
76#include "cfv.h"
77#include "processlist.h"
78#include "drawing.h"
79
80
81#define MAX_PATH_LEN 256
3d27be8a 82#define STATE_LINE_WIDTH 6
9e01e6d4 83#define COLLISION_POSITION(height) (((height - STATE_LINE_WIDTH)/2) -3)
84
85extern GSList *g_legend_list;
86
87
88/* Action to do when background computation completed.
89 *
90 * Wait for all the awaited computations to be over.
91 */
92
93static gint background_ready(void *hook_data, void *call_data)
94{
67f72973 95 ControlFlowData *resourceview_data = (ControlFlowData *)hook_data;
9e01e6d4 96
67f72973 97 resourceview_data->background_info_waiting--;
9e01e6d4 98
67f72973 99 if(resourceview_data->background_info_waiting == 0) {
9e01e6d4 100 g_message("control flow viewer : background computation data ready.");
101
67f72973 102 drawing_clear(resourceview_data->drawing);
103 processlist_clear(resourceview_data->process_list);
9e01e6d4 104 gtk_widget_set_size_request(
67f72973 105 resourceview_data->drawing->drawing_area,
106 -1, processlist_get_height(resourceview_data->process_list));
107 redraw_notify(resourceview_data, NULL);
9e01e6d4 108 }
109
110 return 0;
111}
112
113
114/* Request background computation. Verify if it is in progress or ready first.
115 * Only for each trace in the tab's traceset.
116 */
67f72973 117static void request_background_data(ControlFlowData *resourceview_data)
9e01e6d4 118{
119 LttvTracesetContext * tsc =
67f72973 120 lttvwindow_get_traceset_context(resourceview_data->tab);
9e01e6d4 121 gint num_traces = lttv_traceset_number(tsc->ts);
122 gint i;
123 LttvTrace *trace;
124 LttvTraceState *tstate;
125
126 LttvHooks *background_ready_hook =
127 lttv_hooks_new();
67f72973 128 lttv_hooks_add(background_ready_hook, background_ready, resourceview_data,
9e01e6d4 129 LTTV_PRIO_DEFAULT);
67f72973 130 resourceview_data->background_info_waiting = 0;
9e01e6d4 131
132 for(i=0;i<num_traces;i++) {
133 trace = lttv_traceset_get(tsc->ts, i);
134 tstate = LTTV_TRACE_STATE(tsc->traces[i]);
135
136 if(lttvwindowtraces_get_ready(g_quark_from_string("state"),trace)==FALSE
137 && !tstate->has_precomputed_states) {
138
139 if(lttvwindowtraces_get_in_progress(g_quark_from_string("state"),
140 trace) == FALSE) {
141 /* We first remove requests that could have been done for the same
142 * information. Happens when two viewers ask for it before servicing
143 * starts.
144 */
145 if(!lttvwindowtraces_background_request_find(trace, "state"))
146 lttvwindowtraces_background_request_queue(
67f72973 147 main_window_get_widget(resourceview_data->tab), trace, "state");
148 lttvwindowtraces_background_notify_queue(resourceview_data,
9e01e6d4 149 trace,
150 ltt_time_infinite,
151 NULL,
152 background_ready_hook);
67f72973 153 resourceview_data->background_info_waiting++;
9e01e6d4 154 } else { /* in progress */
155
67f72973 156 lttvwindowtraces_background_notify_current(resourceview_data,
9e01e6d4 157 trace,
158 ltt_time_infinite,
159 NULL,
160 background_ready_hook);
67f72973 161 resourceview_data->background_info_waiting++;
9e01e6d4 162 }
163 } else {
164 /* Data ready. By its nature, this viewer doesn't need to have
165 * its data ready hook called there, because a background
166 * request is always linked with a redraw.
167 */
168 }
9e01e6d4 169 }
170
171 lttv_hooks_destroy(background_ready_hook);
172}
173
174
9e01e6d4 175/**
176 * Event Viewer's constructor hook
177 *
178 * This constructor is given as a parameter to the menuitem and toolbar button
179 * registration. It creates the list.
180 * @param tab A pointer to the parent tab.
181 * @return The widget created.
182 */
183GtkWidget *
58a9b31b 184h_resourceview(LttvPlugin *plugin)
9e01e6d4 185{
186 LttvPluginTab *ptab = LTTV_PLUGIN_TAB(plugin);
187 Tab *tab = ptab->tab;
188 g_info("h_guicontrolflow, %p", tab);
67f72973 189 ControlFlowData *resourceview_data = resourceview(ptab);
9e01e6d4 190
67f72973 191 resourceview_data->tab = tab;
9e01e6d4 192
193 // Unreg done in the GuiControlFlow_Destructor
194 lttvwindow_register_traceset_notify(tab,
195 traceset_notify,
67f72973 196 resourceview_data);
9e01e6d4 197
198 lttvwindow_register_time_window_notify(tab,
199 update_time_window_hook,
67f72973 200 resourceview_data);
9e01e6d4 201 lttvwindow_register_current_time_notify(tab,
202 update_current_time_hook,
67f72973 203 resourceview_data);
9e01e6d4 204 lttvwindow_register_redraw_notify(tab,
205 redraw_notify,
67f72973 206 resourceview_data);
9e01e6d4 207 lttvwindow_register_continue_notify(tab,
208 continue_notify,
67f72973 209 resourceview_data);
210 request_background_data(resourceview_data);
9e01e6d4 211
212
67f72973 213 return guicontrolflow_get_widget(resourceview_data) ;
9e01e6d4 214
215}
216
217void legend_destructor(GtkWindow *legend)
218{
219 g_legend_list = g_slist_remove(g_legend_list, legend);
220}
221
222/* Create a popup legend */
223GtkWidget *
224h_legend(LttvPlugin *plugin)
225{
226 LttvPluginTab *ptab = LTTV_PLUGIN_TAB(plugin);
227 Tab *tab = ptab->tab;
228 g_info("h_legend, %p", tab);
229
230 GtkWindow *legend = GTK_WINDOW(gtk_window_new(GTK_WINDOW_TOPLEVEL));
231
232 g_legend_list = g_slist_append(
233 g_legend_list,
234 legend);
235
236 g_object_set_data_full(
237 G_OBJECT(legend),
238 "legend",
239 legend,
240 (GDestroyNotify)legend_destructor);
241
242 gtk_window_set_title(legend, "Control Flow View Legend");
243
244 GtkWidget *pixmap = create_pixmap(GTK_WIDGET(legend), "lttv-color-list.png");
245
9e01e6d4 246 gtk_container_add(GTK_CONTAINER(legend), GTK_WIDGET(pixmap));
247
248 gtk_widget_show(GTK_WIDGET(pixmap));
249 gtk_widget_show(GTK_WIDGET(legend));
250
251
252 return NULL; /* This is a popup window */
253}
254
255
256int event_selected_hook(void *hook_data, void *call_data)
257{
67f72973 258 ControlFlowData *resourceview_data = (ControlFlowData*) hook_data;
9e01e6d4 259 guint *event_number = (guint*) call_data;
260
261 g_debug("DEBUG : event selected by main window : %u", *event_number);
262
263 return 0;
264}
265
d3d99fde 266static void cpu_set_line_color(PropertiesLine *prop_line, LttvCPUState *s)
598026ba 267{
1b171947 268 GQuark present_state;
269
270 if(s->mode_stack->len == 0)
271 present_state = LTTV_CPU_UNKNOWN;
272 else
273 present_state = ((GQuark*)s->mode_stack->data)[s->mode_stack->len-1];
d3d99fde 274
201fcc15 275 if(present_state == LTTV_CPU_IDLE) {
598026ba 276 prop_line->color = drawing_colors_cpu[COL_CPU_IDLE];
277 }
278 else if(present_state == LTTV_CPU_BUSY) {
279 prop_line->color = drawing_colors_cpu[COL_CPU_BUSY];
280 }
281 else if(present_state == LTTV_CPU_IRQ) {
282 prop_line->color = drawing_colors_cpu[COL_CPU_IRQ];
283 }
d34141ca 284 else if(present_state == LTTV_CPU_SOFT_IRQ) {
285 prop_line->color = drawing_colors_cpu[COL_CPU_SOFT_IRQ];
286 }
d3d99fde 287 else if(present_state == LTTV_CPU_TRAP) {
288 prop_line->color = drawing_colors_cpu[COL_CPU_TRAP];
201fcc15 289 } else {
290 prop_line->color = drawing_colors_cpu[COL_CPU_UNKNOWN];
d3d99fde 291 }
598026ba 292}
9e01e6d4 293
8743690d 294static void irq_set_line_color(PropertiesLine *prop_line, LttvIRQState *s)
295{
1b171947 296 GQuark present_state;
297 if(s->mode_stack->len == 0)
298 present_state = LTTV_IRQ_UNKNOWN;
299 else
300 present_state = ((GQuark*)s->mode_stack->data)[s->mode_stack->len-1];
8743690d 301
1b171947 302 if(present_state == LTTV_IRQ_IDLE) {
8743690d 303 prop_line->color = drawing_colors_irq[COL_IRQ_IDLE];
304 }
305 else if(present_state == LTTV_IRQ_BUSY) {
306 prop_line->color = drawing_colors_irq[COL_IRQ_BUSY];
307 }
1b171947 308 else {
309 prop_line->color = drawing_colors_irq[COL_IRQ_UNKNOWN];
310 }
8743690d 311}
312
0305fe77 313static void soft_irq_set_line_color(PropertiesLine *prop_line, LttvSoftIRQState *s)
314{
315 GQuark present_state;
67c73bb3 316 if(s->running)
0305fe77 317 prop_line->color = drawing_colors_soft_irq[COL_SOFT_IRQ_BUSY];
67c73bb3 318 else if(s->pending)
319 prop_line->color = drawing_colors_soft_irq[COL_SOFT_IRQ_PENDING];
320 else
321 prop_line->color = drawing_colors_soft_irq[COL_SOFT_IRQ_IDLE];
0305fe77 322}
323
38726a78 324static void trap_set_line_color(PropertiesLine *prop_line, LttvTrapState *s)
325{
326 GQuark present_state;
327 if(s->running == 0)
328 prop_line->color = drawing_colors_trap[COL_TRAP_IDLE];
329 else
330 prop_line->color = drawing_colors_trap[COL_TRAP_BUSY];
331}
332
20d16f82 333static void bdev_set_line_color(PropertiesLine *prop_line, LttvBdevState *s)
334{
1b171947 335 GQuark present_state;
23e59a12 336 if(s == 0 || s->mode_stack->len == 0)
1b171947 337 present_state = LTTV_BDEV_UNKNOWN;
338 else
339 present_state = ((GQuark*)s->mode_stack->data)[s->mode_stack->len-1];
20d16f82 340
1b171947 341 if(present_state == LTTV_BDEV_IDLE) {
20d16f82 342 prop_line->color = drawing_colors_bdev[COL_BDEV_IDLE];
343 }
344 else if(present_state == LTTV_BDEV_BUSY_READING) {
345 prop_line->color = drawing_colors_bdev[COL_BDEV_BUSY_READING];
346 }
347 else if(present_state == LTTV_BDEV_BUSY_WRITING) {
348 prop_line->color = drawing_colors_bdev[COL_BDEV_BUSY_WRITING];
349 }
1b171947 350 else {
351 prop_line->color = drawing_colors_bdev[COL_BDEV_UNKNOWN];
352 }
20d16f82 353}
354
9e01e6d4 355/* before_schedchange_hook
356 *
357 * This function basically draw lines and icons. Two types of lines are drawn :
358 * one small (3 pixels?) representing the state of the process and the second
359 * type is thicker (10 pixels?) representing on which CPU a process is running
360 * (and this only in running state).
361 *
362 * Extremums of the lines :
363 * x_min : time of the last event context for this process kept in memory.
364 * x_max : time of the current event.
365 * y : middle of the process in the process list. The process is found in the
366 * list, therefore is it's position in pixels.
367 *
368 * The choice of lines'color is defined by the context of the last event for this
369 * process.
370 */
371
372
373int before_schedchange_hook(void *hook_data, void *call_data)
374{
dd455fb8 375 LttvTraceHook *th = (LttvTraceHook*)hook_data;
376 EventsRequest *events_request = (EventsRequest*)th->hook_data;
67f72973 377 ControlFlowData *resourceview_data = events_request->viewer_data;
9e01e6d4 378
379 LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
380
381 LttvTracefileState *tfs = (LttvTracefileState *)call_data;
382 LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
383
384 LttEvent *e;
385 e = ltt_tracefile_get_event(tfc->tf);
386 gint target_pid_saved = tfc->target_pid;
387
388 LttTime evtime = ltt_event_time(e);
67f72973 389 LttvFilter *filter = resourceview_data->filter;
58a9b31b 390
9e01e6d4 391 /* we are in a schedchange, before the state update. We must draw the
392 * items corresponding to the state before it changes : now is the right
393 * time to do it.
394 */
395
396 guint pid_out;
397 guint pid_in;
ca5c76ed 398 pid_out = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 0));
399 pid_in = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 1));
67f72973 400// TODO: can't we reenable this? pmf
44ffb95f 401// if(pid_in != 0 && pid_out != 0) {
402// /* not a transition to/from idle */
403// return 0;
404// }
c4e6f4dc 405
9e01e6d4 406 tfc->target_pid = pid_out;
58a9b31b 407
67f72973 408 guint cpu = tfs->cpu;
9e01e6d4 409
67f72973 410 guint trace_num = ts->parent.index;
411 /* Add process to process list (if not present) */
412 guint pl_height = 0;
413 HashedResourceData *hashed_process_data = NULL;
414 ProcessList *process_list = resourceview_data->process_list;
9e01e6d4 415
67f72973 416 hashed_process_data = resourcelist_obtain_cpu(resourceview_data, trace_num, cpu);
417
418 /* Now, the process is in the state hash and our own process hash.
419 * We definitely can draw the items related to the ending state.
420 */
421
422 if(ltt_time_compare(hashed_process_data->next_good_time,
423 evtime) > 0)
424 {
425 if(hashed_process_data->x.middle_marked == FALSE) {
426
427 TimeWindow time_window =
428 lttvwindow_get_time_window(resourceview_data->tab);
9e01e6d4 429#ifdef EXTRA_CHECK
67f72973 430 if(ltt_time_compare(evtime, time_window.start_time) == -1
431 || ltt_time_compare(evtime, time_window.end_time) == 1)
432 return;
9e01e6d4 433#endif //EXTRA_CHECK
67f72973 434 Drawing_t *drawing = resourceview_data->drawing;
435 guint width = drawing->width;
436 guint x;
437 convert_time_to_pixels(
438 time_window,
439 evtime,
440 width,
441 &x);
442
443 /* Draw collision indicator */
444 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
445 gdk_draw_point(hashed_process_data->pixmap,
446 drawing->gc,
447 x,
448 COLLISION_POSITION(hashed_process_data->height));
449 hashed_process_data->x.middle_marked = TRUE;
450 }
451 } else {
452 TimeWindow time_window =
453 lttvwindow_get_time_window(resourceview_data->tab);
9e01e6d4 454#ifdef EXTRA_CHECK
67f72973 455 if(ltt_time_compare(evtime, time_window.start_time) == -1
9e01e6d4 456 || ltt_time_compare(evtime, time_window.end_time) == 1)
67f72973 457 return;
9e01e6d4 458#endif //EXTRA_CHECK
67f72973 459 Drawing_t *drawing = resourceview_data->drawing;
460 guint width = drawing->width;
461 guint x;
462 convert_time_to_pixels(
463 time_window,
464 evtime,
465 width,
466 &x);
9e01e6d4 467
67f72973 468 /* Jump over draw if we are at the same x position */
469 if(x == hashed_process_data->x.middle &&
470 hashed_process_data->x.middle_used)
471 {
472 if(hashed_process_data->x.middle_marked == FALSE) {
473 /* Draw collision indicator */
474 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
475 gdk_draw_point(hashed_process_data->pixmap,
476 drawing->gc,
477 x,
478 COLLISION_POSITION(hashed_process_data->height));
479 hashed_process_data->x.middle_marked = TRUE;
58a9b31b 480 }
67f72973 481 /* jump */
482 } else {
483 DrawContext draw_context;
9e01e6d4 484
67f72973 485 /* Now create the drawing context that will be used to draw
486 * items related to the last state. */
487 draw_context.drawable = hashed_process_data->pixmap;
488 draw_context.gc = drawing->gc;
489 draw_context.pango_layout = drawing->pango_layout;
490 draw_context.drawinfo.start.x = hashed_process_data->x.middle;
491 draw_context.drawinfo.end.x = x;
9e01e6d4 492
67f72973 493 draw_context.drawinfo.y.over = 1;
494 draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
495 draw_context.drawinfo.y.under = hashed_process_data->height;
9e01e6d4 496
67f72973 497 draw_context.drawinfo.start.offset.over = 0;
498 draw_context.drawinfo.start.offset.middle = 0;
499 draw_context.drawinfo.start.offset.under = 0;
500 draw_context.drawinfo.end.offset.over = 0;
501 draw_context.drawinfo.end.offset.middle = 0;
502 draw_context.drawinfo.end.offset.under = 0;
9e01e6d4 503
67f72973 504 {
505 /* Draw the line */
506 //PropertiesLine prop_line = prepare_s_e_line(process);
507 PropertiesLine prop_line;
508 prop_line.line_width = STATE_LINE_WIDTH;
509 prop_line.style = GDK_LINE_SOLID;
510 prop_line.y = MIDDLE;
511 cpu_set_line_color(&prop_line, tfs->cpu_state);
512 draw_line((void*)&prop_line, (void*)&draw_context);
9e01e6d4 513
67f72973 514 }
515 /* become the last x position */
516 hashed_process_data->x.middle = x;
517 hashed_process_data->x.middle_used = TRUE;
518 hashed_process_data->x.middle_marked = FALSE;
9e01e6d4 519
67f72973 520 /* Calculate the next good time */
521 convert_pixels_to_time(width, x+1, time_window,
522 &hashed_process_data->next_good_time);
523 }
9e01e6d4 524 }
525
67f72973 526 return 0;
9e01e6d4 527}
528
58a9b31b 529/* after_schedchange_hook
530 *
531 * The draw after hook is called by the reading API to have a
532 * particular event drawn on the screen.
533 * @param hook_data ControlFlowData structure of the viewer.
534 * @param call_data Event context.
535 *
536 * This function adds items to be drawn in a queue for each process.
537 *
538 */
539int after_schedchange_hook(void *hook_data, void *call_data)
9e01e6d4 540{
dd455fb8 541 LttvTraceHook *th = (LttvTraceHook*)hook_data;
542 EventsRequest *events_request = (EventsRequest*)th->hook_data;
67f72973 543 ControlFlowData *resourceview_data = events_request->viewer_data;
44ffb95f 544 LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
44ffb95f 545 LttvTracefileState *tfs = (LttvTracefileState *)call_data;
44ffb95f 546 LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
44ffb95f 547 LttEvent *e;
67f72973 548
44ffb95f 549 e = ltt_tracefile_get_event(tfc->tf);
550
67f72973 551 LttvFilter *filter = resourceview_data->filter;
44ffb95f 552 if(filter != NULL && filter->head != NULL)
553 if(!lttv_filter_tree_parse(filter->head,e,tfc->tf,
554 tfc->t_context->t,tfc,NULL,NULL))
555 return FALSE;
556
557 LttTime evtime = ltt_event_time(e);
558
44ffb95f 559 /* Add process to process list (if not present) */
560 LttvProcessState *process_in;
561 LttTime birth;
562 guint pl_height = 0;
563 HashedResourceData *hashed_process_data_in = NULL;
564
67f72973 565 ProcessList *process_list = resourceview_data->process_list;
44ffb95f 566
567 guint pid_in;
568 {
569 guint pid_out;
ca5c76ed 570 pid_out = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 0));
571 pid_in = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 1));
44ffb95f 572 }
573
574
575 /* Find process pid_in in the list... */
576 //process_in = lttv_state_find_process(ts, ANY_CPU, pid_in);
577 //process_in = tfs->process;
578 guint cpu = tfs->cpu;
44ffb95f 579 guint trace_num = ts->parent.index;
580 process_in = ts->running_process[cpu];
581 /* It should exist, because we are after the state update. */
582#ifdef EXTRA_CHECK
583 g_assert(process_in != NULL);
584#endif //EXTRA_CHECK
585 birth = process_in->creation_time;
586
67f72973 587 //hashed_process_data_in = processlist_get_process_data(process_list, cpuq, trace_num);
588 hashed_process_data_in = resourcelist_obtain_cpu(resourceview_data, trace_num, cpu);
589
44ffb95f 590 /* Set the current process */
591 process_list->current_hash_data[trace_num][process_in->cpu] =
592 hashed_process_data_in;
593
594 if(ltt_time_compare(hashed_process_data_in->next_good_time,
595 evtime) <= 0)
596 {
597 TimeWindow time_window =
67f72973 598 lttvwindow_get_time_window(resourceview_data->tab);
44ffb95f 599
600#ifdef EXTRA_CHECK
601 if(ltt_time_compare(evtime, time_window.start_time) == -1
602 || ltt_time_compare(evtime, time_window.end_time) == 1)
603 return;
604#endif //EXTRA_CHECK
67f72973 605 Drawing_t *drawing = resourceview_data->drawing;
44ffb95f 606 guint width = drawing->width;
607 guint new_x;
608
609 convert_time_to_pixels(
610 time_window,
611 evtime,
612 width,
613 &new_x);
614
615 if(hashed_process_data_in->x.middle != new_x) {
616 hashed_process_data_in->x.middle = new_x;
617 hashed_process_data_in->x.middle_used = FALSE;
618 hashed_process_data_in->x.middle_marked = FALSE;
619 }
620 }
58a9b31b 621 return 0;
622}
9e01e6d4 623
43ed82b5 624int before_execmode_hook_irq(void *hook_data, void *call_data);
625int before_execmode_hook_soft_irq(void *hook_data, void *call_data);
626int before_execmode_hook_trap(void *hook_data, void *call_data);
627
58a9b31b 628/* before_execmode_hook
629 *
630 * This function basically draw lines and icons. Two types of lines are drawn :
631 * one small (3 pixels?) representing the state of the process and the second
632 * type is thicker (10 pixels?) representing on which CPU a process is running
633 * (and this only in running state).
634 *
635 * Extremums of the lines :
636 * x_min : time of the last event context for this process kept in memory.
637 * x_max : time of the current event.
638 * y : middle of the process in the process list. The process is found in the
639 * list, therefore is it's position in pixels.
640 *
641 * The choice of lines'color is defined by the context of the last event for this
642 * process.
643 */
9e01e6d4 644
598026ba 645int before_execmode_hook(void *hook_data, void *call_data)
646{
dd455fb8 647 LttvTraceHook *th = (LttvTraceHook*)hook_data;
648 EventsRequest *events_request = (EventsRequest*)th->hook_data;
67f72973 649 ControlFlowData *resourceview_data = events_request->viewer_data;
598026ba 650
651 LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
652
653 LttvTracefileState *tfs = (LttvTracefileState *)call_data;
654 LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
655
656 LttEvent *e;
657 e = ltt_tracefile_get_event(tfc->tf);
658
659 LttTime evtime = ltt_event_time(e);
660
8743690d 661 before_execmode_hook_irq(hook_data, call_data);
0305fe77 662 before_execmode_hook_soft_irq(hook_data, call_data);
38726a78 663 before_execmode_hook_trap(hook_data, call_data);
8743690d 664
598026ba 665 /* we are in a execmode, before the state update. We must draw the
666 * items corresponding to the state before it changes : now is the right
667 * time to do it.
668 */
669 /* For the pid */
598026ba 670 guint cpu = tfs->cpu;
67f72973 671
598026ba 672 guint trace_num = ts->parent.index;
673 LttvProcessState *process = ts->running_process[cpu];
674 g_assert(process != NULL);
675
598026ba 676 /* Well, the process_out existed : we must get it in the process hash
677 * or add it, and draw its items.
678 */
679 /* Add process to process list (if not present) */
680 guint pl_height = 0;
681 HashedResourceData *hashed_process_data = NULL;
67f72973 682 ProcessList *process_list = resourceview_data->process_list;
683
598026ba 684 LttTime birth = process->creation_time;
685
686 if(likely(process_list->current_hash_data[trace_num][cpu] != NULL)) {
687 hashed_process_data = process_list->current_hash_data[trace_num][cpu];
688 } else {
67f72973 689 hashed_process_data = resourcelist_obtain_cpu(resourceview_data, trace_num, cpu);
690
598026ba 691 /* Set the current process */
692 process_list->current_hash_data[trace_num][process->cpu] =
693 hashed_process_data;
694 }
695
696 /* Now, the process is in the state hash and our own process hash.
697 * We definitely can draw the items related to the ending state.
698 */
699
700 if(likely(ltt_time_compare(hashed_process_data->next_good_time,
701 evtime) > 0))
702 {
703 if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
704 TimeWindow time_window =
67f72973 705 lttvwindow_get_time_window(resourceview_data->tab);
598026ba 706
707#ifdef EXTRA_CHECK
708 if(ltt_time_compare(evtime, time_window.start_time) == -1
709 || ltt_time_compare(evtime, time_window.end_time) == 1)
710 return;
711#endif //EXTRA_CHECK
67f72973 712 Drawing_t *drawing = resourceview_data->drawing;
598026ba 713 guint width = drawing->width;
714 guint x;
715 convert_time_to_pixels(
716 time_window,
717 evtime,
718 width,
719 &x);
720
721 /* Draw collision indicator */
722 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
723 gdk_draw_point(hashed_process_data->pixmap,
724 drawing->gc,
725 x,
726 COLLISION_POSITION(hashed_process_data->height));
727 hashed_process_data->x.middle_marked = TRUE;
728 }
d3d99fde 729 }
730 else {
598026ba 731 TimeWindow time_window =
67f72973 732 lttvwindow_get_time_window(resourceview_data->tab);
598026ba 733
734#ifdef EXTRA_CHECK
735 if(ltt_time_compare(evtime, time_window.start_time) == -1
736 || ltt_time_compare(evtime, time_window.end_time) == 1)
737 return;
738#endif //EXTRA_CHECK
67f72973 739 Drawing_t *drawing = resourceview_data->drawing;
598026ba 740 guint width = drawing->width;
741 guint x;
742
743 convert_time_to_pixels(
744 time_window,
745 evtime,
746 width,
747 &x);
748
749
750 /* Jump over draw if we are at the same x position */
751 if(unlikely(x == hashed_process_data->x.middle &&
752 hashed_process_data->x.middle_used))
753 {
754 if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
755 /* Draw collision indicator */
756 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
757 gdk_draw_point(hashed_process_data->pixmap,
758 drawing->gc,
759 x,
760 COLLISION_POSITION(hashed_process_data->height));
761 hashed_process_data->x.middle_marked = TRUE;
762 }
763 /* jump */
d3d99fde 764 }
765 else {
598026ba 766
767 DrawContext draw_context;
768 /* Now create the drawing context that will be used to draw
769 * items related to the last state. */
770 draw_context.drawable = hashed_process_data->pixmap;
771 draw_context.gc = drawing->gc;
772 draw_context.pango_layout = drawing->pango_layout;
773 draw_context.drawinfo.start.x = hashed_process_data->x.middle;
774 draw_context.drawinfo.end.x = x;
775
776 draw_context.drawinfo.y.over = 1;
777 draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
778 draw_context.drawinfo.y.under = hashed_process_data->height;
779
780 draw_context.drawinfo.start.offset.over = 0;
781 draw_context.drawinfo.start.offset.middle = 0;
782 draw_context.drawinfo.start.offset.under = 0;
783 draw_context.drawinfo.end.offset.over = 0;
784 draw_context.drawinfo.end.offset.middle = 0;
785 draw_context.drawinfo.end.offset.under = 0;
786
787 {
788 /* Draw the line */
789 PropertiesLine prop_line;
d3d99fde 790 prop_line.line_width = STATE_LINE_WIDTH;
791 prop_line.style = GDK_LINE_SOLID;
792 prop_line.y = MIDDLE;
793 cpu_set_line_color(&prop_line, tfs->cpu_state);
598026ba 794 draw_line((void*)&prop_line, (void*)&draw_context);
795 }
796 /* become the last x position */
797 hashed_process_data->x.middle = x;
798 hashed_process_data->x.middle_used = TRUE;
799 hashed_process_data->x.middle_marked = FALSE;
800
801 /* Calculate the next good time */
802 convert_pixels_to_time(width, x+1, time_window,
803 &hashed_process_data->next_good_time);
804 }
805 }
806
807 return 0;
808}
9e01e6d4 809
8743690d 810int before_execmode_hook_irq(void *hook_data, void *call_data)
811{
dd455fb8 812 LttvTraceHook *th = (LttvTraceHook*)hook_data;
813 EventsRequest *events_request = (EventsRequest*)th->hook_data;
67f72973 814 ControlFlowData *resourceview_data = events_request->viewer_data;
8743690d 815
816 LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
817
818 LttvTracefileState *tfs = (LttvTracefileState *)call_data;
819 LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
750eb11a 820 struct marker_info *minfo;
8743690d 821
822 LttEvent *e;
823 e = ltt_tracefile_get_event(tfc->tf);
824
825 LttTime evtime = ltt_event_time(e);
826
ca5c76ed 827 LttTrace *trace = tfc->t_context->t;
828
8743690d 829 /* we are in a execmode, before the state update. We must draw the
830 * items corresponding to the state before it changes : now is the right
831 * time to do it.
832 */
833 /* For the pid */
834
835 guint64 irq;
836 guint cpu = tfs->cpu;
837
750eb11a 838 /*
839 * Check for LTT_CHANNEL_KERNEL channel name and event ID
840 * corresponding to LTT_EVENT_IRQ_ENTRY or LTT_EVENT_IRQ_EXIT.
841 */
842 if (tfc->tf->name != LTT_CHANNEL_KERNEL)
843 return 0;
844 minfo = marker_get_info_from_id(tfc->tf->mdata, e->event_id);
845 g_assert(minfo != NULL);
846 if (minfo->name == LTT_EVENT_IRQ_ENTRY) {
ca5c76ed 847 irq = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 0));
750eb11a 848 } else if (minfo->name == LTT_EVENT_IRQ_EXIT) {
55a35306 849 gint len = ts->cpu_states[cpu].irq_stack->len;
850 if(len) {
851 irq = g_array_index(ts->cpu_states[cpu].irq_stack, gint, len-1);
852 }
853 else {
854 return 0;
855 }
750eb11a 856 } else
8743690d 857 return 0;
8743690d 858
8743690d 859 guint trace_num = ts->parent.index;
860
8743690d 861 /* Well, the process_out existed : we must get it in the process hash
862 * or add it, and draw its items.
863 */
864 /* Add process to process list (if not present) */
865 guint pl_height = 0;
866 HashedResourceData *hashed_process_data = NULL;
67f72973 867 ProcessList *process_list = resourceview_data->process_list;
868
869 hashed_process_data = resourcelist_obtain_irq(resourceview_data, trace_num, irq);
671c625b 870 // TODO: fix this, it's ugly and slow:
871 GQuark name;
872 {
873 gchar *str;
43ed82b5 874 str = g_strdup_printf("IRQ %" PRIu64 " [%s]", irq, (char*)g_quark_to_string(ts->irq_names[irq]));
671c625b 875 name = g_quark_from_string(str);
876 g_free(str);
877 }
878 gtk_tree_store_set(resourceview_data->process_list->list_store, &hashed_process_data->y_iter, NAME_COLUMN, g_quark_to_string(name), -1);
8743690d 879
880 /* Now, the process is in the state hash and our own process hash.
881 * We definitely can draw the items related to the ending state.
882 */
883
884 if(likely(ltt_time_compare(hashed_process_data->next_good_time,
885 evtime) > 0))
886 {
887 if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
888 TimeWindow time_window =
67f72973 889 lttvwindow_get_time_window(resourceview_data->tab);
8743690d 890
891#ifdef EXTRA_CHECK
892 if(ltt_time_compare(evtime, time_window.start_time) == -1
893 || ltt_time_compare(evtime, time_window.end_time) == 1)
894 return;
895#endif //EXTRA_CHECK
67f72973 896 Drawing_t *drawing = resourceview_data->drawing;
8743690d 897 guint width = drawing->width;
898 guint x;
899 convert_time_to_pixels(
900 time_window,
901 evtime,
902 width,
903 &x);
904
905 /* Draw collision indicator */
906 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
907 gdk_draw_point(hashed_process_data->pixmap,
908 drawing->gc,
909 x,
910 COLLISION_POSITION(hashed_process_data->height));
911 hashed_process_data->x.middle_marked = TRUE;
912 }
913 }
914 else {
915 TimeWindow time_window =
67f72973 916 lttvwindow_get_time_window(resourceview_data->tab);
8743690d 917
918#ifdef EXTRA_CHECK
919 if(ltt_time_compare(evtime, time_window.start_time) == -1
920 || ltt_time_compare(evtime, time_window.end_time) == 1)
921 return;
922#endif //EXTRA_CHECK
67f72973 923 Drawing_t *drawing = resourceview_data->drawing;
8743690d 924 guint width = drawing->width;
925 guint x;
926
927 convert_time_to_pixels(
928 time_window,
929 evtime,
930 width,
931 &x);
932
933
934 /* Jump over draw if we are at the same x position */
935 if(unlikely(x == hashed_process_data->x.middle &&
936 hashed_process_data->x.middle_used))
937 {
938 if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
939 /* Draw collision indicator */
940 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
941 gdk_draw_point(hashed_process_data->pixmap,
942 drawing->gc,
943 x,
944 COLLISION_POSITION(hashed_process_data->height));
945 hashed_process_data->x.middle_marked = TRUE;
946 }
947 /* jump */
948 }
949 else {
950
951 DrawContext draw_context;
952 /* Now create the drawing context that will be used to draw
953 * items related to the last state. */
954 draw_context.drawable = hashed_process_data->pixmap;
955 draw_context.gc = drawing->gc;
956 draw_context.pango_layout = drawing->pango_layout;
957 draw_context.drawinfo.start.x = hashed_process_data->x.middle;
958 draw_context.drawinfo.end.x = x;
959
960 draw_context.drawinfo.y.over = 1;
961 draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
962 draw_context.drawinfo.y.under = hashed_process_data->height;
963
964 draw_context.drawinfo.start.offset.over = 0;
965 draw_context.drawinfo.start.offset.middle = 0;
966 draw_context.drawinfo.start.offset.under = 0;
967 draw_context.drawinfo.end.offset.over = 0;
968 draw_context.drawinfo.end.offset.middle = 0;
969 draw_context.drawinfo.end.offset.under = 0;
970
971 {
972 /* Draw the line */
973 PropertiesLine prop_line;
974 prop_line.line_width = STATE_LINE_WIDTH;
975 prop_line.style = GDK_LINE_SOLID;
976 prop_line.y = MIDDLE;
977 irq_set_line_color(&prop_line, &ts->irq_states[irq]);
978 draw_line((void*)&prop_line, (void*)&draw_context);
979 }
980 /* become the last x position */
981 hashed_process_data->x.middle = x;
982 hashed_process_data->x.middle_used = TRUE;
983 hashed_process_data->x.middle_marked = FALSE;
984
985 /* Calculate the next good time */
986 convert_pixels_to_time(width, x+1, time_window,
987 &hashed_process_data->next_good_time);
988 }
989 }
990
991 return 0;
992}
993
0305fe77 994int before_execmode_hook_soft_irq(void *hook_data, void *call_data)
995{
996 LttvTraceHook *th = (LttvTraceHook*)hook_data;
997 EventsRequest *events_request = (EventsRequest*)th->hook_data;
998 ControlFlowData *resourceview_data = events_request->viewer_data;
999
1000 LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
1001
1002 LttvTracefileState *tfs = (LttvTracefileState *)call_data;
1003 LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
750eb11a 1004 struct marker_info *minfo;
0305fe77 1005
1006 LttEvent *e;
1007 e = ltt_tracefile_get_event(tfc->tf);
1008
1009 LttTime evtime = ltt_event_time(e);
1010
1011 LttTrace *trace = tfc->t_context->t;
1012
1013 /* we are in a execmode, before the state update. We must draw the
1014 * items corresponding to the state before it changes : now is the right
1015 * time to do it.
1016 */
1017 /* For the pid */
1018
1019 guint64 softirq;
1020 guint cpu = tfs->cpu;
1021
750eb11a 1022 /*
1023 * Check for LTT_CHANNEL_KERNEL channel name and event ID
1024 * corresponding to LTT_EVENT_SOFT_IRQ_RAISE, LTT_EVENT_SOFT_IRQ_ENTRY
1025 * or LTT_EVENT_SOFT_IRQ_EXIT.
1026 */
1027 if (tfc->tf->name != LTT_CHANNEL_KERNEL)
1028 return 0;
1029 minfo = marker_get_info_from_id(tfc->tf->mdata, e->event_id);
1030 g_assert(minfo != NULL);
1031 if (minfo->name == LTT_EVENT_SOFT_IRQ_RAISE
1032 || minfo->name == LTT_EVENT_SOFT_IRQ_ENTRY) {
0305fe77 1033 softirq = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 0));
750eb11a 1034 } else if (minfo->name == LTT_EVENT_SOFT_IRQ_EXIT) {
0305fe77 1035 softirq = ts->cpu_states[cpu].last_soft_irq;
750eb11a 1036 } else
0305fe77 1037 return 0;
0305fe77 1038
1039 guint trace_num = ts->parent.index;
1040
1041 /* Well, the process_out existed : we must get it in the process hash
1042 * or add it, and draw its items.
1043 */
1044 /* Add process to process list (if not present) */
1045 guint pl_height = 0;
1046 HashedResourceData *hashed_process_data = NULL;
1047 ProcessList *process_list = resourceview_data->process_list;
1048
1049 hashed_process_data = resourcelist_obtain_soft_irq(resourceview_data, trace_num, softirq);
1050
1051 /* Now, the process is in the state hash and our own process hash.
1052 * We definitely can draw the items related to the ending state.
1053 */
1054
1055 if(likely(ltt_time_compare(hashed_process_data->next_good_time,
1056 evtime) > 0))
1057 {
1058 if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
1059 TimeWindow time_window =
1060 lttvwindow_get_time_window(resourceview_data->tab);
1061
1062#ifdef EXTRA_CHECK
1063 if(ltt_time_compare(evtime, time_window.start_time) == -1
1064 || ltt_time_compare(evtime, time_window.end_time) == 1)
1065 return;
1066#endif //EXTRA_CHECK
1067 Drawing_t *drawing = resourceview_data->drawing;
1068 guint width = drawing->width;
1069 guint x;
1070 convert_time_to_pixels(
1071 time_window,
1072 evtime,
1073 width,
1074 &x);
1075
1076 /* Draw collision indicator */
1077 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
1078 gdk_draw_point(hashed_process_data->pixmap,
1079 drawing->gc,
1080 x,
1081 COLLISION_POSITION(hashed_process_data->height));
1082 hashed_process_data->x.middle_marked = TRUE;
1083 }
1084 }
1085 else {
1086 TimeWindow time_window =
1087 lttvwindow_get_time_window(resourceview_data->tab);
1088
1089#ifdef EXTRA_CHECK
1090 if(ltt_time_compare(evtime, time_window.start_time) == -1
1091 || ltt_time_compare(evtime, time_window.end_time) == 1)
1092 return;
1093#endif //EXTRA_CHECK
1094 Drawing_t *drawing = resourceview_data->drawing;
1095 guint width = drawing->width;
1096 guint x;
1097
1098 convert_time_to_pixels(
1099 time_window,
1100 evtime,
1101 width,
1102 &x);
1103
1104
1105 /* Jump over draw if we are at the same x position */
1106 if(unlikely(x == hashed_process_data->x.middle &&
1107 hashed_process_data->x.middle_used))
1108 {
1109 if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
1110 /* Draw collision indicator */
1111 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
1112 gdk_draw_point(hashed_process_data->pixmap,
1113 drawing->gc,
1114 x,
1115 COLLISION_POSITION(hashed_process_data->height));
1116 hashed_process_data->x.middle_marked = TRUE;
1117 }
1118 /* jump */
1119 }
1120 else {
1121
1122 DrawContext draw_context;
1123 /* Now create the drawing context that will be used to draw
1124 * items related to the last state. */
1125 draw_context.drawable = hashed_process_data->pixmap;
1126 draw_context.gc = drawing->gc;
1127 draw_context.pango_layout = drawing->pango_layout;
1128 draw_context.drawinfo.start.x = hashed_process_data->x.middle;
1129 draw_context.drawinfo.end.x = x;
1130
1131 draw_context.drawinfo.y.over = 1;
1132 draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
1133 draw_context.drawinfo.y.under = hashed_process_data->height;
1134
1135 draw_context.drawinfo.start.offset.over = 0;
1136 draw_context.drawinfo.start.offset.middle = 0;
1137 draw_context.drawinfo.start.offset.under = 0;
1138 draw_context.drawinfo.end.offset.over = 0;
1139 draw_context.drawinfo.end.offset.middle = 0;
1140 draw_context.drawinfo.end.offset.under = 0;
1141
1142 {
1143 /* Draw the line */
1144 PropertiesLine prop_line;
1145 prop_line.line_width = STATE_LINE_WIDTH;
1146 prop_line.style = GDK_LINE_SOLID;
1147 prop_line.y = MIDDLE;
1148 soft_irq_set_line_color(&prop_line, &ts->soft_irq_states[softirq]);
1149 draw_line((void*)&prop_line, (void*)&draw_context);
1150 }
1151 /* become the last x position */
1152 hashed_process_data->x.middle = x;
1153 hashed_process_data->x.middle_used = TRUE;
1154 hashed_process_data->x.middle_marked = FALSE;
1155
1156 /* Calculate the next good time */
1157 convert_pixels_to_time(width, x+1, time_window,
1158 &hashed_process_data->next_good_time);
1159 }
1160 }
1161
1162 return 0;
1163}
1164
38726a78 1165int before_execmode_hook_trap(void *hook_data, void *call_data)
1166{
1167 LttvTraceHook *th = (LttvTraceHook*)hook_data;
1168 EventsRequest *events_request = (EventsRequest*)th->hook_data;
1169 ControlFlowData *resourceview_data = events_request->viewer_data;
1170
1171 LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
1172
1173 LttvTracefileState *tfs = (LttvTracefileState *)call_data;
1174 LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
750eb11a 1175 struct marker_info *minfo;
38726a78 1176
1177 LttEvent *e;
1178 e = ltt_tracefile_get_event(tfc->tf);
1179
1180 LttTime evtime = ltt_event_time(e);
1181
1182 LttTrace *trace = tfc->t_context->t;
1183
1184 /* we are in a execmode, before the state update. We must draw the
1185 * items corresponding to the state before it changes : now is the right
1186 * time to do it.
1187 */
1188 /* For the pid */
1189
1190 guint64 trap;
1191 guint cpu = tfs->cpu;
1192
750eb11a 1193 /*
1194 * Check for LTT_CHANNEL_KERNEL channel name and event ID
4e9bbbd3 1195 * corresponding to LTT_EVENT_TRAP/PAGE_FAULT_ENTRY or
1196 * LTT_EVENT_TRAP/PAGE_FAULT_EXIT.
750eb11a 1197 */
1198 if (tfc->tf->name != LTT_CHANNEL_KERNEL)
1199 return 0;
1200 minfo = marker_get_info_from_id(tfc->tf->mdata, e->event_id);
1201 g_assert(minfo != NULL);
4e9bbbd3 1202 if (minfo->name == LTT_EVENT_TRAP_ENTRY
1203 || minfo->name == LTT_EVENT_PAGE_FAULT_ENTRY
1204 || minfo->name == LTT_EVENT_PAGE_FAULT_NOSEM_ENTRY) {
38726a78 1205 trap = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 0));
4e9bbbd3 1206 } else if (minfo->name == LTT_EVENT_TRAP_EXIT
1207 || minfo->name == LTT_EVENT_PAGE_FAULT_EXIT
1208 || minfo->name == LTT_EVENT_PAGE_FAULT_NOSEM_EXIT) {
38726a78 1209 trap = ts->cpu_states[cpu].last_trap;
750eb11a 1210 } else
38726a78 1211 return 0;
38726a78 1212
1213 guint trace_num = ts->parent.index;
1214
1215 /* Well, the process_out existed : we must get it in the process hash
1216 * or add it, and draw its items.
1217 */
1218 /* Add process to process list (if not present) */
1219 guint pl_height = 0;
1220 HashedResourceData *hashed_process_data = NULL;
1221 ProcessList *process_list = resourceview_data->process_list;
1222
1223 hashed_process_data = resourcelist_obtain_trap(resourceview_data, trace_num, trap);
1224
1225 /* Now, the process is in the state hash and our own process hash.
1226 * We definitely can draw the items related to the ending state.
1227 */
1228
1229 if(likely(ltt_time_compare(hashed_process_data->next_good_time,
1230 evtime) > 0))
1231 {
1232 if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
1233 TimeWindow time_window =
1234 lttvwindow_get_time_window(resourceview_data->tab);
1235
1236#ifdef EXTRA_CHECK
1237 if(ltt_time_compare(evtime, time_window.start_time) == -1
1238 || ltt_time_compare(evtime, time_window.end_time) == 1)
1239 return;
1240#endif //EXTRA_CHECK
1241 Drawing_t *drawing = resourceview_data->drawing;
1242 guint width = drawing->width;
1243 guint x;
1244 convert_time_to_pixels(
1245 time_window,
1246 evtime,
1247 width,
1248 &x);
1249
1250 /* Draw collision indicator */
1251 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
1252 gdk_draw_point(hashed_process_data->pixmap,
1253 drawing->gc,
1254 x,
1255 COLLISION_POSITION(hashed_process_data->height));
1256 hashed_process_data->x.middle_marked = TRUE;
1257 }
1258 }
1259 else {
1260 TimeWindow time_window =
1261 lttvwindow_get_time_window(resourceview_data->tab);
1262
1263#ifdef EXTRA_CHECK
1264 if(ltt_time_compare(evtime, time_window.start_time) == -1
1265 || ltt_time_compare(evtime, time_window.end_time) == 1)
1266 return;
1267#endif //EXTRA_CHECK
1268 Drawing_t *drawing = resourceview_data->drawing;
1269 guint width = drawing->width;
1270 guint x;
1271
1272 convert_time_to_pixels(
1273 time_window,
1274 evtime,
1275 width,
1276 &x);
1277
1278
1279 /* Jump over draw if we are at the same x position */
1280 if(unlikely(x == hashed_process_data->x.middle &&
1281 hashed_process_data->x.middle_used))
1282 {
1283 if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
1284 /* Draw collision indicator */
1285 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
1286 gdk_draw_point(hashed_process_data->pixmap,
1287 drawing->gc,
1288 x,
1289 COLLISION_POSITION(hashed_process_data->height));
1290 hashed_process_data->x.middle_marked = TRUE;
1291 }
1292 /* jump */
1293 }
1294 else {
1295
1296 DrawContext draw_context;
1297 /* Now create the drawing context that will be used to draw
1298 * items related to the last state. */
1299 draw_context.drawable = hashed_process_data->pixmap;
1300 draw_context.gc = drawing->gc;
1301 draw_context.pango_layout = drawing->pango_layout;
1302 draw_context.drawinfo.start.x = hashed_process_data->x.middle;
1303 draw_context.drawinfo.end.x = x;
1304
1305 draw_context.drawinfo.y.over = 1;
1306 draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
1307 draw_context.drawinfo.y.under = hashed_process_data->height;
1308
1309 draw_context.drawinfo.start.offset.over = 0;
1310 draw_context.drawinfo.start.offset.middle = 0;
1311 draw_context.drawinfo.start.offset.under = 0;
1312 draw_context.drawinfo.end.offset.over = 0;
1313 draw_context.drawinfo.end.offset.middle = 0;
1314 draw_context.drawinfo.end.offset.under = 0;
1315
1316 {
1317 /* Draw the line */
1318 PropertiesLine prop_line;
1319 prop_line.line_width = STATE_LINE_WIDTH;
1320 prop_line.style = GDK_LINE_SOLID;
1321 prop_line.y = MIDDLE;
1322 trap_set_line_color(&prop_line, &ts->trap_states[trap]);
1323 draw_line((void*)&prop_line, (void*)&draw_context);
1324 }
1325 /* become the last x position */
1326 hashed_process_data->x.middle = x;
1327 hashed_process_data->x.middle_used = TRUE;
1328 hashed_process_data->x.middle_marked = FALSE;
1329
1330 /* Calculate the next good time */
1331 convert_pixels_to_time(width, x+1, time_window,
1332 &hashed_process_data->next_good_time);
1333 }
1334 }
1335
1336 return 0;
1337}
1338
0305fe77 1339
20d16f82 1340int before_bdev_event_hook(void *hook_data, void *call_data)
1341{
dd455fb8 1342 LttvTraceHook *th = (LttvTraceHook*)hook_data;
1343 EventsRequest *events_request = (EventsRequest*)th->hook_data;
67f72973 1344 ControlFlowData *resourceview_data = events_request->viewer_data;
20d16f82 1345
1346 LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
1347
1348 LttvTracefileState *tfs = (LttvTracefileState *)call_data;
1349 LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
1350
1351 LttEvent *e;
1352 e = ltt_tracefile_get_event(tfc->tf);
1353
1354 LttTime evtime = ltt_event_time(e);
1355
20d16f82 1356 /* we are in a execmode, before the state update. We must draw the
1357 * items corresponding to the state before it changes : now is the right
1358 * time to do it.
1359 */
1360 /* For the pid */
1361
1362 guint cpu = tfs->cpu;
ca5c76ed 1363 guint8 major = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 0));
1364 guint8 minor = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 1));
1365 guint oper = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 2));
20d16f82 1366 gint devcode_gint = MKDEV(major,minor);
1367
20d16f82 1368 guint trace_num = ts->parent.index;
1369
1370 LttvBdevState *bdev = g_hash_table_lookup(ts->bdev_states, &devcode_gint);
23e59a12 1371 /* the result of the lookup might be NULL. that's ok, the rest of the function
1372 should understand it was not found and that its state is unknown */
20d16f82 1373
20d16f82 1374 /* Well, the process_out existed : we must get it in the process hash
1375 * or add it, and draw its items.
1376 */
1377 /* Add process to process list (if not present) */
1378 guint pl_height = 0;
1379 HashedResourceData *hashed_process_data = NULL;
67f72973 1380 ProcessList *process_list = resourceview_data->process_list;
20d16f82 1381// LttTime birth = process->creation_time;
1382
1383// if(likely(process_list->current_hash_data[trace_num][cpu] != NULL)) {
1384// hashed_process_data = process_list->current_hash_data[trace_num][cpu];
1385// } else {
67f72973 1386 hashed_process_data = resourcelist_obtain_bdev(resourceview_data, trace_num, devcode_gint);
1387 ////hashed_process_data = processlist_get_process_data(process_list, resourceq, trace_num);
20d16f82 1388// hashed_process_data = processlist_get_process_data(process_list,
1389// pid,
1390// process->cpu,
1391// &birth,
1392// trace_num);
67f72973 1393//
20d16f82 1394 /* Set the current process */
1395// process_list->current_hash_data[trace_num][process->cpu] =
1396// hashed_process_data;
1397// }
1398
1399 /* Now, the process is in the state hash and our own process hash.
1400 * We definitely can draw the items related to the ending state.
1401 */
1402
1403 if(likely(ltt_time_compare(hashed_process_data->next_good_time,
1404 evtime) > 0))
1405 {
1406 if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
1407 TimeWindow time_window =
67f72973 1408 lttvwindow_get_time_window(resourceview_data->tab);
20d16f82 1409
1410#ifdef EXTRA_CHECK
1411 if(ltt_time_compare(evtime, time_window.start_time) == -1
1412 || ltt_time_compare(evtime, time_window.end_time) == 1)
1413 return;
1414#endif //EXTRA_CHECK
67f72973 1415 Drawing_t *drawing = resourceview_data->drawing;
20d16f82 1416 guint width = drawing->width;
1417 guint x;
1418 convert_time_to_pixels(
1419 time_window,
1420 evtime,
1421 width,
1422 &x);
1423
1424 /* Draw collision indicator */
1425 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
1426 gdk_draw_point(hashed_process_data->pixmap,
1427 drawing->gc,
1428 x,
1429 COLLISION_POSITION(hashed_process_data->height));
1430 hashed_process_data->x.middle_marked = TRUE;
1431 }
1432 }
1433 else {
1434 TimeWindow time_window =
67f72973 1435 lttvwindow_get_time_window(resourceview_data->tab);
20d16f82 1436
1437#ifdef EXTRA_CHECK
1438 if(ltt_time_compare(evtime, time_window.start_time) == -1
1439 || ltt_time_compare(evtime, time_window.end_time) == 1)
1440 return;
1441#endif //EXTRA_CHECK
67f72973 1442 Drawing_t *drawing = resourceview_data->drawing;
20d16f82 1443 guint width = drawing->width;
1444 guint x;
1445
1446 convert_time_to_pixels(
1447 time_window,
1448 evtime,
1449 width,
1450 &x);
1451
1452
1453 /* Jump over draw if we are at the same x position */
1454 if(unlikely(x == hashed_process_data->x.middle &&
1455 hashed_process_data->x.middle_used))
1456 {
1457 if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
1458 /* Draw collision indicator */
1459 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
1460 gdk_draw_point(hashed_process_data->pixmap,
1461 drawing->gc,
1462 x,
1463 COLLISION_POSITION(hashed_process_data->height));
1464 hashed_process_data->x.middle_marked = TRUE;
1465 }
1466 /* jump */
1467 }
1468 else {
1469
1470 DrawContext draw_context;
1471 /* Now create the drawing context that will be used to draw
1472 * items related to the last state. */
1473 draw_context.drawable = hashed_process_data->pixmap;
1474 draw_context.gc = drawing->gc;
1475 draw_context.pango_layout = drawing->pango_layout;
1476 draw_context.drawinfo.start.x = hashed_process_data->x.middle;
1477 draw_context.drawinfo.end.x = x;
1478
1479 draw_context.drawinfo.y.over = 1;
1480 draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
1481 draw_context.drawinfo.y.under = hashed_process_data->height;
1482
1483 draw_context.drawinfo.start.offset.over = 0;
1484 draw_context.drawinfo.start.offset.middle = 0;
1485 draw_context.drawinfo.start.offset.under = 0;
1486 draw_context.drawinfo.end.offset.over = 0;
1487 draw_context.drawinfo.end.offset.middle = 0;
1488 draw_context.drawinfo.end.offset.under = 0;
1489
1490 {
1491 /* Draw the line */
1492 PropertiesLine prop_line;
1493 prop_line.line_width = STATE_LINE_WIDTH;
1494 prop_line.style = GDK_LINE_SOLID;
1495 prop_line.y = MIDDLE;
1496 bdev_set_line_color(&prop_line, bdev);
1497 draw_line((void*)&prop_line, (void*)&draw_context);
1498 }
1499 /* become the last x position */
1500 hashed_process_data->x.middle = x;
1501 hashed_process_data->x.middle_used = TRUE;
1502 hashed_process_data->x.middle_marked = FALSE;
1503
1504 /* Calculate the next good time */
1505 convert_pixels_to_time(width, x+1, time_window,
1506 &hashed_process_data->next_good_time);
1507 }
1508 }
1509
1510 return 0;
1511}
1512
9e01e6d4 1513gint update_time_window_hook(void *hook_data, void *call_data)
1514{
67f72973 1515 ControlFlowData *resourceview_data = (ControlFlowData*) hook_data;
1516 Drawing_t *drawing = resourceview_data->drawing;
1517 ProcessList *process_list = resourceview_data->process_list;
9e01e6d4 1518
1519 const TimeWindowNotifyData *time_window_nofify_data =
1520 ((const TimeWindowNotifyData *)call_data);
1521
1522 TimeWindow *old_time_window =
1523 time_window_nofify_data->old_time_window;
1524 TimeWindow *new_time_window =
1525 time_window_nofify_data->new_time_window;
1526
1527 /* Update the ruler */
67f72973 1528 drawing_update_ruler(resourceview_data->drawing,
9e01e6d4 1529 new_time_window);
1530
1531
1532 /* Two cases : zoom in/out or scrolling */
1533
1534 /* In order to make sure we can reuse the old drawing, the scale must
1535 * be the same and the new time interval being partly located in the
1536 * currently shown time interval. (reuse is only for scrolling)
1537 */
1538
1539 g_info("Old time window HOOK : %lu, %lu to %lu, %lu",
1540 old_time_window->start_time.tv_sec,
1541 old_time_window->start_time.tv_nsec,
1542 old_time_window->time_width.tv_sec,
1543 old_time_window->time_width.tv_nsec);
1544
1545 g_info("New time window HOOK : %lu, %lu to %lu, %lu",
1546 new_time_window->start_time.tv_sec,
1547 new_time_window->start_time.tv_nsec,
1548 new_time_window->time_width.tv_sec,
1549 new_time_window->time_width.tv_nsec);
1550
1551 if( new_time_window->time_width.tv_sec == old_time_window->time_width.tv_sec
1552 && new_time_window->time_width.tv_nsec == old_time_window->time_width.tv_nsec)
1553 {
1554 /* Same scale (scrolling) */
1555 g_info("scrolling");
1556 LttTime *ns = &new_time_window->start_time;
1557 LttTime *nw = &new_time_window->time_width;
1558 LttTime *os = &old_time_window->start_time;
1559 LttTime *ow = &old_time_window->time_width;
1560 LttTime old_end = old_time_window->end_time;
1561 LttTime new_end = new_time_window->end_time;
1562 //if(ns<os+w<ns+w)
1563 //if(ns<os+w && os+w<ns+w)
1564 //if(ns<old_end && os<ns)
1565 if(ltt_time_compare(*ns, old_end) == -1
1566 && ltt_time_compare(*os, *ns) == -1)
1567 {
1568 g_info("scrolling near right");
1569 /* Scroll right, keep right part of the screen */
1570 guint x = 0;
67f72973 1571 guint width = resourceview_data->drawing->width;
9e01e6d4 1572 convert_time_to_pixels(
1573 *old_time_window,
1574 *ns,
1575 width,
1576 &x);
1577
1578 /* Copy old data to new location */
1579 copy_pixmap_region(process_list,
1580 NULL,
67f72973 1581 resourceview_data->drawing->drawing_area->style->black_gc,
9e01e6d4 1582 NULL,
1583 x, 0,
1584 0, 0,
67f72973 1585 resourceview_data->drawing->width-x+SAFETY, -1);
9e01e6d4 1586
1587 if(drawing->damage_begin == drawing->damage_end)
67f72973 1588 drawing->damage_begin = resourceview_data->drawing->width-x;
9e01e6d4 1589 else
1590 drawing->damage_begin = 0;
1591
67f72973 1592 drawing->damage_end = resourceview_data->drawing->width;
9e01e6d4 1593
1594 /* Clear the data request background, but not SAFETY */
1595 rectangle_pixmap(process_list,
67f72973 1596 resourceview_data->drawing->drawing_area->style->black_gc,
9e01e6d4 1597 TRUE,
1598 drawing->damage_begin+SAFETY, 0,
1599 drawing->damage_end - drawing->damage_begin, // do not overlap
1600 -1);
1601 gtk_widget_queue_draw(drawing->drawing_area);
9e01e6d4 1602
1603 /* Get new data for the rest. */
67f72973 1604 drawing_data_request(resourceview_data->drawing,
9e01e6d4 1605 drawing->damage_begin, 0,
1606 drawing->damage_end - drawing->damage_begin,
67f72973 1607 resourceview_data->drawing->height);
9e01e6d4 1608 } else {
9e01e6d4 1609 if(ltt_time_compare(*ns,*os) == -1
1610 && ltt_time_compare(*os,new_end) == -1)
1611 {
1612 g_info("scrolling near left");
1613 /* Scroll left, keep left part of the screen */
1614 guint x = 0;
67f72973 1615 guint width = resourceview_data->drawing->width;
9e01e6d4 1616 convert_time_to_pixels(
1617 *new_time_window,
1618 *os,
1619 width,
1620 &x);
1621
1622 /* Copy old data to new location */
1623 copy_pixmap_region (process_list,
1624 NULL,
67f72973 1625 resourceview_data->drawing->drawing_area->style->black_gc,
9e01e6d4 1626 NULL,
1627 0, 0,
1628 x, 0,
1629 -1, -1);
1630
1631 if(drawing->damage_begin == drawing->damage_end)
1632 drawing->damage_end = x;
1633 else
1634 drawing->damage_end =
67f72973 1635 resourceview_data->drawing->width;
9e01e6d4 1636
1637 drawing->damage_begin = 0;
1638
1639 rectangle_pixmap (process_list,
67f72973 1640 resourceview_data->drawing->drawing_area->style->black_gc,
9e01e6d4 1641 TRUE,
1642 drawing->damage_begin, 0,
1643 drawing->damage_end - drawing->damage_begin, // do not overlap
1644 -1);
1645
1646 gtk_widget_queue_draw(drawing->drawing_area);
9e01e6d4 1647
1648 /* Get new data for the rest. */
67f72973 1649 drawing_data_request(resourceview_data->drawing,
9e01e6d4 1650 drawing->damage_begin, 0,
1651 drawing->damage_end - drawing->damage_begin,
67f72973 1652 resourceview_data->drawing->height);
9e01e6d4 1653
1654 } else {
1655 if(ltt_time_compare(*ns,*os) == 0)
1656 {
1657 g_info("not scrolling");
1658 } else {
1659 g_info("scrolling far");
1660 /* Cannot reuse any part of the screen : far jump */
1661
1662
1663 rectangle_pixmap (process_list,
67f72973 1664 resourceview_data->drawing->drawing_area->style->black_gc,
9e01e6d4 1665 TRUE,
1666 0, 0,
67f72973 1667 resourceview_data->drawing->width+SAFETY, // do not overlap
9e01e6d4 1668 -1);
1669
9e01e6d4 1670 gtk_widget_queue_draw(drawing->drawing_area);
1671
1672 drawing->damage_begin = 0;
67f72973 1673 drawing->damage_end = resourceview_data->drawing->width;
9e01e6d4 1674
67f72973 1675 drawing_data_request(resourceview_data->drawing,
9e01e6d4 1676 0, 0,
67f72973 1677 resourceview_data->drawing->width,
1678 resourceview_data->drawing->height);
9e01e6d4 1679
1680 }
1681 }
1682 }
1683 } else {
1684 /* Different scale (zoom) */
1685 g_info("zoom");
1686
1687 rectangle_pixmap (process_list,
67f72973 1688 resourceview_data->drawing->drawing_area->style->black_gc,
9e01e6d4 1689 TRUE,
1690 0, 0,
67f72973 1691 resourceview_data->drawing->width+SAFETY, // do not overlap
9e01e6d4 1692 -1);
1693
9e01e6d4 1694 gtk_widget_queue_draw(drawing->drawing_area);
1695
1696 drawing->damage_begin = 0;
67f72973 1697 drawing->damage_end = resourceview_data->drawing->width;
9e01e6d4 1698
67f72973 1699 drawing_data_request(resourceview_data->drawing,
9e01e6d4 1700 0, 0,
67f72973 1701 resourceview_data->drawing->width,
1702 resourceview_data->drawing->height);
9e01e6d4 1703 }
1704
1705 /* Update directly when scrolling */
67f72973 1706 gdk_window_process_updates(resourceview_data->drawing->drawing_area->window,
9e01e6d4 1707 TRUE);
1708
1709 return 0;
1710}
1711
1712gint traceset_notify(void *hook_data, void *call_data)
1713{
67f72973 1714 ControlFlowData *resourceview_data = (ControlFlowData*) hook_data;
1715 Drawing_t *drawing = resourceview_data->drawing;
9e01e6d4 1716
1717 if(unlikely(drawing->gc == NULL)) {
1718 return FALSE;
1719 }
1720 if(drawing->dotted_gc == NULL) {
1721 return FALSE;
1722 }
1723
67f72973 1724 drawing_clear(resourceview_data->drawing);
1725 processlist_clear(resourceview_data->process_list);
9e01e6d4 1726 gtk_widget_set_size_request(
67f72973 1727 resourceview_data->drawing->drawing_area,
1728 -1, processlist_get_height(resourceview_data->process_list));
1729 redraw_notify(resourceview_data, NULL);
9e01e6d4 1730
67f72973 1731 request_background_data(resourceview_data);
9e01e6d4 1732
1733 return FALSE;
1734}
1735
1736gint redraw_notify(void *hook_data, void *call_data)
1737{
67f72973 1738 ControlFlowData *resourceview_data = (ControlFlowData*) hook_data;
1739 Drawing_t *drawing = resourceview_data->drawing;
9e01e6d4 1740 GtkWidget *widget = drawing->drawing_area;
1741
1742 drawing->damage_begin = 0;
1743 drawing->damage_end = drawing->width;
1744
1745 /* fun feature, to be separated someday... */
67f72973 1746 drawing_clear(resourceview_data->drawing);
1747 processlist_clear(resourceview_data->process_list);
9e01e6d4 1748 gtk_widget_set_size_request(
67f72973 1749 resourceview_data->drawing->drawing_area,
1750 -1, processlist_get_height(resourceview_data->process_list));
9e01e6d4 1751 // Clear the images
67f72973 1752 rectangle_pixmap (resourceview_data->process_list,
9e01e6d4 1753 widget->style->black_gc,
1754 TRUE,
1755 0, 0,
1756 drawing->alloc_width,
1757 -1);
1758
1759 gtk_widget_queue_draw(drawing->drawing_area);
1760
1761 if(drawing->damage_begin < drawing->damage_end)
1762 {
1763 drawing_data_request(drawing,
1764 drawing->damage_begin,
1765 0,
1766 drawing->damage_end-drawing->damage_begin,
1767 drawing->height);
1768 }
1769
9e01e6d4 1770 return FALSE;
1771
1772}
1773
1774
1775gint continue_notify(void *hook_data, void *call_data)
1776{
67f72973 1777 ControlFlowData *resourceview_data = (ControlFlowData*) hook_data;
1778 Drawing_t *drawing = resourceview_data->drawing;
9e01e6d4 1779
1780 if(drawing->damage_begin < drawing->damage_end)
1781 {
1782 drawing_data_request(drawing,
1783 drawing->damage_begin,
1784 0,
1785 drawing->damage_end-drawing->damage_begin,
1786 drawing->height);
1787 }
1788
1789 return FALSE;
1790}
1791
1792
1793gint update_current_time_hook(void *hook_data, void *call_data)
1794{
67f72973 1795 ControlFlowData *resourceview_data = (ControlFlowData*)hook_data;
1796 Drawing_t *drawing = resourceview_data->drawing;
9e01e6d4 1797
1798 LttTime current_time = *((LttTime*)call_data);
1799
1800 TimeWindow time_window =
67f72973 1801 lttvwindow_get_time_window(resourceview_data->tab);
9e01e6d4 1802
1803 LttTime time_begin = time_window.start_time;
1804 LttTime width = time_window.time_width;
1805 LttTime half_width;
1806 {
1807 guint64 time_ll = ltt_time_to_uint64(width);
1808 time_ll = time_ll >> 1; /* divide by two */
1809 half_width = ltt_time_from_uint64(time_ll);
1810 }
1811 LttTime time_end = ltt_time_add(time_begin, width);
1812
1813 LttvTracesetContext * tsc =
67f72973 1814 lttvwindow_get_traceset_context(resourceview_data->tab);
9e01e6d4 1815
1816 LttTime trace_start = tsc->time_span.start_time;
1817 LttTime trace_end = tsc->time_span.end_time;
1818
1819 g_info("New current time HOOK : %lu, %lu", current_time.tv_sec,
1820 current_time.tv_nsec);
9e01e6d4 1821
1822 /* If current time is inside time interval, just move the highlight
1823 * bar */
1824
1825 /* Else, we have to change the time interval. We have to tell it
1826 * to the main window. */
1827 /* The time interval change will take care of placing the current
1828 * time at the center of the visible area, or nearest possible if we are
1829 * at one end of the trace. */
1830
1831
1832 if(ltt_time_compare(current_time, time_begin) < 0)
1833 {
1834 TimeWindow new_time_window;
1835
1836 if(ltt_time_compare(current_time,
1837 ltt_time_add(trace_start,half_width)) < 0)
1838 time_begin = trace_start;
1839 else
1840 time_begin = ltt_time_sub(current_time,half_width);
1841
1842 new_time_window.start_time = time_begin;
1843 new_time_window.time_width = width;
1844 new_time_window.time_width_double = ltt_time_to_double(width);
1845 new_time_window.end_time = ltt_time_add(time_begin, width);
1846
67f72973 1847 lttvwindow_report_time_window(resourceview_data->tab, new_time_window);
9e01e6d4 1848 }
1849 else if(ltt_time_compare(current_time, time_end) > 0)
1850 {
1851 TimeWindow new_time_window;
1852
1853 if(ltt_time_compare(current_time, ltt_time_sub(trace_end, half_width)) > 0)
1854 time_begin = ltt_time_sub(trace_end,width);
1855 else
1856 time_begin = ltt_time_sub(current_time,half_width);
1857
1858 new_time_window.start_time = time_begin;
1859 new_time_window.time_width = width;
1860 new_time_window.time_width_double = ltt_time_to_double(width);
1861 new_time_window.end_time = ltt_time_add(time_begin, width);
1862
67f72973 1863 lttvwindow_report_time_window(resourceview_data->tab, new_time_window);
9e01e6d4 1864
1865 }
67f72973 1866 gtk_widget_queue_draw(resourceview_data->drawing->drawing_area);
9e01e6d4 1867
1868 /* Update directly when scrolling */
67f72973 1869 gdk_window_process_updates(resourceview_data->drawing->drawing_area->window,
9e01e6d4 1870 TRUE);
1871
1872 return 0;
1873}
1874
1875typedef struct _ClosureData {
1876 EventsRequest *events_request;
1877 LttvTracesetState *tss;
1878 LttTime end_time;
1879 guint x_end;
1880} ClosureData;
1881
58a9b31b 1882/* Draw line until end of the screen */
9e01e6d4 1883
1884void draw_closure(gpointer key, gpointer value, gpointer user_data)
1885{
67f72973 1886 ResourceUniqueNumeric *process_info = (ResourceUniqueNumeric*)key;
44ffb95f 1887 HashedResourceData *hashed_process_data = (HashedResourceData*)value;
1888 ClosureData *closure_data = (ClosureData*)user_data;
1889
1890 EventsRequest *events_request = closure_data->events_request;
67f72973 1891 ControlFlowData *resourceview_data = events_request->viewer_data;
44ffb95f 1892
1893 LttvTracesetState *tss = closure_data->tss;
1894 LttvTracesetContext *tsc = (LttvTracesetContext*)tss;
1895
1896 LttTime evtime = closure_data->end_time;
1897
1898 gboolean dodraw = TRUE;
1899
67f72973 1900 if(hashed_process_data->type == RV_RESOURCE_MACHINE)
1901 return;
1902
44ffb95f 1903 {
1904 /* For the process */
1905 /* First, check if the current process is in the state computation
1906 * process list. If it is there, that means we must add it right now and
1907 * draw items from the beginning of the read for it. If it is not
1908 * present, it's a new process and it was not present : it will
1909 * be added after the state update. */
1910#ifdef EXTRA_CHECK
1911 g_assert(lttv_traceset_number(tsc->ts) > 0);
1912#endif //EXTRA_CHECK
1913 LttvTraceContext *tc = tsc->traces[process_info->trace_num];
1914 LttvTraceState *ts = (LttvTraceState*)tc;
1915
67f72973 1916 /* Only draw for processes that are currently in the trace states */
44ffb95f 1917
67f72973 1918 ProcessList *process_list = resourceview_data->process_list;
44ffb95f 1919#ifdef EXTRA_CHECK
67f72973 1920 /* Should be alike when background info is ready */
1921 if(resourceview_data->background_info_waiting==0)
44ffb95f 1922 g_assert(ltt_time_compare(process->creation_time,
1923 process_info->birth) == 0);
1924#endif //EXTRA_CHECK
1925
67f72973 1926 /* Now, the process is in the state hash and our own process hash.
1927 * We definitely can draw the items related to the ending state.
1928 */
1929
1930 if(unlikely(ltt_time_compare(hashed_process_data->next_good_time,
1931 evtime) <= 0))
1932 {
1933 TimeWindow time_window =
1934 lttvwindow_get_time_window(resourceview_data->tab);
44ffb95f 1935
1936#ifdef EXTRA_CHECK
67f72973 1937 if(ltt_time_compare(evtime, time_window.start_time) == -1
1938 || ltt_time_compare(evtime, time_window.end_time) == 1)
1939 return;
44ffb95f 1940#endif //EXTRA_CHECK
67f72973 1941 Drawing_t *drawing = resourceview_data->drawing;
1942 guint width = drawing->width;
1943
1944 guint x = closure_data->x_end;
1945
1946 DrawContext draw_context;
1947
1948 /* Now create the drawing context that will be used to draw
1949 * items related to the last state. */
1950 draw_context.drawable = hashed_process_data->pixmap;
1951 draw_context.gc = drawing->gc;
1952 draw_context.pango_layout = drawing->pango_layout;
1953 draw_context.drawinfo.end.x = x;
1954
1955 draw_context.drawinfo.y.over = 1;
1956 draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
1957 draw_context.drawinfo.y.under = hashed_process_data->height;
1958
1959 draw_context.drawinfo.start.offset.over = 0;
1960 draw_context.drawinfo.start.offset.middle = 0;
1961 draw_context.drawinfo.start.offset.under = 0;
1962 draw_context.drawinfo.end.offset.over = 0;
1963 draw_context.drawinfo.end.offset.middle = 0;
1964 draw_context.drawinfo.end.offset.under = 0;
44ffb95f 1965#if 0
67f72973 1966 /* Jump over draw if we are at the same x position */
1967 if(x == hashed_process_data->x.over)
1968 {
1969 /* jump */
1970 } else {
1971 draw_context.drawinfo.start.x = hashed_process_data->x.over;
1972 /* Draw the line */
1973 PropertiesLine prop_line = prepare_execmode_line(process);
1974 draw_line((void*)&prop_line, (void*)&draw_context);
44ffb95f 1975
67f72973 1976 hashed_process_data->x.over = x;
1977 }
44ffb95f 1978#endif //0
1979
67f72973 1980 if(unlikely(x == hashed_process_data->x.middle &&
1981 hashed_process_data->x.middle_used)) {
44ffb95f 1982#if 0 /* do not mark closure : not missing information */
67f72973 1983 if(hashed_process_data->x.middle_marked == FALSE) {
1984 /* Draw collision indicator */
1985 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
1986 gdk_draw_point(drawing->pixmap,
1987 drawing->gc,
1988 x,
1989 y+(height/2)-3);
1990 hashed_process_data->x.middle_marked = TRUE;
1991 }
44ffb95f 1992#endif //0
67f72973 1993 /* Jump */
1994 } else {
1995 draw_context.drawinfo.start.x = hashed_process_data->x.middle;
1996 /* Draw the line */
1997 if(dodraw) {
1998 PropertiesLine prop_line;
1999 prop_line.line_width = STATE_LINE_WIDTH;
2000 prop_line.style = GDK_LINE_SOLID;
2001 prop_line.y = MIDDLE;
2002 if(hashed_process_data->type == RV_RESOURCE_CPU)
2003 cpu_set_line_color(&prop_line, &ts->cpu_states[process_info->id]);
2004 else if(hashed_process_data->type == RV_RESOURCE_IRQ)
2005 irq_set_line_color(&prop_line, &ts->irq_states[process_info->id]);
0305fe77 2006 else if(hashed_process_data->type == RV_RESOURCE_SOFT_IRQ)
2007 soft_irq_set_line_color(&prop_line, &ts->soft_irq_states[process_info->id]);
38726a78 2008 else if(hashed_process_data->type == RV_RESOURCE_TRAP)
2009 trap_set_line_color(&prop_line, &ts->trap_states[process_info->id]);
67f72973 2010 else if(hashed_process_data->type == RV_RESOURCE_BDEV) {
2011 gint devcode_gint = process_info->id;
2012 LttvBdevState *bdev = g_hash_table_lookup(ts->bdev_states, &devcode_gint);
2013 // the lookup may return null; bdev_set_line_color must act appropriately
2014 bdev_set_line_color(&prop_line, bdev);
44ffb95f 2015 }
67f72973 2016
2017 draw_line((void*)&prop_line, (void*)&draw_context);
2018 }
44ffb95f 2019
67f72973 2020 /* become the last x position */
2021 if(likely(x != hashed_process_data->x.middle)) {
2022 hashed_process_data->x.middle = x;
2023 /* but don't use the pixel */
2024 hashed_process_data->x.middle_used = FALSE;
44ffb95f 2025
67f72973 2026 /* Calculate the next good time */
2027 convert_pixels_to_time(width, x+1, time_window,
2028 &hashed_process_data->next_good_time);
44ffb95f 2029 }
2030 }
67f72973 2031 }
44ffb95f 2032 }
9e01e6d4 2033}
2034
2035int before_chunk(void *hook_data, void *call_data)
2036{
2037 EventsRequest *events_request = (EventsRequest*)hook_data;
2038 LttvTracesetState *tss = (LttvTracesetState*)call_data;
2039 ControlFlowData *cfd = (ControlFlowData*)events_request->viewer_data;
2040#if 0
67f72973 2041 /* Deactivate sort */
9e01e6d4 2042 gtk_tree_sortable_set_sort_column_id(
2043 GTK_TREE_SORTABLE(cfd->process_list->list_store),
2044 TRACE_COLUMN,
2045 GTK_SORT_ASCENDING);
2046#endif //0
2047 drawing_chunk_begin(events_request, tss);
2048
2049 return 0;
2050}
2051
d389bc8d 2052/* before_request
2053 *
2054 * This gets executed just before an events request is executed
2055 */
2056
9e01e6d4 2057int before_request(void *hook_data, void *call_data)
2058{
2059 EventsRequest *events_request = (EventsRequest*)hook_data;
2060 LttvTracesetState *tss = (LttvTracesetState*)call_data;
2061
2062 drawing_data_request_begin(events_request, tss);
2063
2064 return 0;
2065}
2066
2067
2068/*
2069 * after request is necessary in addition of after chunk in order to draw
2070 * lines until the end of the screen. after chunk just draws lines until
2071 * the last event.
2072 *
2073 * for each process
2074 * draw closing line
2075 * expose
2076 */
2077int after_request(void *hook_data, void *call_data)
2078{
67f72973 2079 guint i;
2080 EventsRequest *events_request = (EventsRequest*)hook_data;
2081 ControlFlowData *resourceview_data = events_request->viewer_data;
2082 LttvTracesetState *tss = (LttvTracesetState*)call_data;
2083
2084 ProcessList *process_list = resourceview_data->process_list;
2085 LttTime end_time = events_request->end_time;
2086
2087 ClosureData closure_data;
2088 closure_data.events_request = (EventsRequest*)hook_data;
2089 closure_data.tss = tss;
2090 closure_data.end_time = end_time;
2091
2092 TimeWindow time_window =
2093 lttvwindow_get_time_window(resourceview_data->tab);
2094 guint width = resourceview_data->drawing->width;
2095 convert_time_to_pixels(
2096 time_window,
2097 end_time,
2098 width,
2099 &closure_data.x_end);
2100
2101
2102 /* Draw last items */
2103 for(i=0; i<RV_RESOURCE_COUNT; i++) {
2104 g_hash_table_foreach(resourcelist_get_resource_hash_table(resourceview_data, i), draw_closure,
2105 (void*)&closure_data);
2106 }
2107
2108 /* Request expose */
2109 drawing_request_expose(events_request, tss, end_time);
9e01e6d4 2110 return 0;
2111}
2112
2113/*
2114 * for each process
2115 * draw closing line
2116 * expose
2117 */
2118int after_chunk(void *hook_data, void *call_data)
2119{
2120 EventsRequest *events_request = (EventsRequest*)hook_data;
67f72973 2121 ControlFlowData *resourceview_data = events_request->viewer_data;
9e01e6d4 2122 LttvTracesetState *tss = (LttvTracesetState*)call_data;
2123 LttvTracesetContext *tsc = (LttvTracesetContext*)call_data;
2124 LttvTracefileContext *tfc = lttv_traceset_context_get_current_tfc(tsc);
2125 LttTime end_time;
2126
67f72973 2127 ProcessList *process_list = resourceview_data->process_list;
9e01e6d4 2128 guint i;
2129 LttvTraceset *traceset = tsc->ts;
2130 guint nb_trace = lttv_traceset_number(traceset);
2131
2132 /* Only execute when called for the first trace's events request */
43ed82b5 2133 if(!process_list->current_hash_data)
2134 return 0;
9e01e6d4 2135
2136 for(i = 0 ; i < nb_trace ; i++) {
2137 g_free(process_list->current_hash_data[i]);
2138 }
2139 g_free(process_list->current_hash_data);
2140 process_list->current_hash_data = NULL;
2141
2142 if(tfc != NULL)
2143 end_time = LTT_TIME_MIN(tfc->timestamp, events_request->end_time);
2144 else /* end of traceset, or position now out of request : end */
2145 end_time = events_request->end_time;
2146
2147 ClosureData closure_data;
2148 closure_data.events_request = (EventsRequest*)hook_data;
2149 closure_data.tss = tss;
2150 closure_data.end_time = end_time;
2151
2152 TimeWindow time_window =
67f72973 2153 lttvwindow_get_time_window(resourceview_data->tab);
2154 guint width = resourceview_data->drawing->width;
9e01e6d4 2155 convert_time_to_pixels(
2156 time_window,
2157 end_time,
2158 width,
2159 &closure_data.x_end);
2160
2161 /* Draw last items */
67f72973 2162 for(i=0; i<RV_RESOURCE_COUNT; i++) {
2163 g_hash_table_foreach(resourcelist_get_resource_hash_table(resourceview_data, i), draw_closure,
9e01e6d4 2164 (void*)&closure_data);
67f72973 2165 }
9e01e6d4 2166#if 0
2167 /* Reactivate sort */
2168 gtk_tree_sortable_set_sort_column_id(
67f72973 2169 GTK_TREE_SORTABLE(resourceview_data->process_list->list_store),
9e01e6d4 2170 GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID,
2171 GTK_SORT_ASCENDING);
2172
67f72973 2173 update_index_to_pixmap(resourceview_data->process_list);
9e01e6d4 2174 /* Request a full expose : drawing scrambled */
67f72973 2175 gtk_widget_queue_draw(resourceview_data->drawing->drawing_area);
9e01e6d4 2176#endif //0
2177 /* Request expose (updates damages zone also) */
2178 drawing_request_expose(events_request, tss, end_time);
2179
2180 return 0;
2181}
2182
2183/* after_statedump_end
2184 *
2185 * @param hook_data ControlFlowData structure of the viewer.
2186 * @param call_data Event context.
2187 *
2188 * This function adds items to be drawn in a queue for each process.
2189 *
2190 */
2191int before_statedump_end(void *hook_data, void *call_data)
2192{
67f72973 2193 gint i;
2194
dd455fb8 2195 LttvTraceHook *th = (LttvTraceHook*)hook_data;
2196 EventsRequest *events_request = (EventsRequest*)th->hook_data;
67f72973 2197 ControlFlowData *resourceview_data = events_request->viewer_data;
9e01e6d4 2198
2199 LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
2200
2201 LttvTracefileState *tfs = (LttvTracefileState *)call_data;
2202
2203 LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
2204
2205 LttvTracesetState *tss = (LttvTracesetState*)tfc->t_context->ts_context;
67f72973 2206 ProcessList *process_list = resourceview_data->process_list;
9e01e6d4 2207
2208 LttEvent *e;
2209 e = ltt_tracefile_get_event(tfc->tf);
2210
67f72973 2211 LttvFilter *filter = resourceview_data->filter;
9e01e6d4 2212 if(filter != NULL && filter->head != NULL)
2213 if(!lttv_filter_tree_parse(filter->head,e,tfc->tf,
2214 tfc->t_context->t,tfc,NULL,NULL))
2215 return FALSE;
2216
2217 LttTime evtime = ltt_event_time(e);
2218
2219 ClosureData closure_data;
2220 closure_data.events_request = events_request;
2221 closure_data.tss = tss;
2222 closure_data.end_time = evtime;
2223
2224 TimeWindow time_window =
67f72973 2225 lttvwindow_get_time_window(resourceview_data->tab);
2226 guint width = resourceview_data->drawing->width;
9e01e6d4 2227 convert_time_to_pixels(
2228 time_window,
2229 evtime,
2230 width,
2231 &closure_data.x_end);
2232
2233 /* Draw last items */
67f72973 2234
2235 for(i=0; i<RV_RESOURCE_COUNT; i++) {
2236 g_hash_table_foreach(resourcelist_get_resource_hash_table(resourceview_data, i), draw_closure,
9e01e6d4 2237 (void*)&closure_data);
67f72973 2238 }
9e01e6d4 2239#if 0
2240 /* Reactivate sort */
2241 gtk_tree_sortable_set_sort_column_id(
67f72973 2242 GTK_TREE_SORTABLE(resourceview_data->process_list->list_store),
9e01e6d4 2243 GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID,
2244 GTK_SORT_ASCENDING);
2245
67f72973 2246 update_index_to_pixmap(resourceview_data->process_list);
9e01e6d4 2247 /* Request a full expose : drawing scrambled */
67f72973 2248 gtk_widget_queue_draw(resourceview_data->drawing->drawing_area);
9e01e6d4 2249#endif //0
2250 /* Request expose (updates damages zone also) */
2251 drawing_request_expose(events_request, tss, evtime);
2252
2253 return 0;
2254}
This page took 0.139753 seconds and 4 git commands to generate.