update compat
[lttv.git] / ltt / branches / poly / lttv / modules / gui / controlflow / processlist.c
CommitLineData
ce0214a6 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 */
f0d936c0 18
4e4d11b3 19#ifdef HAVE_CONFIG_H
20#include <config.h>
21#endif
22
fa2c4dbe 23#include <gtk/gtk.h>
6871f7d1 24#include <gdk/gdk.h>
fa2c4dbe 25#include <glib.h>
a95bc95a 26#include <string.h>
27#include <stdlib.h>
1c736ed5 28#include <math.h>
d66666fe 29
30#include "processlist.h"
1c736ed5 31#include "drawing.h"
d66666fe 32#include "drawitem.h"
fa2c4dbe 33
ca0f8a8e 34#define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
ca0f8a8e 35
1c736ed5 36/* Preallocated Size of the index_to_pixmap array */
37#define ALLOCATE_PROCESSES 1000
ca0f8a8e 38
f0d936c0 39/*****************************************************************************
40 * Methods to synchronize process list *
41 *****************************************************************************/
42
f0d936c0 43
a56a1ba4 44gint process_sort_func ( GtkTreeModel *model,
45 GtkTreeIter *it_a,
46 GtkTreeIter *it_b,
47 gpointer user_data)
fa2c4dbe 48{
117986b7 49 gchar *a_name;
b2a893e7 50 gchar *a_brand;
fcc08e1e 51 guint a_pid, a_tgid, a_ppid, a_cpu;
117986b7 52 gulong a_birth_s, a_birth_ns;
04e3de96 53 guint a_trace;
117986b7 54
55 gchar *b_name;
b2a893e7 56 gchar *b_brand;
fcc08e1e 57 guint b_pid, b_tgid, b_ppid, b_cpu;
117986b7 58 gulong b_birth_s, b_birth_ns;
04e3de96 59 guint b_trace;
117986b7 60
61 gtk_tree_model_get(model,
62 it_a,
fcc08e1e 63 PROCESS_COLUMN, &a_name,
64 BRAND_COLUMN, &a_brand,
65 PID_COLUMN, &a_pid,
66 TGID_COLUMN, &a_tgid,
67 PPID_COLUMN, &a_ppid,
68 CPU_COLUMN, &a_cpu,
69 BIRTH_S_COLUMN, &a_birth_s,
70 BIRTH_NS_COLUMN, &a_birth_ns,
71 TRACE_COLUMN, &a_trace,
117986b7 72 -1);
73
74 gtk_tree_model_get(model,
75 it_b,
fcc08e1e 76 PROCESS_COLUMN, &b_name,
77 BRAND_COLUMN, &b_brand,
78 PID_COLUMN, &b_pid,
79 TGID_COLUMN, &b_tgid,
80 PPID_COLUMN, &b_ppid,
81 CPU_COLUMN, &b_cpu,
82 BIRTH_S_COLUMN, &b_birth_s,
83 BIRTH_NS_COLUMN, &b_birth_ns,
84 TRACE_COLUMN, &b_trace,
117986b7 85 -1);
a56a1ba4 86
a56a1ba4 87
88 /* Order by PID */
117986b7 89 if(a_pid == 0 && b_pid == 0) {
90 /* If 0, order by CPU */
91 if(a_cpu > b_cpu) return 1;
18e29396 92 if(a_cpu < b_cpu) return -1;
a56a1ba4 93
117986b7 94 } else { /* if not 0, order by pid */
a56a1ba4 95
117986b7 96 if(a_pid > b_pid) return 1;
18e29396 97 if(a_pid < b_pid) return -1;
a56a1ba4 98 }
99
a56a1ba4 100 /* Order by birth second */
a56a1ba4 101
117986b7 102 if(a_birth_s > b_birth_s) return 1;
18e29396 103 if(a_birth_s < b_birth_s) return -1;
117986b7 104
a56a1ba4 105
106 /* Order by birth nanosecond */
117986b7 107 if(a_birth_ns > b_birth_ns) return 1;
18e29396 108 if(a_birth_ns < b_birth_ns) return -1;
a56a1ba4 109
d0cd7f09 110 /* Order by trace_num */
117986b7 111 if(a_trace > b_trace) return 1;
18e29396 112 if(a_trace < b_trace) return -1;
d0cd7f09 113
a56a1ba4 114 return 0;
fa2c4dbe 115
116}
117
7893f726 118static guint process_list_hash_fct(gconstpointer key)
fa2c4dbe 119{
2eef04b5 120 guint pid = ((const ProcessInfo*)key)->pid;
121 return ((pid>>8 ^ pid>>4 ^ pid>>2 ^ pid) ^ ((const ProcessInfo*)key)->cpu);
fa2c4dbe 122}
123
1d1df11d 124/* If hash is good, should be different */
7893f726 125static gboolean process_list_equ_fct(gconstpointer a, gconstpointer b)
fa2c4dbe 126{
a95bc95a 127 const ProcessInfo *pa = (const ProcessInfo*)a;
128 const ProcessInfo *pb = (const ProcessInfo*)b;
7893f726 129
1d1df11d 130 gboolean ret = TRUE;
131
132 if(likely(pa->pid != pb->pid))
133 ret = FALSE;
348c6ba8 134 if(likely((pa->pid == 0 && (pa->cpu != pb->cpu))))
1d1df11d 135 ret = FALSE;
348c6ba8 136 if(unlikely(ltt_time_compare(pa->birth, pb->birth) != 0))
1d1df11d 137 ret = FALSE;
348c6ba8 138 if(unlikely(pa->trace_num != pb->trace_num))
1d1df11d 139 ret = FALSE;
140
141 return ret;
fa2c4dbe 142}
143
4c69e0cc 144void destroy_hash_key(gpointer key);
fa2c4dbe 145
4c69e0cc 146void destroy_hash_data(gpointer data);
fa2c4dbe 147
148
9d7e0c25 149gboolean scroll_event(GtkWidget *widget, GdkEventScroll *event, gpointer data)
150{
151 ControlFlowData *control_flow_data =
152 (ControlFlowData*)g_object_get_data(
153 G_OBJECT(widget),
154 "control_flow_data");
155 Drawing_t *drawing = control_flow_data->drawing;
156 unsigned int cell_height =
157 get_cell_height(GTK_TREE_VIEW(control_flow_data->process_list->process_list_widget));
158
159 switch(event->direction) {
160 case GDK_SCROLL_UP:
161 gtk_adjustment_set_value(control_flow_data->v_adjust,
162 gtk_adjustment_get_value(control_flow_data->v_adjust) - cell_height);
163 break;
164 case GDK_SCROLL_DOWN:
165 gtk_adjustment_set_value(control_flow_data->v_adjust,
166 gtk_adjustment_get_value(control_flow_data->v_adjust) + cell_height);
167 break;
5e96e7e3 168 default:
169 g_error("should only scroll up and down.");
9d7e0c25 170 }
171 return TRUE;
172}
173
174
1c736ed5 175static void update_index_to_pixmap_each(ProcessInfo *key,
176 HashedProcessData *value,
177 ProcessList *process_list)
178{
179 guint array_index = processlist_get_index_from_data(process_list, value);
180
181 g_assert(array_index < process_list->index_to_pixmap->len);
182
183 GdkPixmap **pixmap =
184 (GdkPixmap**)&g_ptr_array_index(process_list->index_to_pixmap, array_index);
185
186 *pixmap = value->pixmap;
187}
188
189
7c0125e0 190void update_index_to_pixmap(ProcessList *process_list)
1c736ed5 191{
192 g_ptr_array_set_size(process_list->index_to_pixmap,
193 g_hash_table_size(process_list->process_hash));
194 g_hash_table_foreach(process_list->process_hash,
195 (GHFunc)update_index_to_pixmap_each,
196 process_list);
197}
198
199
200static void update_pixmap_size_each(ProcessInfo *key,
201 HashedProcessData *value,
202 guint width)
203{
204 GdkPixmap *old_pixmap = value->pixmap;
205
206 value->pixmap =
207 gdk_pixmap_new(old_pixmap,
208 width,
209 value->height,
210 -1);
211
212 gdk_pixmap_unref(old_pixmap);
213}
214
215
216void update_pixmap_size(ProcessList *process_list, guint width)
217{
218 g_hash_table_foreach(process_list->process_hash,
219 (GHFunc)update_pixmap_size_each,
220 (gpointer)width);
221}
222
223
224typedef struct _CopyPixmap {
225 GdkDrawable *dest;
226 GdkGC *gc;
227 GdkDrawable *src;
228 gint xsrc, ysrc, xdest, ydest, width, height;
229} CopyPixmap;
230
231static void copy_pixmap_region_each(ProcessInfo *key,
232 HashedProcessData *value,
233 CopyPixmap *cp)
234{
235 GdkPixmap *src = cp->src;
236 GdkPixmap *dest = cp->dest;
237
238 if(dest == NULL)
239 dest = value->pixmap;
240 if(src == NULL)
241 src = value->pixmap;
242
243 gdk_draw_drawable (dest,
244 cp->gc,
245 src,
246 cp->xsrc, cp->ysrc,
247 cp->xdest, cp->ydest,
248 cp->width, cp->height);
249}
250
251
252
253
254void copy_pixmap_region(ProcessList *process_list, GdkDrawable *dest,
255 GdkGC *gc, GdkDrawable *src,
256 gint xsrc, gint ysrc,
257 gint xdest, gint ydest, gint width, gint height)
258{
259 CopyPixmap cp = { dest, gc, src, xsrc, ysrc, xdest, ydest, width, height };
260
261 g_hash_table_foreach(process_list->process_hash,
262 (GHFunc)copy_pixmap_region_each,
263 &cp);
264}
265
266
267
268typedef struct _RectanglePixmap {
269 gboolean filled;
270 gint x, y, width, height;
271 GdkGC *gc;
272} RectanglePixmap;
273
274static void rectangle_pixmap_each(ProcessInfo *key,
275 HashedProcessData *value,
276 RectanglePixmap *rp)
277{
278 if(rp->height == -1)
279 rp->height = value->height;
280
281 gdk_draw_rectangle (value->pixmap,
282 rp->gc,
283 rp->filled,
284 rp->x, rp->y,
285 rp->width, rp->height);
286}
287
288
289
290
291void rectangle_pixmap(ProcessList *process_list, GdkGC *gc,
292 gboolean filled, gint x, gint y, gint width, gint height)
293{
294 RectanglePixmap rp = { filled, x, y, width, height, gc };
295
296 g_hash_table_foreach(process_list->process_hash,
297 (GHFunc)rectangle_pixmap_each,
298 &rp);
299}
300
301
302/* Renders each pixmaps into on big drawable */
303void copy_pixmap_to_screen(ProcessList *process_list,
304 GdkDrawable *dest,
305 GdkGC *gc,
306 gint x, gint y,
307 gint width, gint height)
308{
866fefbd 309 if(process_list->index_to_pixmap->len == 0) return;
310 guint cell_height = process_list->cell_height;
311
1c736ed5 312 /* Get indexes */
313 gint begin = floor(y/(double)cell_height);
314 gint end = MIN(ceil((y+height)/(double)cell_height),
315 process_list->index_to_pixmap->len);
316 gint i;
cc09b702 317
1c736ed5 318 for(i=begin; i<end; i++) {
319 g_assert(i<process_list->index_to_pixmap->len);
320 /* Render the pixmap to the screen */
321 GdkPixmap *pixmap =
6cec4cd2 322 //(GdkPixmap*)g_ptr_array_index(process_list->index_to_pixmap, i);
323 GDK_PIXMAP(g_ptr_array_index(process_list->index_to_pixmap, i));
1c736ed5 324
325 gdk_draw_drawable (dest,
326 gc,
327 pixmap,
328 x, 0,
329 x, i*cell_height,
330 width, cell_height);
331
332 }
333
334
335}
336
337
338
339
340
341
342
fa2c4dbe 343
344
4c69e0cc 345ProcessList *processlist_construct(void)
f0d936c0 346{
a56a1ba4 347 GtkTreeViewColumn *column;
348 GtkCellRenderer *renderer;
349
ba90bc77 350 ProcessList* process_list = g_new(ProcessList,1);
a56a1ba4 351
ba90bc77 352 process_list->number_of_process = 0;
a56a1ba4 353
4e86ae2e 354 process_list->current_hash_data = NULL;
355
a56a1ba4 356 /* Create the Process list */
f5d980bf 357 process_list->list_store = gtk_list_store_new ( N_COLUMNS,
7b5f6cf1 358 G_TYPE_STRING,
a56a1ba4 359 G_TYPE_STRING,
360 G_TYPE_UINT,
e92eabaf 361 G_TYPE_UINT,
a95bc95a 362 G_TYPE_UINT,
fcc08e1e 363 G_TYPE_UINT,
a56a1ba4 364 G_TYPE_ULONG,
d0cd7f09 365 G_TYPE_ULONG,
04e3de96 366 G_TYPE_UINT);
a56a1ba4 367
368
f5d980bf 369 process_list->process_list_widget =
a56a1ba4 370 gtk_tree_view_new_with_model
f5d980bf 371 (GTK_TREE_MODEL (process_list->list_store));
f3b7430d 372
f5d980bf 373 g_object_unref (G_OBJECT (process_list->list_store));
a56a1ba4 374
f3b7430d 375 gtk_tree_sortable_set_default_sort_func(
f5d980bf 376 GTK_TREE_SORTABLE(process_list->list_store),
a56a1ba4 377 process_sort_func,
378 NULL,
379 NULL);
80fdc3cb 380
381
382 gtk_tree_sortable_set_sort_column_id(
383 GTK_TREE_SORTABLE(process_list->list_store),
384 GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID,
385 GTK_SORT_ASCENDING);
386
387
14963be0 388 process_list->process_hash = g_hash_table_new_full(
7893f726 389 process_list_hash_fct, process_list_equ_fct,
a56a1ba4 390 destroy_hash_key, destroy_hash_data
391 );
392
393
394 gtk_tree_view_set_headers_visible(
3cb8b205 395 GTK_TREE_VIEW(process_list->process_list_widget), TRUE);
a56a1ba4 396
397 /* Create a column, associating the "text" attribute of the
398 * cell_renderer to the first column of the model */
399 /* Columns alignment : 0.0 : Left 0.5 : Center 1.0 : Right */
400 renderer = gtk_cell_renderer_text_new ();
866fefbd 401 process_list->renderer = renderer;
402
6871f7d1 403 gint vertical_separator;
404 gtk_widget_style_get (GTK_WIDGET (process_list->process_list_widget),
405 "vertical-separator", &vertical_separator,
406 NULL);
866fefbd 407 gtk_cell_renderer_get_size(renderer,
408 GTK_WIDGET(process_list->process_list_widget),
409 NULL,
410 NULL,
411 NULL,
412 NULL,
413 &process_list->cell_height);
6871f7d1 414
c9b629ae 415#if GTK_CHECK_VERSION(2,4,15)
416 guint ypad;
417 g_object_get(G_OBJECT(renderer), "ypad", &ypad, NULL);
85690c4b 418
c9b629ae 419 process_list->cell_height += ypad;
420#endif
6871f7d1 421 process_list->cell_height += vertical_separator;
422
423
a56a1ba4 424 column = gtk_tree_view_column_new_with_attributes ( "Process",
425 renderer,
426 "text",
427 PROCESS_COLUMN,
428 NULL);
429 gtk_tree_view_column_set_alignment (column, 0.0);
8badf73a 430 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_GROW_ONLY);
431 gtk_tree_view_column_set_resizable(column, TRUE);
a56a1ba4 432 gtk_tree_view_append_column (
f5d980bf 433 GTK_TREE_VIEW (process_list->process_list_widget), column);
b9a010a2 434
435 process_list->button = column->button;
7b5f6cf1 436
437 column = gtk_tree_view_column_new_with_attributes ( "Brand",
438 renderer,
439 "text",
440 BRAND_COLUMN,
441 NULL);
442 gtk_tree_view_column_set_alignment (column, 0.0);
8badf73a 443 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_GROW_ONLY);
444 gtk_tree_view_column_set_resizable(column, TRUE);
7b5f6cf1 445 gtk_tree_view_append_column (
446 GTK_TREE_VIEW (process_list->process_list_widget), column);
447
a56a1ba4 448 column = gtk_tree_view_column_new_with_attributes ( "PID",
449 renderer,
450 "text",
451 PID_COLUMN,
452 NULL);
8badf73a 453 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_GROW_ONLY);
454 gtk_tree_view_column_set_resizable(column, TRUE);
a56a1ba4 455 gtk_tree_view_append_column (
f5d980bf 456 GTK_TREE_VIEW (process_list->process_list_widget), column);
a56a1ba4 457
fcc08e1e 458 column = gtk_tree_view_column_new_with_attributes ( "TGID",
459 renderer,
460 "text",
461 TGID_COLUMN,
462 NULL);
8badf73a 463 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_GROW_ONLY);
464 gtk_tree_view_column_set_resizable(column, TRUE);
fcc08e1e 465 gtk_tree_view_append_column (
466 GTK_TREE_VIEW (process_list->process_list_widget), column);
467
e92eabaf 468 column = gtk_tree_view_column_new_with_attributes ( "PPID",
469 renderer,
470 "text",
471 PPID_COLUMN,
472 NULL);
8badf73a 473 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_GROW_ONLY);
474 gtk_tree_view_column_set_resizable(column, TRUE);
e92eabaf 475 gtk_tree_view_append_column (
476 GTK_TREE_VIEW (process_list->process_list_widget), column);
a95bc95a 477
478 column = gtk_tree_view_column_new_with_attributes ( "CPU",
479 renderer,
480 "text",
481 CPU_COLUMN,
482 NULL);
8badf73a 483 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_GROW_ONLY);
484 gtk_tree_view_column_set_resizable(column, TRUE);
a95bc95a 485 gtk_tree_view_append_column (
486 GTK_TREE_VIEW (process_list->process_list_widget), column);
a56a1ba4 487
488 column = gtk_tree_view_column_new_with_attributes ( "Birth sec",
489 renderer,
490 "text",
491 BIRTH_S_COLUMN,
492 NULL);
8badf73a 493 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_GROW_ONLY);
494 gtk_tree_view_column_set_resizable(column, TRUE);
a56a1ba4 495 gtk_tree_view_append_column (
f5d980bf 496 GTK_TREE_VIEW (process_list->process_list_widget), column);
a56a1ba4 497
498 //gtk_tree_view_column_set_visible(column, 0);
499 //
500 column = gtk_tree_view_column_new_with_attributes ( "Birth nsec",
501 renderer,
502 "text",
503 BIRTH_NS_COLUMN,
504 NULL);
8badf73a 505 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_GROW_ONLY);
506 gtk_tree_view_column_set_resizable(column, TRUE);
a56a1ba4 507 gtk_tree_view_append_column (
f5d980bf 508 GTK_TREE_VIEW (process_list->process_list_widget), column);
a56a1ba4 509
d0cd7f09 510 column = gtk_tree_view_column_new_with_attributes ( "TRACE",
511 renderer,
512 "text",
513 TRACE_COLUMN,
514 NULL);
8badf73a 515 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_GROW_ONLY);
516 gtk_tree_view_column_set_resizable(column, TRUE);
d0cd7f09 517 gtk_tree_view_append_column (
518 GTK_TREE_VIEW (process_list->process_list_widget), column);
519
520
a56a1ba4 521 //gtk_tree_view_column_set_visible(column, 0);
522
523 g_object_set_data_full(
f5d980bf 524 G_OBJECT(process_list->process_list_widget),
ba90bc77 525 "process_list_Data",
526 process_list,
a56a1ba4 527 (GDestroyNotify)processlist_destroy);
528
1c736ed5 529 process_list->index_to_pixmap = g_ptr_array_sized_new(ALLOCATE_PROCESSES);
530
ba90bc77 531 return process_list;
f0d936c0 532}
b9a010a2 533
ba90bc77 534void processlist_destroy(ProcessList *process_list)
f0d936c0 535{
b9a010a2 536 g_debug("processlist_destroy %p", process_list);
14963be0 537 g_hash_table_destroy(process_list->process_hash);
538 process_list->process_hash = NULL;
1c736ed5 539 g_ptr_array_free(process_list->index_to_pixmap, TRUE);
f0d936c0 540
ba90bc77 541 g_free(process_list);
b9a010a2 542 g_debug("processlist_destroy end");
543}
544
545static gboolean remove_hash_item(ProcessInfo *process_info,
546 HashedProcessData *hashed_process_data,
547 ProcessList *process_list)
548{
b9a010a2 549 GtkTreeIter iter;
550
ad96f4a0 551 iter = hashed_process_data->y_iter;
b9a010a2 552
553 gtk_list_store_remove (process_list->list_store, &iter);
1c736ed5 554 gdk_pixmap_unref(hashed_process_data->pixmap);
b9a010a2 555
1d1df11d 556 if(likely(process_list->current_hash_data != NULL)) {
557 if(likely(hashed_process_data ==
0f090e21 558 process_list->current_hash_data[process_info->trace_num][process_info->cpu]))
559 process_list->current_hash_data[process_info->trace_num][process_info->cpu] = NULL;
d2d199a6 560 }
b9a010a2 561 return TRUE; /* remove the element from the hash table */
f0d936c0 562}
563
b9a010a2 564void processlist_clear(ProcessList *process_list)
565{
566 g_info("processlist_clear %p", process_list);
567
568 g_hash_table_foreach_remove(process_list->process_hash,
569 (GHRFunc)remove_hash_item,
570 (gpointer)process_list);
571 process_list->number_of_process = 0;
1c736ed5 572 update_index_to_pixmap(process_list);
b9a010a2 573}
574
575
ba90bc77 576GtkWidget *processlist_get_widget(ProcessList *process_list)
f0d936c0 577{
f5d980bf 578 return process_list->process_list_widget;
f0d936c0 579}
580
581
4c69e0cc 582void destroy_hash_key(gpointer key)
f0d936c0 583{
a56a1ba4 584 g_free(key);
fa2c4dbe 585}
586
4c69e0cc 587void destroy_hash_data(gpointer data)
fa2c4dbe 588{
a56a1ba4 589 g_free(data);
fa2c4dbe 590}
591
f4b88a7d 592
593void processlist_set_name(ProcessList *process_list,
594 GQuark name,
595 HashedProcessData *hashed_process_data)
596{
597 gtk_list_store_set ( process_list->list_store, &hashed_process_data->y_iter,
598 PROCESS_COLUMN, g_quark_to_string(name),
599 -1);
600}
601
7b5f6cf1 602void processlist_set_brand(ProcessList *process_list,
603 GQuark brand,
604 HashedProcessData *hashed_process_data)
605{
606 gtk_list_store_set ( process_list->list_store, &hashed_process_data->y_iter,
607 BRAND_COLUMN, g_quark_to_string(brand),
608 -1);
609}
fcc08e1e 610
611void processlist_set_tgid(ProcessList *process_list,
612 guint tgid,
613 HashedProcessData *hashed_process_data)
614{
615 gtk_list_store_set ( process_list->list_store, &hashed_process_data->y_iter,
616 TGID_COLUMN, tgid,
617 -1);
618}
619
1fc7847f 620void processlist_set_ppid(ProcessList *process_list,
621 guint ppid,
622 HashedProcessData *hashed_process_data)
623{
624 gtk_list_store_set ( process_list->list_store, &hashed_process_data->y_iter,
625 PPID_COLUMN, ppid,
626 -1);
627}
628
629
ba90bc77 630int processlist_add( ProcessList *process_list,
1c736ed5 631 Drawing_t *drawing,
a56a1ba4 632 guint pid,
fcc08e1e 633 guint tgid,
a95bc95a 634 guint cpu,
e92eabaf 635 guint ppid,
a56a1ba4 636 LttTime *birth,
d0cd7f09 637 guint trace_num,
f4b88a7d 638 GQuark name,
7b5f6cf1 639 GQuark brand,
a56a1ba4 640 guint *height,
4e86ae2e 641 ProcessInfo **pm_process_info,
f5d980bf 642 HashedProcessData **pm_hashed_process_data)
fa2c4dbe 643{
a56a1ba4 644 ProcessInfo *Process_Info = g_new(ProcessInfo, 1);
14963be0 645 HashedProcessData *hashed_process_data = g_new(HashedProcessData, 1);
f5d980bf 646 *pm_hashed_process_data = hashed_process_data;
4e86ae2e 647 *pm_process_info = Process_Info;
04e3de96 648
a56a1ba4 649 Process_Info->pid = pid;
fcc08e1e 650 Process_Info->tgid = tgid;
a95bc95a 651 if(pid == 0)
652 Process_Info->cpu = cpu;
653 else
654 Process_Info->cpu = 0;
e92eabaf 655 Process_Info->ppid = ppid;
a56a1ba4 656 Process_Info->birth = *birth;
d0cd7f09 657 Process_Info->trace_num = trace_num;
b9a010a2 658
659 /* When we create it from before state update, we are sure that the
660 * last event occured before the beginning of the global area.
661 *
662 * If it is created after state update, this value (0) will be
663 * overriden by the new state before anything is drawn.
664 */
23093869 665 hashed_process_data->x.over = 0;
e72908ed 666 hashed_process_data->x.over_used = FALSE;
b2743953 667 hashed_process_data->x.over_marked = FALSE;
23093869 668 hashed_process_data->x.middle = 0;
e72908ed 669 hashed_process_data->x.middle_used = FALSE;
b2743953 670 hashed_process_data->x.middle_marked = FALSE;
23093869 671 hashed_process_data->x.under = 0;
e72908ed 672 hashed_process_data->x.under_used = FALSE;
b2743953 673 hashed_process_data->x.under_marked = FALSE;
674 hashed_process_data->next_good_time = ltt_time_zero;
1c736ed5 675
a56a1ba4 676 /* Add a new row to the model */
ad96f4a0 677 gtk_list_store_append ( process_list->list_store,
678 &hashed_process_data->y_iter);
679
680 gtk_list_store_set ( process_list->list_store, &hashed_process_data->y_iter,
f4b88a7d 681 PROCESS_COLUMN, g_quark_to_string(name),
7b5f6cf1 682 BRAND_COLUMN, g_quark_to_string(brand),
a56a1ba4 683 PID_COLUMN, pid,
fcc08e1e 684 TGID_COLUMN, tgid,
e92eabaf 685 PPID_COLUMN, ppid,
40debf7b 686 CPU_COLUMN, cpu,
a56a1ba4 687 BIRTH_S_COLUMN, birth->tv_sec,
688 BIRTH_NS_COLUMN, birth->tv_nsec,
d0cd7f09 689 TRACE_COLUMN, trace_num,
a56a1ba4 690 -1);
866fefbd 691 //gtk_tree_view_set_model(GTK_TREE_VIEW(process_list->process_list_widget),
692 // GTK_TREE_MODEL(process_list->list_store));
693 //gtk_container_resize_children(GTK_CONTAINER(process_list->process_list_widget));
694
a95bc95a 695 g_hash_table_insert(process_list->process_hash,
a56a1ba4 696 (gpointer)Process_Info,
14963be0 697 (gpointer)hashed_process_data);
a56a1ba4 698
ba90bc77 699 process_list->number_of_process++;
a56a1ba4 700
866fefbd 701 hashed_process_data->height = process_list->cell_height;
702
1c736ed5 703 g_assert(hashed_process_data->height != 0);
704
705 *height = hashed_process_data->height * process_list->number_of_process;
706
707 hashed_process_data->pixmap =
708 gdk_pixmap_new(drawing->drawing_area->window,
709 drawing->alloc_width,
710 hashed_process_data->height,
711 -1);
a56a1ba4 712
1c736ed5 713 // Clear the image
714 gdk_draw_rectangle (hashed_process_data->pixmap,
715 drawing->drawing_area->style->black_gc,
716 TRUE,
717 0, 0,
718 drawing->alloc_width,
719 hashed_process_data->height);
720
721 update_index_to_pixmap(process_list);
722
723
a56a1ba4 724 return 0;
f0d936c0 725}
726
ba90bc77 727int processlist_remove( ProcessList *process_list,
a56a1ba4 728 guint pid,
a95bc95a 729 guint cpu,
d0cd7f09 730 LttTime *birth,
731 guint trace_num)
f0d936c0 732{
4e86ae2e 733 ProcessInfo process_info;
14963be0 734 HashedProcessData *hashed_process_data;
a56a1ba4 735 GtkTreeIter iter;
736
4e86ae2e 737 process_info.pid = pid;
324cdea4 738 if(pid == 0)
4e86ae2e 739 process_info.cpu = cpu;
324cdea4 740 else
4e86ae2e 741 process_info.cpu = 0;
742 process_info.birth = *birth;
743 process_info.trace_num = trace_num;
a56a1ba4 744
745
1d1df11d 746 hashed_process_data =
a56a1ba4 747 (HashedProcessData*)g_hash_table_lookup(
14963be0 748 process_list->process_hash,
1d1df11d 749 &process_info);
750 if(likely(hashed_process_data != NULL))
a56a1ba4 751 {
ad96f4a0 752 iter = hashed_process_data->y_iter;
a56a1ba4 753
f5d980bf 754 gtk_list_store_remove (process_list->list_store, &iter);
e800cf84 755
14963be0 756 g_hash_table_remove(process_list->process_hash,
4e86ae2e 757 &process_info);
758
1d1df11d 759 if(likely(process_list->current_hash_data != NULL)) {
0f090e21 760 if(likely(hashed_process_data == process_list->current_hash_data[trace_num][cpu])) {
761 process_list->current_hash_data[trace_num][cpu] = NULL;
0e9000a1 762 }
4e86ae2e 763 }
1c736ed5 764
765 gdk_pixmap_unref(hashed_process_data->pixmap);
766
767 update_index_to_pixmap(process_list);
768
ba90bc77 769 process_list->number_of_process--;
a56a1ba4 770
771 return 0;
772 } else {
773 return 1;
774 }
fa2c4dbe 775}
776
777
40debf7b 778#if 0
6550d711 779static inline guint get_cpu_number_from_name(GQuark name)
a95bc95a 780{
a95bc95a 781 const gchar *string;
782 char *begin;
783 guint cpu;
784
785 string = g_quark_to_string(name);
786
787 begin = strrchr(string, '/');
788 begin++;
789
790 g_assert(begin != '\0');
791
792 cpu = strtoul(begin, NULL, 10);
793
794 return cpu;
795}
40debf7b 796#endif //0
This page took 0.097437 seconds and 4 git commands to generate.