resourceview: fix stuck irq problem
[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) {
165051d2 849 irq = g_array_index(ts->cpu_states[cpu].irq_stack, gint, ts->cpu_states[cpu].irq_stack->len-1);
750eb11a 850 } else
8743690d 851 return 0;
8743690d 852
8743690d 853 guint trace_num = ts->parent.index;
854
8743690d 855 /* Well, the process_out existed : we must get it in the process hash
856 * or add it, and draw its items.
857 */
858 /* Add process to process list (if not present) */
859 guint pl_height = 0;
860 HashedResourceData *hashed_process_data = NULL;
67f72973 861 ProcessList *process_list = resourceview_data->process_list;
862
863 hashed_process_data = resourcelist_obtain_irq(resourceview_data, trace_num, irq);
671c625b 864 // TODO: fix this, it's ugly and slow:
865 GQuark name;
866 {
867 gchar *str;
43ed82b5 868 str = g_strdup_printf("IRQ %" PRIu64 " [%s]", irq, (char*)g_quark_to_string(ts->irq_names[irq]));
671c625b 869 name = g_quark_from_string(str);
870 g_free(str);
871 }
872 gtk_tree_store_set(resourceview_data->process_list->list_store, &hashed_process_data->y_iter, NAME_COLUMN, g_quark_to_string(name), -1);
8743690d 873
874 /* Now, the process is in the state hash and our own process hash.
875 * We definitely can draw the items related to the ending state.
876 */
877
878 if(likely(ltt_time_compare(hashed_process_data->next_good_time,
879 evtime) > 0))
880 {
881 if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
882 TimeWindow time_window =
67f72973 883 lttvwindow_get_time_window(resourceview_data->tab);
8743690d 884
885#ifdef EXTRA_CHECK
886 if(ltt_time_compare(evtime, time_window.start_time) == -1
887 || ltt_time_compare(evtime, time_window.end_time) == 1)
888 return;
889#endif //EXTRA_CHECK
67f72973 890 Drawing_t *drawing = resourceview_data->drawing;
8743690d 891 guint width = drawing->width;
892 guint x;
893 convert_time_to_pixels(
894 time_window,
895 evtime,
896 width,
897 &x);
898
899 /* Draw collision indicator */
900 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
901 gdk_draw_point(hashed_process_data->pixmap,
902 drawing->gc,
903 x,
904 COLLISION_POSITION(hashed_process_data->height));
905 hashed_process_data->x.middle_marked = TRUE;
906 }
907 }
908 else {
909 TimeWindow time_window =
67f72973 910 lttvwindow_get_time_window(resourceview_data->tab);
8743690d 911
912#ifdef EXTRA_CHECK
913 if(ltt_time_compare(evtime, time_window.start_time) == -1
914 || ltt_time_compare(evtime, time_window.end_time) == 1)
915 return;
916#endif //EXTRA_CHECK
67f72973 917 Drawing_t *drawing = resourceview_data->drawing;
8743690d 918 guint width = drawing->width;
919 guint x;
920
921 convert_time_to_pixels(
922 time_window,
923 evtime,
924 width,
925 &x);
926
927
928 /* Jump over draw if we are at the same x position */
929 if(unlikely(x == hashed_process_data->x.middle &&
930 hashed_process_data->x.middle_used))
931 {
932 if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
933 /* Draw collision indicator */
934 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
935 gdk_draw_point(hashed_process_data->pixmap,
936 drawing->gc,
937 x,
938 COLLISION_POSITION(hashed_process_data->height));
939 hashed_process_data->x.middle_marked = TRUE;
940 }
941 /* jump */
942 }
943 else {
944
945 DrawContext draw_context;
946 /* Now create the drawing context that will be used to draw
947 * items related to the last state. */
948 draw_context.drawable = hashed_process_data->pixmap;
949 draw_context.gc = drawing->gc;
950 draw_context.pango_layout = drawing->pango_layout;
951 draw_context.drawinfo.start.x = hashed_process_data->x.middle;
952 draw_context.drawinfo.end.x = x;
953
954 draw_context.drawinfo.y.over = 1;
955 draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
956 draw_context.drawinfo.y.under = hashed_process_data->height;
957
958 draw_context.drawinfo.start.offset.over = 0;
959 draw_context.drawinfo.start.offset.middle = 0;
960 draw_context.drawinfo.start.offset.under = 0;
961 draw_context.drawinfo.end.offset.over = 0;
962 draw_context.drawinfo.end.offset.middle = 0;
963 draw_context.drawinfo.end.offset.under = 0;
964
965 {
966 /* Draw the line */
967 PropertiesLine prop_line;
968 prop_line.line_width = STATE_LINE_WIDTH;
969 prop_line.style = GDK_LINE_SOLID;
970 prop_line.y = MIDDLE;
971 irq_set_line_color(&prop_line, &ts->irq_states[irq]);
972 draw_line((void*)&prop_line, (void*)&draw_context);
973 }
974 /* become the last x position */
975 hashed_process_data->x.middle = x;
976 hashed_process_data->x.middle_used = TRUE;
977 hashed_process_data->x.middle_marked = FALSE;
978
979 /* Calculate the next good time */
980 convert_pixels_to_time(width, x+1, time_window,
981 &hashed_process_data->next_good_time);
982 }
983 }
984
985 return 0;
986}
987
0305fe77 988int before_execmode_hook_soft_irq(void *hook_data, void *call_data)
989{
990 LttvTraceHook *th = (LttvTraceHook*)hook_data;
991 EventsRequest *events_request = (EventsRequest*)th->hook_data;
992 ControlFlowData *resourceview_data = events_request->viewer_data;
993
994 LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
995
996 LttvTracefileState *tfs = (LttvTracefileState *)call_data;
997 LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
750eb11a 998 struct marker_info *minfo;
0305fe77 999
1000 LttEvent *e;
1001 e = ltt_tracefile_get_event(tfc->tf);
1002
1003 LttTime evtime = ltt_event_time(e);
1004
1005 LttTrace *trace = tfc->t_context->t;
1006
1007 /* we are in a execmode, before the state update. We must draw the
1008 * items corresponding to the state before it changes : now is the right
1009 * time to do it.
1010 */
1011 /* For the pid */
1012
1013 guint64 softirq;
1014 guint cpu = tfs->cpu;
1015
750eb11a 1016 /*
1017 * Check for LTT_CHANNEL_KERNEL channel name and event ID
1018 * corresponding to LTT_EVENT_SOFT_IRQ_RAISE, LTT_EVENT_SOFT_IRQ_ENTRY
1019 * or LTT_EVENT_SOFT_IRQ_EXIT.
1020 */
1021 if (tfc->tf->name != LTT_CHANNEL_KERNEL)
1022 return 0;
1023 minfo = marker_get_info_from_id(tfc->tf->mdata, e->event_id);
1024 g_assert(minfo != NULL);
1025 if (minfo->name == LTT_EVENT_SOFT_IRQ_RAISE
1026 || minfo->name == LTT_EVENT_SOFT_IRQ_ENTRY) {
0305fe77 1027 softirq = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 0));
750eb11a 1028 } else if (minfo->name == LTT_EVENT_SOFT_IRQ_EXIT) {
0305fe77 1029 softirq = ts->cpu_states[cpu].last_soft_irq;
750eb11a 1030 } else
0305fe77 1031 return 0;
0305fe77 1032
1033 guint trace_num = ts->parent.index;
1034
1035 /* Well, the process_out existed : we must get it in the process hash
1036 * or add it, and draw its items.
1037 */
1038 /* Add process to process list (if not present) */
1039 guint pl_height = 0;
1040 HashedResourceData *hashed_process_data = NULL;
1041 ProcessList *process_list = resourceview_data->process_list;
1042
1043 hashed_process_data = resourcelist_obtain_soft_irq(resourceview_data, trace_num, softirq);
1044
1045 /* Now, the process is in the state hash and our own process hash.
1046 * We definitely can draw the items related to the ending state.
1047 */
1048
1049 if(likely(ltt_time_compare(hashed_process_data->next_good_time,
1050 evtime) > 0))
1051 {
1052 if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
1053 TimeWindow time_window =
1054 lttvwindow_get_time_window(resourceview_data->tab);
1055
1056#ifdef EXTRA_CHECK
1057 if(ltt_time_compare(evtime, time_window.start_time) == -1
1058 || ltt_time_compare(evtime, time_window.end_time) == 1)
1059 return;
1060#endif //EXTRA_CHECK
1061 Drawing_t *drawing = resourceview_data->drawing;
1062 guint width = drawing->width;
1063 guint x;
1064 convert_time_to_pixels(
1065 time_window,
1066 evtime,
1067 width,
1068 &x);
1069
1070 /* Draw collision indicator */
1071 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
1072 gdk_draw_point(hashed_process_data->pixmap,
1073 drawing->gc,
1074 x,
1075 COLLISION_POSITION(hashed_process_data->height));
1076 hashed_process_data->x.middle_marked = TRUE;
1077 }
1078 }
1079 else {
1080 TimeWindow time_window =
1081 lttvwindow_get_time_window(resourceview_data->tab);
1082
1083#ifdef EXTRA_CHECK
1084 if(ltt_time_compare(evtime, time_window.start_time) == -1
1085 || ltt_time_compare(evtime, time_window.end_time) == 1)
1086 return;
1087#endif //EXTRA_CHECK
1088 Drawing_t *drawing = resourceview_data->drawing;
1089 guint width = drawing->width;
1090 guint x;
1091
1092 convert_time_to_pixels(
1093 time_window,
1094 evtime,
1095 width,
1096 &x);
1097
1098
1099 /* Jump over draw if we are at the same x position */
1100 if(unlikely(x == hashed_process_data->x.middle &&
1101 hashed_process_data->x.middle_used))
1102 {
1103 if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
1104 /* Draw collision indicator */
1105 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
1106 gdk_draw_point(hashed_process_data->pixmap,
1107 drawing->gc,
1108 x,
1109 COLLISION_POSITION(hashed_process_data->height));
1110 hashed_process_data->x.middle_marked = TRUE;
1111 }
1112 /* jump */
1113 }
1114 else {
1115
1116 DrawContext draw_context;
1117 /* Now create the drawing context that will be used to draw
1118 * items related to the last state. */
1119 draw_context.drawable = hashed_process_data->pixmap;
1120 draw_context.gc = drawing->gc;
1121 draw_context.pango_layout = drawing->pango_layout;
1122 draw_context.drawinfo.start.x = hashed_process_data->x.middle;
1123 draw_context.drawinfo.end.x = x;
1124
1125 draw_context.drawinfo.y.over = 1;
1126 draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
1127 draw_context.drawinfo.y.under = hashed_process_data->height;
1128
1129 draw_context.drawinfo.start.offset.over = 0;
1130 draw_context.drawinfo.start.offset.middle = 0;
1131 draw_context.drawinfo.start.offset.under = 0;
1132 draw_context.drawinfo.end.offset.over = 0;
1133 draw_context.drawinfo.end.offset.middle = 0;
1134 draw_context.drawinfo.end.offset.under = 0;
1135
1136 {
1137 /* Draw the line */
1138 PropertiesLine prop_line;
1139 prop_line.line_width = STATE_LINE_WIDTH;
1140 prop_line.style = GDK_LINE_SOLID;
1141 prop_line.y = MIDDLE;
1142 soft_irq_set_line_color(&prop_line, &ts->soft_irq_states[softirq]);
1143 draw_line((void*)&prop_line, (void*)&draw_context);
1144 }
1145 /* become the last x position */
1146 hashed_process_data->x.middle = x;
1147 hashed_process_data->x.middle_used = TRUE;
1148 hashed_process_data->x.middle_marked = FALSE;
1149
1150 /* Calculate the next good time */
1151 convert_pixels_to_time(width, x+1, time_window,
1152 &hashed_process_data->next_good_time);
1153 }
1154 }
1155
1156 return 0;
1157}
1158
38726a78 1159int before_execmode_hook_trap(void *hook_data, void *call_data)
1160{
1161 LttvTraceHook *th = (LttvTraceHook*)hook_data;
1162 EventsRequest *events_request = (EventsRequest*)th->hook_data;
1163 ControlFlowData *resourceview_data = events_request->viewer_data;
1164
1165 LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
1166
1167 LttvTracefileState *tfs = (LttvTracefileState *)call_data;
1168 LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
750eb11a 1169 struct marker_info *minfo;
38726a78 1170
1171 LttEvent *e;
1172 e = ltt_tracefile_get_event(tfc->tf);
1173
1174 LttTime evtime = ltt_event_time(e);
1175
1176 LttTrace *trace = tfc->t_context->t;
1177
1178 /* we are in a execmode, before the state update. We must draw the
1179 * items corresponding to the state before it changes : now is the right
1180 * time to do it.
1181 */
1182 /* For the pid */
1183
1184 guint64 trap;
1185 guint cpu = tfs->cpu;
1186
750eb11a 1187 /*
1188 * Check for LTT_CHANNEL_KERNEL channel name and event ID
4e9bbbd3 1189 * corresponding to LTT_EVENT_TRAP/PAGE_FAULT_ENTRY or
1190 * LTT_EVENT_TRAP/PAGE_FAULT_EXIT.
750eb11a 1191 */
1192 if (tfc->tf->name != LTT_CHANNEL_KERNEL)
1193 return 0;
1194 minfo = marker_get_info_from_id(tfc->tf->mdata, e->event_id);
1195 g_assert(minfo != NULL);
4e9bbbd3 1196 if (minfo->name == LTT_EVENT_TRAP_ENTRY
1197 || minfo->name == LTT_EVENT_PAGE_FAULT_ENTRY
1198 || minfo->name == LTT_EVENT_PAGE_FAULT_NOSEM_ENTRY) {
38726a78 1199 trap = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 0));
4e9bbbd3 1200 } else if (minfo->name == LTT_EVENT_TRAP_EXIT
1201 || minfo->name == LTT_EVENT_PAGE_FAULT_EXIT
1202 || minfo->name == LTT_EVENT_PAGE_FAULT_NOSEM_EXIT) {
38726a78 1203 trap = ts->cpu_states[cpu].last_trap;
750eb11a 1204 } else
38726a78 1205 return 0;
38726a78 1206
1207 guint trace_num = ts->parent.index;
1208
1209 /* Well, the process_out existed : we must get it in the process hash
1210 * or add it, and draw its items.
1211 */
1212 /* Add process to process list (if not present) */
1213 guint pl_height = 0;
1214 HashedResourceData *hashed_process_data = NULL;
1215 ProcessList *process_list = resourceview_data->process_list;
1216
1217 hashed_process_data = resourcelist_obtain_trap(resourceview_data, trace_num, trap);
1218
1219 /* Now, the process is in the state hash and our own process hash.
1220 * We definitely can draw the items related to the ending state.
1221 */
1222
1223 if(likely(ltt_time_compare(hashed_process_data->next_good_time,
1224 evtime) > 0))
1225 {
1226 if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
1227 TimeWindow time_window =
1228 lttvwindow_get_time_window(resourceview_data->tab);
1229
1230#ifdef EXTRA_CHECK
1231 if(ltt_time_compare(evtime, time_window.start_time) == -1
1232 || ltt_time_compare(evtime, time_window.end_time) == 1)
1233 return;
1234#endif //EXTRA_CHECK
1235 Drawing_t *drawing = resourceview_data->drawing;
1236 guint width = drawing->width;
1237 guint x;
1238 convert_time_to_pixels(
1239 time_window,
1240 evtime,
1241 width,
1242 &x);
1243
1244 /* Draw collision indicator */
1245 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
1246 gdk_draw_point(hashed_process_data->pixmap,
1247 drawing->gc,
1248 x,
1249 COLLISION_POSITION(hashed_process_data->height));
1250 hashed_process_data->x.middle_marked = TRUE;
1251 }
1252 }
1253 else {
1254 TimeWindow time_window =
1255 lttvwindow_get_time_window(resourceview_data->tab);
1256
1257#ifdef EXTRA_CHECK
1258 if(ltt_time_compare(evtime, time_window.start_time) == -1
1259 || ltt_time_compare(evtime, time_window.end_time) == 1)
1260 return;
1261#endif //EXTRA_CHECK
1262 Drawing_t *drawing = resourceview_data->drawing;
1263 guint width = drawing->width;
1264 guint x;
1265
1266 convert_time_to_pixels(
1267 time_window,
1268 evtime,
1269 width,
1270 &x);
1271
1272
1273 /* Jump over draw if we are at the same x position */
1274 if(unlikely(x == hashed_process_data->x.middle &&
1275 hashed_process_data->x.middle_used))
1276 {
1277 if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
1278 /* Draw collision indicator */
1279 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
1280 gdk_draw_point(hashed_process_data->pixmap,
1281 drawing->gc,
1282 x,
1283 COLLISION_POSITION(hashed_process_data->height));
1284 hashed_process_data->x.middle_marked = TRUE;
1285 }
1286 /* jump */
1287 }
1288 else {
1289
1290 DrawContext draw_context;
1291 /* Now create the drawing context that will be used to draw
1292 * items related to the last state. */
1293 draw_context.drawable = hashed_process_data->pixmap;
1294 draw_context.gc = drawing->gc;
1295 draw_context.pango_layout = drawing->pango_layout;
1296 draw_context.drawinfo.start.x = hashed_process_data->x.middle;
1297 draw_context.drawinfo.end.x = x;
1298
1299 draw_context.drawinfo.y.over = 1;
1300 draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
1301 draw_context.drawinfo.y.under = hashed_process_data->height;
1302
1303 draw_context.drawinfo.start.offset.over = 0;
1304 draw_context.drawinfo.start.offset.middle = 0;
1305 draw_context.drawinfo.start.offset.under = 0;
1306 draw_context.drawinfo.end.offset.over = 0;
1307 draw_context.drawinfo.end.offset.middle = 0;
1308 draw_context.drawinfo.end.offset.under = 0;
1309
1310 {
1311 /* Draw the line */
1312 PropertiesLine prop_line;
1313 prop_line.line_width = STATE_LINE_WIDTH;
1314 prop_line.style = GDK_LINE_SOLID;
1315 prop_line.y = MIDDLE;
1316 trap_set_line_color(&prop_line, &ts->trap_states[trap]);
1317 draw_line((void*)&prop_line, (void*)&draw_context);
1318 }
1319 /* become the last x position */
1320 hashed_process_data->x.middle = x;
1321 hashed_process_data->x.middle_used = TRUE;
1322 hashed_process_data->x.middle_marked = FALSE;
1323
1324 /* Calculate the next good time */
1325 convert_pixels_to_time(width, x+1, time_window,
1326 &hashed_process_data->next_good_time);
1327 }
1328 }
1329
1330 return 0;
1331}
1332
0305fe77 1333
20d16f82 1334int before_bdev_event_hook(void *hook_data, void *call_data)
1335{
dd455fb8 1336 LttvTraceHook *th = (LttvTraceHook*)hook_data;
1337 EventsRequest *events_request = (EventsRequest*)th->hook_data;
67f72973 1338 ControlFlowData *resourceview_data = events_request->viewer_data;
20d16f82 1339
1340 LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
1341
1342 LttvTracefileState *tfs = (LttvTracefileState *)call_data;
1343 LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
1344
1345 LttEvent *e;
1346 e = ltt_tracefile_get_event(tfc->tf);
1347
1348 LttTime evtime = ltt_event_time(e);
1349
20d16f82 1350 /* we are in a execmode, before the state update. We must draw the
1351 * items corresponding to the state before it changes : now is the right
1352 * time to do it.
1353 */
1354 /* For the pid */
1355
1356 guint cpu = tfs->cpu;
ca5c76ed 1357 guint8 major = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 0));
1358 guint8 minor = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 1));
1359 guint oper = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 2));
20d16f82 1360 gint devcode_gint = MKDEV(major,minor);
1361
20d16f82 1362 guint trace_num = ts->parent.index;
1363
1364 LttvBdevState *bdev = g_hash_table_lookup(ts->bdev_states, &devcode_gint);
23e59a12 1365 /* the result of the lookup might be NULL. that's ok, the rest of the function
1366 should understand it was not found and that its state is unknown */
20d16f82 1367
20d16f82 1368 /* Well, the process_out existed : we must get it in the process hash
1369 * or add it, and draw its items.
1370 */
1371 /* Add process to process list (if not present) */
1372 guint pl_height = 0;
1373 HashedResourceData *hashed_process_data = NULL;
67f72973 1374 ProcessList *process_list = resourceview_data->process_list;
20d16f82 1375// LttTime birth = process->creation_time;
1376
1377// if(likely(process_list->current_hash_data[trace_num][cpu] != NULL)) {
1378// hashed_process_data = process_list->current_hash_data[trace_num][cpu];
1379// } else {
67f72973 1380 hashed_process_data = resourcelist_obtain_bdev(resourceview_data, trace_num, devcode_gint);
1381 ////hashed_process_data = processlist_get_process_data(process_list, resourceq, trace_num);
20d16f82 1382// hashed_process_data = processlist_get_process_data(process_list,
1383// pid,
1384// process->cpu,
1385// &birth,
1386// trace_num);
67f72973 1387//
20d16f82 1388 /* Set the current process */
1389// process_list->current_hash_data[trace_num][process->cpu] =
1390// hashed_process_data;
1391// }
1392
1393 /* Now, the process is in the state hash and our own process hash.
1394 * We definitely can draw the items related to the ending state.
1395 */
1396
1397 if(likely(ltt_time_compare(hashed_process_data->next_good_time,
1398 evtime) > 0))
1399 {
1400 if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
1401 TimeWindow time_window =
67f72973 1402 lttvwindow_get_time_window(resourceview_data->tab);
20d16f82 1403
1404#ifdef EXTRA_CHECK
1405 if(ltt_time_compare(evtime, time_window.start_time) == -1
1406 || ltt_time_compare(evtime, time_window.end_time) == 1)
1407 return;
1408#endif //EXTRA_CHECK
67f72973 1409 Drawing_t *drawing = resourceview_data->drawing;
20d16f82 1410 guint width = drawing->width;
1411 guint x;
1412 convert_time_to_pixels(
1413 time_window,
1414 evtime,
1415 width,
1416 &x);
1417
1418 /* Draw collision indicator */
1419 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
1420 gdk_draw_point(hashed_process_data->pixmap,
1421 drawing->gc,
1422 x,
1423 COLLISION_POSITION(hashed_process_data->height));
1424 hashed_process_data->x.middle_marked = TRUE;
1425 }
1426 }
1427 else {
1428 TimeWindow time_window =
67f72973 1429 lttvwindow_get_time_window(resourceview_data->tab);
20d16f82 1430
1431#ifdef EXTRA_CHECK
1432 if(ltt_time_compare(evtime, time_window.start_time) == -1
1433 || ltt_time_compare(evtime, time_window.end_time) == 1)
1434 return;
1435#endif //EXTRA_CHECK
67f72973 1436 Drawing_t *drawing = resourceview_data->drawing;
20d16f82 1437 guint width = drawing->width;
1438 guint x;
1439
1440 convert_time_to_pixels(
1441 time_window,
1442 evtime,
1443 width,
1444 &x);
1445
1446
1447 /* Jump over draw if we are at the same x position */
1448 if(unlikely(x == hashed_process_data->x.middle &&
1449 hashed_process_data->x.middle_used))
1450 {
1451 if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
1452 /* Draw collision indicator */
1453 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
1454 gdk_draw_point(hashed_process_data->pixmap,
1455 drawing->gc,
1456 x,
1457 COLLISION_POSITION(hashed_process_data->height));
1458 hashed_process_data->x.middle_marked = TRUE;
1459 }
1460 /* jump */
1461 }
1462 else {
1463
1464 DrawContext draw_context;
1465 /* Now create the drawing context that will be used to draw
1466 * items related to the last state. */
1467 draw_context.drawable = hashed_process_data->pixmap;
1468 draw_context.gc = drawing->gc;
1469 draw_context.pango_layout = drawing->pango_layout;
1470 draw_context.drawinfo.start.x = hashed_process_data->x.middle;
1471 draw_context.drawinfo.end.x = x;
1472
1473 draw_context.drawinfo.y.over = 1;
1474 draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
1475 draw_context.drawinfo.y.under = hashed_process_data->height;
1476
1477 draw_context.drawinfo.start.offset.over = 0;
1478 draw_context.drawinfo.start.offset.middle = 0;
1479 draw_context.drawinfo.start.offset.under = 0;
1480 draw_context.drawinfo.end.offset.over = 0;
1481 draw_context.drawinfo.end.offset.middle = 0;
1482 draw_context.drawinfo.end.offset.under = 0;
1483
1484 {
1485 /* Draw the line */
1486 PropertiesLine prop_line;
1487 prop_line.line_width = STATE_LINE_WIDTH;
1488 prop_line.style = GDK_LINE_SOLID;
1489 prop_line.y = MIDDLE;
1490 bdev_set_line_color(&prop_line, bdev);
1491 draw_line((void*)&prop_line, (void*)&draw_context);
1492 }
1493 /* become the last x position */
1494 hashed_process_data->x.middle = x;
1495 hashed_process_data->x.middle_used = TRUE;
1496 hashed_process_data->x.middle_marked = FALSE;
1497
1498 /* Calculate the next good time */
1499 convert_pixels_to_time(width, x+1, time_window,
1500 &hashed_process_data->next_good_time);
1501 }
1502 }
1503
1504 return 0;
1505}
1506
9e01e6d4 1507gint update_time_window_hook(void *hook_data, void *call_data)
1508{
67f72973 1509 ControlFlowData *resourceview_data = (ControlFlowData*) hook_data;
1510 Drawing_t *drawing = resourceview_data->drawing;
1511 ProcessList *process_list = resourceview_data->process_list;
9e01e6d4 1512
1513 const TimeWindowNotifyData *time_window_nofify_data =
1514 ((const TimeWindowNotifyData *)call_data);
1515
1516 TimeWindow *old_time_window =
1517 time_window_nofify_data->old_time_window;
1518 TimeWindow *new_time_window =
1519 time_window_nofify_data->new_time_window;
1520
1521 /* Update the ruler */
67f72973 1522 drawing_update_ruler(resourceview_data->drawing,
9e01e6d4 1523 new_time_window);
1524
1525
1526 /* Two cases : zoom in/out or scrolling */
1527
1528 /* In order to make sure we can reuse the old drawing, the scale must
1529 * be the same and the new time interval being partly located in the
1530 * currently shown time interval. (reuse is only for scrolling)
1531 */
1532
1533 g_info("Old time window HOOK : %lu, %lu to %lu, %lu",
1534 old_time_window->start_time.tv_sec,
1535 old_time_window->start_time.tv_nsec,
1536 old_time_window->time_width.tv_sec,
1537 old_time_window->time_width.tv_nsec);
1538
1539 g_info("New time window HOOK : %lu, %lu to %lu, %lu",
1540 new_time_window->start_time.tv_sec,
1541 new_time_window->start_time.tv_nsec,
1542 new_time_window->time_width.tv_sec,
1543 new_time_window->time_width.tv_nsec);
1544
1545 if( new_time_window->time_width.tv_sec == old_time_window->time_width.tv_sec
1546 && new_time_window->time_width.tv_nsec == old_time_window->time_width.tv_nsec)
1547 {
1548 /* Same scale (scrolling) */
1549 g_info("scrolling");
1550 LttTime *ns = &new_time_window->start_time;
1551 LttTime *nw = &new_time_window->time_width;
1552 LttTime *os = &old_time_window->start_time;
1553 LttTime *ow = &old_time_window->time_width;
1554 LttTime old_end = old_time_window->end_time;
1555 LttTime new_end = new_time_window->end_time;
1556 //if(ns<os+w<ns+w)
1557 //if(ns<os+w && os+w<ns+w)
1558 //if(ns<old_end && os<ns)
1559 if(ltt_time_compare(*ns, old_end) == -1
1560 && ltt_time_compare(*os, *ns) == -1)
1561 {
1562 g_info("scrolling near right");
1563 /* Scroll right, keep right part of the screen */
1564 guint x = 0;
67f72973 1565 guint width = resourceview_data->drawing->width;
9e01e6d4 1566 convert_time_to_pixels(
1567 *old_time_window,
1568 *ns,
1569 width,
1570 &x);
1571
1572 /* Copy old data to new location */
1573 copy_pixmap_region(process_list,
1574 NULL,
67f72973 1575 resourceview_data->drawing->drawing_area->style->black_gc,
9e01e6d4 1576 NULL,
1577 x, 0,
1578 0, 0,
67f72973 1579 resourceview_data->drawing->width-x+SAFETY, -1);
9e01e6d4 1580
1581 if(drawing->damage_begin == drawing->damage_end)
67f72973 1582 drawing->damage_begin = resourceview_data->drawing->width-x;
9e01e6d4 1583 else
1584 drawing->damage_begin = 0;
1585
67f72973 1586 drawing->damage_end = resourceview_data->drawing->width;
9e01e6d4 1587
1588 /* Clear the data request background, but not SAFETY */
1589 rectangle_pixmap(process_list,
67f72973 1590 resourceview_data->drawing->drawing_area->style->black_gc,
9e01e6d4 1591 TRUE,
1592 drawing->damage_begin+SAFETY, 0,
1593 drawing->damage_end - drawing->damage_begin, // do not overlap
1594 -1);
1595 gtk_widget_queue_draw(drawing->drawing_area);
9e01e6d4 1596
1597 /* Get new data for the rest. */
67f72973 1598 drawing_data_request(resourceview_data->drawing,
9e01e6d4 1599 drawing->damage_begin, 0,
1600 drawing->damage_end - drawing->damage_begin,
67f72973 1601 resourceview_data->drawing->height);
9e01e6d4 1602 } else {
9e01e6d4 1603 if(ltt_time_compare(*ns,*os) == -1
1604 && ltt_time_compare(*os,new_end) == -1)
1605 {
1606 g_info("scrolling near left");
1607 /* Scroll left, keep left part of the screen */
1608 guint x = 0;
67f72973 1609 guint width = resourceview_data->drawing->width;
9e01e6d4 1610 convert_time_to_pixels(
1611 *new_time_window,
1612 *os,
1613 width,
1614 &x);
1615
1616 /* Copy old data to new location */
1617 copy_pixmap_region (process_list,
1618 NULL,
67f72973 1619 resourceview_data->drawing->drawing_area->style->black_gc,
9e01e6d4 1620 NULL,
1621 0, 0,
1622 x, 0,
1623 -1, -1);
1624
1625 if(drawing->damage_begin == drawing->damage_end)
1626 drawing->damage_end = x;
1627 else
1628 drawing->damage_end =
67f72973 1629 resourceview_data->drawing->width;
9e01e6d4 1630
1631 drawing->damage_begin = 0;
1632
1633 rectangle_pixmap (process_list,
67f72973 1634 resourceview_data->drawing->drawing_area->style->black_gc,
9e01e6d4 1635 TRUE,
1636 drawing->damage_begin, 0,
1637 drawing->damage_end - drawing->damage_begin, // do not overlap
1638 -1);
1639
1640 gtk_widget_queue_draw(drawing->drawing_area);
9e01e6d4 1641
1642 /* Get new data for the rest. */
67f72973 1643 drawing_data_request(resourceview_data->drawing,
9e01e6d4 1644 drawing->damage_begin, 0,
1645 drawing->damage_end - drawing->damage_begin,
67f72973 1646 resourceview_data->drawing->height);
9e01e6d4 1647
1648 } else {
1649 if(ltt_time_compare(*ns,*os) == 0)
1650 {
1651 g_info("not scrolling");
1652 } else {
1653 g_info("scrolling far");
1654 /* Cannot reuse any part of the screen : far jump */
1655
1656
1657 rectangle_pixmap (process_list,
67f72973 1658 resourceview_data->drawing->drawing_area->style->black_gc,
9e01e6d4 1659 TRUE,
1660 0, 0,
67f72973 1661 resourceview_data->drawing->width+SAFETY, // do not overlap
9e01e6d4 1662 -1);
1663
9e01e6d4 1664 gtk_widget_queue_draw(drawing->drawing_area);
1665
1666 drawing->damage_begin = 0;
67f72973 1667 drawing->damage_end = resourceview_data->drawing->width;
9e01e6d4 1668
67f72973 1669 drawing_data_request(resourceview_data->drawing,
9e01e6d4 1670 0, 0,
67f72973 1671 resourceview_data->drawing->width,
1672 resourceview_data->drawing->height);
9e01e6d4 1673
1674 }
1675 }
1676 }
1677 } else {
1678 /* Different scale (zoom) */
1679 g_info("zoom");
1680
1681 rectangle_pixmap (process_list,
67f72973 1682 resourceview_data->drawing->drawing_area->style->black_gc,
9e01e6d4 1683 TRUE,
1684 0, 0,
67f72973 1685 resourceview_data->drawing->width+SAFETY, // do not overlap
9e01e6d4 1686 -1);
1687
9e01e6d4 1688 gtk_widget_queue_draw(drawing->drawing_area);
1689
1690 drawing->damage_begin = 0;
67f72973 1691 drawing->damage_end = resourceview_data->drawing->width;
9e01e6d4 1692
67f72973 1693 drawing_data_request(resourceview_data->drawing,
9e01e6d4 1694 0, 0,
67f72973 1695 resourceview_data->drawing->width,
1696 resourceview_data->drawing->height);
9e01e6d4 1697 }
1698
1699 /* Update directly when scrolling */
67f72973 1700 gdk_window_process_updates(resourceview_data->drawing->drawing_area->window,
9e01e6d4 1701 TRUE);
1702
1703 return 0;
1704}
1705
1706gint traceset_notify(void *hook_data, void *call_data)
1707{
67f72973 1708 ControlFlowData *resourceview_data = (ControlFlowData*) hook_data;
1709 Drawing_t *drawing = resourceview_data->drawing;
9e01e6d4 1710
1711 if(unlikely(drawing->gc == NULL)) {
1712 return FALSE;
1713 }
1714 if(drawing->dotted_gc == NULL) {
1715 return FALSE;
1716 }
1717
67f72973 1718 drawing_clear(resourceview_data->drawing);
1719 processlist_clear(resourceview_data->process_list);
9e01e6d4 1720 gtk_widget_set_size_request(
67f72973 1721 resourceview_data->drawing->drawing_area,
1722 -1, processlist_get_height(resourceview_data->process_list));
1723 redraw_notify(resourceview_data, NULL);
9e01e6d4 1724
67f72973 1725 request_background_data(resourceview_data);
9e01e6d4 1726
1727 return FALSE;
1728}
1729
1730gint redraw_notify(void *hook_data, void *call_data)
1731{
67f72973 1732 ControlFlowData *resourceview_data = (ControlFlowData*) hook_data;
1733 Drawing_t *drawing = resourceview_data->drawing;
9e01e6d4 1734 GtkWidget *widget = drawing->drawing_area;
1735
1736 drawing->damage_begin = 0;
1737 drawing->damage_end = drawing->width;
1738
1739 /* fun feature, to be separated someday... */
67f72973 1740 drawing_clear(resourceview_data->drawing);
1741 processlist_clear(resourceview_data->process_list);
9e01e6d4 1742 gtk_widget_set_size_request(
67f72973 1743 resourceview_data->drawing->drawing_area,
1744 -1, processlist_get_height(resourceview_data->process_list));
9e01e6d4 1745 // Clear the images
67f72973 1746 rectangle_pixmap (resourceview_data->process_list,
9e01e6d4 1747 widget->style->black_gc,
1748 TRUE,
1749 0, 0,
1750 drawing->alloc_width,
1751 -1);
1752
1753 gtk_widget_queue_draw(drawing->drawing_area);
1754
1755 if(drawing->damage_begin < drawing->damage_end)
1756 {
1757 drawing_data_request(drawing,
1758 drawing->damage_begin,
1759 0,
1760 drawing->damage_end-drawing->damage_begin,
1761 drawing->height);
1762 }
1763
9e01e6d4 1764 return FALSE;
1765
1766}
1767
1768
1769gint continue_notify(void *hook_data, void *call_data)
1770{
67f72973 1771 ControlFlowData *resourceview_data = (ControlFlowData*) hook_data;
1772 Drawing_t *drawing = resourceview_data->drawing;
9e01e6d4 1773
1774 if(drawing->damage_begin < drawing->damage_end)
1775 {
1776 drawing_data_request(drawing,
1777 drawing->damage_begin,
1778 0,
1779 drawing->damage_end-drawing->damage_begin,
1780 drawing->height);
1781 }
1782
1783 return FALSE;
1784}
1785
1786
1787gint update_current_time_hook(void *hook_data, void *call_data)
1788{
67f72973 1789 ControlFlowData *resourceview_data = (ControlFlowData*)hook_data;
1790 Drawing_t *drawing = resourceview_data->drawing;
9e01e6d4 1791
1792 LttTime current_time = *((LttTime*)call_data);
1793
1794 TimeWindow time_window =
67f72973 1795 lttvwindow_get_time_window(resourceview_data->tab);
9e01e6d4 1796
1797 LttTime time_begin = time_window.start_time;
1798 LttTime width = time_window.time_width;
1799 LttTime half_width;
1800 {
1801 guint64 time_ll = ltt_time_to_uint64(width);
1802 time_ll = time_ll >> 1; /* divide by two */
1803 half_width = ltt_time_from_uint64(time_ll);
1804 }
1805 LttTime time_end = ltt_time_add(time_begin, width);
1806
1807 LttvTracesetContext * tsc =
67f72973 1808 lttvwindow_get_traceset_context(resourceview_data->tab);
9e01e6d4 1809
1810 LttTime trace_start = tsc->time_span.start_time;
1811 LttTime trace_end = tsc->time_span.end_time;
1812
1813 g_info("New current time HOOK : %lu, %lu", current_time.tv_sec,
1814 current_time.tv_nsec);
9e01e6d4 1815
1816 /* If current time is inside time interval, just move the highlight
1817 * bar */
1818
1819 /* Else, we have to change the time interval. We have to tell it
1820 * to the main window. */
1821 /* The time interval change will take care of placing the current
1822 * time at the center of the visible area, or nearest possible if we are
1823 * at one end of the trace. */
1824
1825
1826 if(ltt_time_compare(current_time, time_begin) < 0)
1827 {
1828 TimeWindow new_time_window;
1829
1830 if(ltt_time_compare(current_time,
1831 ltt_time_add(trace_start,half_width)) < 0)
1832 time_begin = trace_start;
1833 else
1834 time_begin = ltt_time_sub(current_time,half_width);
1835
1836 new_time_window.start_time = time_begin;
1837 new_time_window.time_width = width;
1838 new_time_window.time_width_double = ltt_time_to_double(width);
1839 new_time_window.end_time = ltt_time_add(time_begin, width);
1840
67f72973 1841 lttvwindow_report_time_window(resourceview_data->tab, new_time_window);
9e01e6d4 1842 }
1843 else if(ltt_time_compare(current_time, time_end) > 0)
1844 {
1845 TimeWindow new_time_window;
1846
1847 if(ltt_time_compare(current_time, ltt_time_sub(trace_end, half_width)) > 0)
1848 time_begin = ltt_time_sub(trace_end,width);
1849 else
1850 time_begin = ltt_time_sub(current_time,half_width);
1851
1852 new_time_window.start_time = time_begin;
1853 new_time_window.time_width = width;
1854 new_time_window.time_width_double = ltt_time_to_double(width);
1855 new_time_window.end_time = ltt_time_add(time_begin, width);
1856
67f72973 1857 lttvwindow_report_time_window(resourceview_data->tab, new_time_window);
9e01e6d4 1858
1859 }
67f72973 1860 gtk_widget_queue_draw(resourceview_data->drawing->drawing_area);
9e01e6d4 1861
1862 /* Update directly when scrolling */
67f72973 1863 gdk_window_process_updates(resourceview_data->drawing->drawing_area->window,
9e01e6d4 1864 TRUE);
1865
1866 return 0;
1867}
1868
1869typedef struct _ClosureData {
1870 EventsRequest *events_request;
1871 LttvTracesetState *tss;
1872 LttTime end_time;
1873 guint x_end;
1874} ClosureData;
1875
58a9b31b 1876/* Draw line until end of the screen */
9e01e6d4 1877
1878void draw_closure(gpointer key, gpointer value, gpointer user_data)
1879{
67f72973 1880 ResourceUniqueNumeric *process_info = (ResourceUniqueNumeric*)key;
44ffb95f 1881 HashedResourceData *hashed_process_data = (HashedResourceData*)value;
1882 ClosureData *closure_data = (ClosureData*)user_data;
1883
1884 EventsRequest *events_request = closure_data->events_request;
67f72973 1885 ControlFlowData *resourceview_data = events_request->viewer_data;
44ffb95f 1886
1887 LttvTracesetState *tss = closure_data->tss;
1888 LttvTracesetContext *tsc = (LttvTracesetContext*)tss;
1889
1890 LttTime evtime = closure_data->end_time;
1891
1892 gboolean dodraw = TRUE;
1893
67f72973 1894 if(hashed_process_data->type == RV_RESOURCE_MACHINE)
1895 return;
1896
44ffb95f 1897 {
1898 /* For the process */
1899 /* First, check if the current process is in the state computation
1900 * process list. If it is there, that means we must add it right now and
1901 * draw items from the beginning of the read for it. If it is not
1902 * present, it's a new process and it was not present : it will
1903 * be added after the state update. */
1904#ifdef EXTRA_CHECK
1905 g_assert(lttv_traceset_number(tsc->ts) > 0);
1906#endif //EXTRA_CHECK
1907 LttvTraceContext *tc = tsc->traces[process_info->trace_num];
1908 LttvTraceState *ts = (LttvTraceState*)tc;
1909
67f72973 1910 /* Only draw for processes that are currently in the trace states */
44ffb95f 1911
67f72973 1912 ProcessList *process_list = resourceview_data->process_list;
44ffb95f 1913#ifdef EXTRA_CHECK
67f72973 1914 /* Should be alike when background info is ready */
1915 if(resourceview_data->background_info_waiting==0)
44ffb95f 1916 g_assert(ltt_time_compare(process->creation_time,
1917 process_info->birth) == 0);
1918#endif //EXTRA_CHECK
1919
67f72973 1920 /* Now, the process is in the state hash and our own process hash.
1921 * We definitely can draw the items related to the ending state.
1922 */
1923
1924 if(unlikely(ltt_time_compare(hashed_process_data->next_good_time,
1925 evtime) <= 0))
1926 {
1927 TimeWindow time_window =
1928 lttvwindow_get_time_window(resourceview_data->tab);
44ffb95f 1929
1930#ifdef EXTRA_CHECK
67f72973 1931 if(ltt_time_compare(evtime, time_window.start_time) == -1
1932 || ltt_time_compare(evtime, time_window.end_time) == 1)
1933 return;
44ffb95f 1934#endif //EXTRA_CHECK
67f72973 1935 Drawing_t *drawing = resourceview_data->drawing;
1936 guint width = drawing->width;
1937
1938 guint x = closure_data->x_end;
1939
1940 DrawContext draw_context;
1941
1942 /* Now create the drawing context that will be used to draw
1943 * items related to the last state. */
1944 draw_context.drawable = hashed_process_data->pixmap;
1945 draw_context.gc = drawing->gc;
1946 draw_context.pango_layout = drawing->pango_layout;
1947 draw_context.drawinfo.end.x = x;
1948
1949 draw_context.drawinfo.y.over = 1;
1950 draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
1951 draw_context.drawinfo.y.under = hashed_process_data->height;
1952
1953 draw_context.drawinfo.start.offset.over = 0;
1954 draw_context.drawinfo.start.offset.middle = 0;
1955 draw_context.drawinfo.start.offset.under = 0;
1956 draw_context.drawinfo.end.offset.over = 0;
1957 draw_context.drawinfo.end.offset.middle = 0;
1958 draw_context.drawinfo.end.offset.under = 0;
44ffb95f 1959#if 0
67f72973 1960 /* Jump over draw if we are at the same x position */
1961 if(x == hashed_process_data->x.over)
1962 {
1963 /* jump */
1964 } else {
1965 draw_context.drawinfo.start.x = hashed_process_data->x.over;
1966 /* Draw the line */
1967 PropertiesLine prop_line = prepare_execmode_line(process);
1968 draw_line((void*)&prop_line, (void*)&draw_context);
44ffb95f 1969
67f72973 1970 hashed_process_data->x.over = x;
1971 }
44ffb95f 1972#endif //0
1973
67f72973 1974 if(unlikely(x == hashed_process_data->x.middle &&
1975 hashed_process_data->x.middle_used)) {
44ffb95f 1976#if 0 /* do not mark closure : not missing information */
67f72973 1977 if(hashed_process_data->x.middle_marked == FALSE) {
1978 /* Draw collision indicator */
1979 gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
1980 gdk_draw_point(drawing->pixmap,
1981 drawing->gc,
1982 x,
1983 y+(height/2)-3);
1984 hashed_process_data->x.middle_marked = TRUE;
1985 }
44ffb95f 1986#endif //0
67f72973 1987 /* Jump */
1988 } else {
1989 draw_context.drawinfo.start.x = hashed_process_data->x.middle;
1990 /* Draw the line */
1991 if(dodraw) {
1992 PropertiesLine prop_line;
1993 prop_line.line_width = STATE_LINE_WIDTH;
1994 prop_line.style = GDK_LINE_SOLID;
1995 prop_line.y = MIDDLE;
1996 if(hashed_process_data->type == RV_RESOURCE_CPU)
1997 cpu_set_line_color(&prop_line, &ts->cpu_states[process_info->id]);
1998 else if(hashed_process_data->type == RV_RESOURCE_IRQ)
1999 irq_set_line_color(&prop_line, &ts->irq_states[process_info->id]);
0305fe77 2000 else if(hashed_process_data->type == RV_RESOURCE_SOFT_IRQ)
2001 soft_irq_set_line_color(&prop_line, &ts->soft_irq_states[process_info->id]);
38726a78 2002 else if(hashed_process_data->type == RV_RESOURCE_TRAP)
2003 trap_set_line_color(&prop_line, &ts->trap_states[process_info->id]);
67f72973 2004 else if(hashed_process_data->type == RV_RESOURCE_BDEV) {
2005 gint devcode_gint = process_info->id;
2006 LttvBdevState *bdev = g_hash_table_lookup(ts->bdev_states, &devcode_gint);
2007 // the lookup may return null; bdev_set_line_color must act appropriately
2008 bdev_set_line_color(&prop_line, bdev);
44ffb95f 2009 }
67f72973 2010
2011 draw_line((void*)&prop_line, (void*)&draw_context);
2012 }
44ffb95f 2013
67f72973 2014 /* become the last x position */
2015 if(likely(x != hashed_process_data->x.middle)) {
2016 hashed_process_data->x.middle = x;
2017 /* but don't use the pixel */
2018 hashed_process_data->x.middle_used = FALSE;
44ffb95f 2019
67f72973 2020 /* Calculate the next good time */
2021 convert_pixels_to_time(width, x+1, time_window,
2022 &hashed_process_data->next_good_time);
44ffb95f 2023 }
2024 }
67f72973 2025 }
44ffb95f 2026 }
9e01e6d4 2027}
2028
2029int before_chunk(void *hook_data, void *call_data)
2030{
2031 EventsRequest *events_request = (EventsRequest*)hook_data;
2032 LttvTracesetState *tss = (LttvTracesetState*)call_data;
2033 ControlFlowData *cfd = (ControlFlowData*)events_request->viewer_data;
2034#if 0
67f72973 2035 /* Deactivate sort */
9e01e6d4 2036 gtk_tree_sortable_set_sort_column_id(
2037 GTK_TREE_SORTABLE(cfd->process_list->list_store),
2038 TRACE_COLUMN,
2039 GTK_SORT_ASCENDING);
2040#endif //0
2041 drawing_chunk_begin(events_request, tss);
2042
2043 return 0;
2044}
2045
d389bc8d 2046/* before_request
2047 *
2048 * This gets executed just before an events request is executed
2049 */
2050
9e01e6d4 2051int before_request(void *hook_data, void *call_data)
2052{
2053 EventsRequest *events_request = (EventsRequest*)hook_data;
2054 LttvTracesetState *tss = (LttvTracesetState*)call_data;
2055
2056 drawing_data_request_begin(events_request, tss);
2057
2058 return 0;
2059}
2060
2061
2062/*
2063 * after request is necessary in addition of after chunk in order to draw
2064 * lines until the end of the screen. after chunk just draws lines until
2065 * the last event.
2066 *
2067 * for each process
2068 * draw closing line
2069 * expose
2070 */
2071int after_request(void *hook_data, void *call_data)
2072{
67f72973 2073 guint i;
2074 EventsRequest *events_request = (EventsRequest*)hook_data;
2075 ControlFlowData *resourceview_data = events_request->viewer_data;
2076 LttvTracesetState *tss = (LttvTracesetState*)call_data;
2077
2078 ProcessList *process_list = resourceview_data->process_list;
2079 LttTime end_time = events_request->end_time;
2080
2081 ClosureData closure_data;
2082 closure_data.events_request = (EventsRequest*)hook_data;
2083 closure_data.tss = tss;
2084 closure_data.end_time = end_time;
2085
2086 TimeWindow time_window =
2087 lttvwindow_get_time_window(resourceview_data->tab);
2088 guint width = resourceview_data->drawing->width;
2089 convert_time_to_pixels(
2090 time_window,
2091 end_time,
2092 width,
2093 &closure_data.x_end);
2094
2095
2096 /* Draw last items */
2097 for(i=0; i<RV_RESOURCE_COUNT; i++) {
2098 g_hash_table_foreach(resourcelist_get_resource_hash_table(resourceview_data, i), draw_closure,
2099 (void*)&closure_data);
2100 }
2101
2102 /* Request expose */
2103 drawing_request_expose(events_request, tss, end_time);
9e01e6d4 2104 return 0;
2105}
2106
2107/*
2108 * for each process
2109 * draw closing line
2110 * expose
2111 */
2112int after_chunk(void *hook_data, void *call_data)
2113{
2114 EventsRequest *events_request = (EventsRequest*)hook_data;
67f72973 2115 ControlFlowData *resourceview_data = events_request->viewer_data;
9e01e6d4 2116 LttvTracesetState *tss = (LttvTracesetState*)call_data;
2117 LttvTracesetContext *tsc = (LttvTracesetContext*)call_data;
2118 LttvTracefileContext *tfc = lttv_traceset_context_get_current_tfc(tsc);
2119 LttTime end_time;
2120
67f72973 2121 ProcessList *process_list = resourceview_data->process_list;
9e01e6d4 2122 guint i;
2123 LttvTraceset *traceset = tsc->ts;
2124 guint nb_trace = lttv_traceset_number(traceset);
2125
2126 /* Only execute when called for the first trace's events request */
43ed82b5 2127 if(!process_list->current_hash_data)
2128 return 0;
9e01e6d4 2129
2130 for(i = 0 ; i < nb_trace ; i++) {
2131 g_free(process_list->current_hash_data[i]);
2132 }
2133 g_free(process_list->current_hash_data);
2134 process_list->current_hash_data = NULL;
2135
2136 if(tfc != NULL)
2137 end_time = LTT_TIME_MIN(tfc->timestamp, events_request->end_time);
2138 else /* end of traceset, or position now out of request : end */
2139 end_time = events_request->end_time;
2140
2141 ClosureData closure_data;
2142 closure_data.events_request = (EventsRequest*)hook_data;
2143 closure_data.tss = tss;
2144 closure_data.end_time = end_time;
2145
2146 TimeWindow time_window =
67f72973 2147 lttvwindow_get_time_window(resourceview_data->tab);
2148 guint width = resourceview_data->drawing->width;
9e01e6d4 2149 convert_time_to_pixels(
2150 time_window,
2151 end_time,
2152 width,
2153 &closure_data.x_end);
2154
2155 /* Draw last items */
67f72973 2156 for(i=0; i<RV_RESOURCE_COUNT; i++) {
2157 g_hash_table_foreach(resourcelist_get_resource_hash_table(resourceview_data, i), draw_closure,
9e01e6d4 2158 (void*)&closure_data);
67f72973 2159 }
9e01e6d4 2160#if 0
2161 /* Reactivate sort */
2162 gtk_tree_sortable_set_sort_column_id(
67f72973 2163 GTK_TREE_SORTABLE(resourceview_data->process_list->list_store),
9e01e6d4 2164 GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID,
2165 GTK_SORT_ASCENDING);
2166
67f72973 2167 update_index_to_pixmap(resourceview_data->process_list);
9e01e6d4 2168 /* Request a full expose : drawing scrambled */
67f72973 2169 gtk_widget_queue_draw(resourceview_data->drawing->drawing_area);
9e01e6d4 2170#endif //0
2171 /* Request expose (updates damages zone also) */
2172 drawing_request_expose(events_request, tss, end_time);
2173
2174 return 0;
2175}
2176
2177/* after_statedump_end
2178 *
2179 * @param hook_data ControlFlowData structure of the viewer.
2180 * @param call_data Event context.
2181 *
2182 * This function adds items to be drawn in a queue for each process.
2183 *
2184 */
2185int before_statedump_end(void *hook_data, void *call_data)
2186{
67f72973 2187 gint i;
2188
dd455fb8 2189 LttvTraceHook *th = (LttvTraceHook*)hook_data;
2190 EventsRequest *events_request = (EventsRequest*)th->hook_data;
67f72973 2191 ControlFlowData *resourceview_data = events_request->viewer_data;
9e01e6d4 2192
2193 LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
2194
2195 LttvTracefileState *tfs = (LttvTracefileState *)call_data;
2196
2197 LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
2198
2199 LttvTracesetState *tss = (LttvTracesetState*)tfc->t_context->ts_context;
67f72973 2200 ProcessList *process_list = resourceview_data->process_list;
9e01e6d4 2201
2202 LttEvent *e;
2203 e = ltt_tracefile_get_event(tfc->tf);
2204
67f72973 2205 LttvFilter *filter = resourceview_data->filter;
9e01e6d4 2206 if(filter != NULL && filter->head != NULL)
2207 if(!lttv_filter_tree_parse(filter->head,e,tfc->tf,
2208 tfc->t_context->t,tfc,NULL,NULL))
2209 return FALSE;
2210
2211 LttTime evtime = ltt_event_time(e);
2212
2213 ClosureData closure_data;
2214 closure_data.events_request = events_request;
2215 closure_data.tss = tss;
2216 closure_data.end_time = evtime;
2217
2218 TimeWindow time_window =
67f72973 2219 lttvwindow_get_time_window(resourceview_data->tab);
2220 guint width = resourceview_data->drawing->width;
9e01e6d4 2221 convert_time_to_pixels(
2222 time_window,
2223 evtime,
2224 width,
2225 &closure_data.x_end);
2226
2227 /* Draw last items */
67f72973 2228
2229 for(i=0; i<RV_RESOURCE_COUNT; i++) {
2230 g_hash_table_foreach(resourcelist_get_resource_hash_table(resourceview_data, i), draw_closure,
9e01e6d4 2231 (void*)&closure_data);
67f72973 2232 }
9e01e6d4 2233#if 0
2234 /* Reactivate sort */
2235 gtk_tree_sortable_set_sort_column_id(
67f72973 2236 GTK_TREE_SORTABLE(resourceview_data->process_list->list_store),
9e01e6d4 2237 GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID,
2238 GTK_SORT_ASCENDING);
2239
67f72973 2240 update_index_to_pixmap(resourceview_data->process_list);
9e01e6d4 2241 /* Request a full expose : drawing scrambled */
67f72973 2242 gtk_widget_queue_draw(resourceview_data->drawing->drawing_area);
9e01e6d4 2243#endif //0
2244 /* Request expose (updates damages zone also) */
2245 drawing_request_expose(events_request, tss, evtime);
2246
2247 return 0;
2248}
This page took 0.138693 seconds and 4 git commands to generate.