1 /* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 Mathieu Desnoyers
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;
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.
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,
22 #include "processlist.h"
25 #define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
26 #define g_debug(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, format)
29 /*****************************************************************************
30 * Methods to synchronize process list *
31 *****************************************************************************/
33 /* Enumeration of the columns */
45 gint
process_sort_func ( GtkTreeModel
*model
,
52 memset(&a
, 0, sizeof(GValue
));
53 memset(&b
, 0, sizeof(GValue
));
56 gtk_tree_model_get_value( model
,
61 gtk_tree_model_get_value( model
,
66 if(G_VALUE_TYPE(&a
) == G_TYPE_UINT
67 && G_VALUE_TYPE(&b
) == G_TYPE_UINT
)
69 if(g_value_get_uint(&a
) > g_value_get_uint(&b
))
75 if(g_value_get_uint(&a
) < g_value_get_uint(&b
))
87 /* Order by birth second */
88 gtk_tree_model_get_value( model
,
93 gtk_tree_model_get_value( model
,
99 if(G_VALUE_TYPE(&a
) == G_TYPE_ULONG
100 && G_VALUE_TYPE(&b
) == G_TYPE_ULONG
)
102 if(g_value_get_ulong(&a
) > g_value_get_ulong(&b
))
108 if(g_value_get_ulong(&a
) < g_value_get_ulong(&b
))
120 /* Order by birth nanosecond */
121 gtk_tree_model_get_value( model
,
126 gtk_tree_model_get_value( model
,
132 if(G_VALUE_TYPE(&a
) == G_TYPE_ULONG
133 && G_VALUE_TYPE(&b
) == G_TYPE_ULONG
)
135 if(g_value_get_ulong(&a
) > g_value_get_ulong(&b
))
142 //if(g_value_get_ulong(&a) < g_value_get_ulong(&b))
144 // g_value_unset(&a);
145 // g_value_unset(&b);
154 /* Order by trace_num */
155 gtk_tree_model_get_value( model
,
160 gtk_tree_model_get_value( model
,
165 if(G_VALUE_TYPE(&a
) == G_TYPE_ULONG
166 && G_VALUE_TYPE(&b
) == G_TYPE_ULONG
)
168 if(g_value_get_ulong(&a
) > g_value_get_ulong(&b
))
174 if(g_value_get_ulong(&a
) < g_value_get_ulong(&b
))
189 guint
hash_fct(gconstpointer key
)
191 return ((ProcessInfo
*)key
)->pid
;
194 gboolean
equ_fct(gconstpointer a
, gconstpointer b
)
196 if(((ProcessInfo
*)a
)->pid
!= ((ProcessInfo
*)b
)->pid
)
198 // g_critical("compare %u and %u",((ProcessInfo*)a)->pid,((ProcessInfo*)b)->pid);
199 if(((ProcessInfo
*)a
)->birth
.tv_sec
!= ((ProcessInfo
*)b
)->birth
.tv_sec
)
201 // g_critical("compare %u and %u",((ProcessInfo*)a)->birth.tv_sec,((ProcessInfo*)b)->birth.tv_sec);
203 if(((ProcessInfo
*)a
)->birth
.tv_nsec
!= ((ProcessInfo
*)b
)->birth
.tv_nsec
)
205 // g_critical("compare %u and %u",((ProcessInfo*)a)->birth.tv_nsec,((ProcessInfo*)b)->birth.tv_nsec);
207 if(((ProcessInfo
*)a
)->trace_num
!= ((ProcessInfo
*)b
)->trace_num
)
213 void destroy_hash_key(gpointer key
);
215 void destroy_hash_data(gpointer data
);
220 ProcessList
*processlist_construct(void)
222 GtkTreeViewColumn
*column
;
223 GtkCellRenderer
*renderer
;
225 ProcessList
* process_list
= g_new(ProcessList
,1);
227 process_list
->number_of_process
= 0;
229 /* Create the Process list */
230 process_list
->list_store
= gtk_list_store_new ( N_COLUMNS
,
238 process_list
->process_list_widget
=
239 gtk_tree_view_new_with_model
240 (GTK_TREE_MODEL (process_list
->list_store
));
242 g_object_unref (G_OBJECT (process_list
->list_store
));
244 gtk_tree_sortable_set_sort_func(
245 GTK_TREE_SORTABLE(process_list
->list_store
),
251 gtk_tree_sortable_set_sort_column_id(
252 GTK_TREE_SORTABLE(process_list
->list_store
),
256 process_list
->process_hash
= g_hash_table_new_full(
258 destroy_hash_key
, destroy_hash_data
262 gtk_tree_view_set_headers_visible(
263 GTK_TREE_VIEW(process_list
->process_list_widget
), TRUE
);
265 /* Create a column, associating the "text" attribute of the
266 * cell_renderer to the first column of the model */
267 /* Columns alignment : 0.0 : Left 0.5 : Center 1.0 : Right */
268 renderer
= gtk_cell_renderer_text_new ();
269 column
= gtk_tree_view_column_new_with_attributes ( "Process",
274 gtk_tree_view_column_set_alignment (column
, 0.0);
275 gtk_tree_view_column_set_fixed_width (column
, 45);
276 gtk_tree_view_append_column (
277 GTK_TREE_VIEW (process_list
->process_list_widget
), column
);
279 column
= gtk_tree_view_column_new_with_attributes ( "PID",
284 gtk_tree_view_append_column (
285 GTK_TREE_VIEW (process_list
->process_list_widget
), column
);
288 column
= gtk_tree_view_column_new_with_attributes ( "Birth sec",
293 gtk_tree_view_append_column (
294 GTK_TREE_VIEW (process_list
->process_list_widget
), column
);
296 //gtk_tree_view_column_set_visible(column, 0);
298 column
= gtk_tree_view_column_new_with_attributes ( "Birth nsec",
303 gtk_tree_view_append_column (
304 GTK_TREE_VIEW (process_list
->process_list_widget
), column
);
306 column
= gtk_tree_view_column_new_with_attributes ( "TRACE",
311 gtk_tree_view_append_column (
312 GTK_TREE_VIEW (process_list
->process_list_widget
), column
);
315 //gtk_tree_view_column_set_visible(column, 0);
317 g_object_set_data_full(
318 G_OBJECT(process_list
->process_list_widget
),
321 (GDestroyNotify
)processlist_destroy
);
325 void processlist_destroy(ProcessList
*process_list
)
327 g_info("processlist_destroy %p", process_list
);
328 g_hash_table_destroy(process_list
->process_hash
);
329 process_list
->process_hash
= NULL
;
331 g_free(process_list
);
332 g_info("processlist_destroy end");
335 GtkWidget
*processlist_get_widget(ProcessList
*process_list
)
337 return process_list
->process_list_widget
;
342 gint
get_cell_height(GtkTreeView
*tree_view
)
345 GtkTreeViewColumn
*Column
= gtk_tree_view_get_column(tree_view
, 0);
346 //GList *Render_List = gtk_tree_view_column_get_cell_renderers(Column);
347 //GtkCellRenderer *Renderer = g_list_first(Render_List)->data;
349 //g_list_free(Render_List);
350 gtk_tree_view_column_cell_get_size(Column
, NULL
, NULL
, NULL
, NULL
, &height
);
351 //g_critical("cell 0 height : %u",height);
356 void destroy_hash_key(gpointer key
)
361 void destroy_hash_data(gpointer data
)
366 int processlist_add( ProcessList
*process_list
,
372 HashedProcessData
**pm_hashed_process_data
)
375 ProcessInfo
*Process_Info
= g_new(ProcessInfo
, 1);
376 HashedProcessData
*hashed_process_data
= g_new(HashedProcessData
, 1);
377 *pm_hashed_process_data
= hashed_process_data
;
379 Process_Info
->pid
= pid
;
380 Process_Info
->birth
= *birth
;
381 Process_Info
->trace_num
= trace_num
;
383 hashed_process_data
->draw_context
= g_new(DrawContext
, 1);
384 hashed_process_data
->draw_context
->drawable
= NULL
;
385 hashed_process_data
->draw_context
->gc
= NULL
;
386 hashed_process_data
->draw_context
->pango_layout
= NULL
;
387 hashed_process_data
->draw_context
->current
= g_new(DrawInfo
,1);
388 hashed_process_data
->draw_context
->current
->over
= g_new(ItemInfo
,1);
389 hashed_process_data
->draw_context
->current
->over
->x
= -1;
390 hashed_process_data
->draw_context
->current
->over
->y
= -1;
391 hashed_process_data
->draw_context
->current
->middle
= g_new(ItemInfo
,1);
392 hashed_process_data
->draw_context
->current
->middle
->x
= -1;
393 hashed_process_data
->draw_context
->current
->middle
->y
= -1;
394 hashed_process_data
->draw_context
->current
->under
= g_new(ItemInfo
,1);
395 hashed_process_data
->draw_context
->current
->under
->x
= -1;
396 hashed_process_data
->draw_context
->current
->under
->y
= -1;
397 hashed_process_data
->draw_context
->current
->modify_over
= g_new(ItemInfo
,1);
398 hashed_process_data
->draw_context
->current
->modify_over
->x
= -1;
399 hashed_process_data
->draw_context
->current
->modify_over
->y
= -1;
400 hashed_process_data
->draw_context
->current
->modify_middle
= g_new(ItemInfo
,1);
401 hashed_process_data
->draw_context
->current
->modify_middle
->x
= -1;
402 hashed_process_data
->draw_context
->current
->modify_middle
->y
= -1;
403 hashed_process_data
->draw_context
->current
->modify_under
= g_new(ItemInfo
,1);
404 hashed_process_data
->draw_context
->current
->modify_under
->x
= -1;
405 hashed_process_data
->draw_context
->current
->modify_under
->y
= -1;
406 hashed_process_data
->draw_context
->current
->status
= LTTV_STATE_UNNAMED
;
407 hashed_process_data
->draw_context
->previous
= g_new(DrawInfo
,1);
408 hashed_process_data
->draw_context
->previous
->over
= g_new(ItemInfo
,1);
409 hashed_process_data
->draw_context
->previous
->over
->x
= -1;
410 hashed_process_data
->draw_context
->previous
->over
->y
= -1;
411 hashed_process_data
->draw_context
->previous
->middle
= g_new(ItemInfo
,1);
412 hashed_process_data
->draw_context
->previous
->middle
->x
= -1;
413 hashed_process_data
->draw_context
->previous
->middle
->y
= -1;
414 hashed_process_data
->draw_context
->previous
->under
= g_new(ItemInfo
,1);
415 hashed_process_data
->draw_context
->previous
->under
->x
= -1;
416 hashed_process_data
->draw_context
->previous
->under
->y
= -1;
417 hashed_process_data
->draw_context
->previous
->modify_over
= g_new(ItemInfo
,1);
418 hashed_process_data
->draw_context
->previous
->modify_over
->x
= -1;
419 hashed_process_data
->draw_context
->previous
->modify_over
->y
= -1;
420 hashed_process_data
->draw_context
->previous
->modify_middle
= g_new(ItemInfo
,1);
421 hashed_process_data
->draw_context
->previous
->modify_middle
->x
= -1;
422 hashed_process_data
->draw_context
->previous
->modify_middle
->y
= -1;
423 hashed_process_data
->draw_context
->previous
->modify_under
= g_new(ItemInfo
,1);
424 hashed_process_data
->draw_context
->previous
->modify_under
->x
= -1;
425 hashed_process_data
->draw_context
->previous
->modify_under
->y
= -1;
426 hashed_process_data
->draw_context
->previous
->status
= LTTV_STATE_UNNAMED
;
428 /* Add a new row to the model */
429 gtk_list_store_append ( process_list
->list_store
, &iter
);
430 //g_critical ( "iter before : %s", gtk_tree_path_to_string (
431 // gtk_tree_model_get_path (
432 // GTK_TREE_MODEL(process_list->list_store),
434 gtk_list_store_set ( process_list
->list_store
, &iter
,
435 PROCESS_COLUMN
, name
,
437 BIRTH_S_COLUMN
, birth
->tv_sec
,
438 BIRTH_NS_COLUMN
, birth
->tv_nsec
,
439 TRACE_COLUMN
, trace_num
,
441 hashed_process_data
->row_ref
= gtk_tree_row_reference_new (
442 GTK_TREE_MODEL(process_list
->list_store
),
443 gtk_tree_model_get_path(
444 GTK_TREE_MODEL(process_list
->list_store
),
446 g_hash_table_insert( process_list
->process_hash
,
447 (gpointer
)Process_Info
,
448 (gpointer
)hashed_process_data
);
450 //g_critical ( "iter after : %s", gtk_tree_path_to_string (
451 // gtk_tree_model_get_path (
452 // GTK_TREE_MODEL(process_list->list_store),
454 process_list
->number_of_process
++;
456 *height
= get_cell_height(GTK_TREE_VIEW(process_list
->process_list_widget
))
457 * process_list
->number_of_process
;
464 int processlist_remove( ProcessList
*process_list
,
469 ProcessInfo Process_Info
;
471 HashedProcessData
*hashed_process_data
;
474 Process_Info
.pid
= pid
;
475 Process_Info
.birth
= *birth
;
476 Process_Info
.trace_num
= trace_num
;
479 if(hashed_process_data
=
480 (HashedProcessData
*)g_hash_table_lookup(
481 process_list
->process_hash
,
484 gtk_tree_model_get_iter (
485 GTK_TREE_MODEL(process_list
->list_store
),
487 gtk_tree_row_reference_get_path(
488 (GtkTreeRowReference
*)hashed_process_data
->row_ref
)
491 gtk_list_store_remove (process_list
->list_store
, &iter
);
493 g_free(hashed_process_data
->draw_context
->previous
->modify_under
);
494 g_free(hashed_process_data
->draw_context
->previous
->modify_middle
);
495 g_free(hashed_process_data
->draw_context
->previous
->modify_over
);
496 g_free(hashed_process_data
->draw_context
->previous
->under
);
497 g_free(hashed_process_data
->draw_context
->previous
->middle
);
498 g_free(hashed_process_data
->draw_context
->previous
->over
);
499 g_free(hashed_process_data
->draw_context
->previous
);
500 g_free(hashed_process_data
->draw_context
->current
->modify_under
);
501 g_free(hashed_process_data
->draw_context
->current
->modify_middle
);
502 g_free(hashed_process_data
->draw_context
->current
->modify_over
);
503 g_free(hashed_process_data
->draw_context
->current
->under
);
504 g_free(hashed_process_data
->draw_context
->current
->middle
);
505 g_free(hashed_process_data
->draw_context
->current
->over
);
506 g_free(hashed_process_data
->draw_context
->current
);
507 g_free(hashed_process_data
->draw_context
);
508 g_free(hashed_process_data
);
510 g_hash_table_remove(process_list
->process_hash
,
513 process_list
->number_of_process
--;
522 guint
processlist_get_height(ProcessList
*process_list
)
524 return get_cell_height(GTK_TREE_VIEW(process_list
->process_list_widget
))
525 * process_list
->number_of_process
;
529 gint
processlist_get_process_pixels( ProcessList
*process_list
,
530 guint pid
, LttTime
*birth
, guint trace_num
,
533 HashedProcessData
**pm_hashed_process_data
)
535 ProcessInfo Process_Info
;
537 GtkTreePath
*tree_path
;
538 HashedProcessData
*hashed_process_data
= NULL
;
540 Process_Info
.pid
= pid
;
541 Process_Info
.birth
= *birth
;
542 Process_Info
.trace_num
= trace_num
;
544 if(hashed_process_data
=
545 (HashedProcessData
*)g_hash_table_lookup(
546 process_list
->process_hash
,
549 tree_path
= gtk_tree_row_reference_get_path(
550 hashed_process_data
->row_ref
);
551 path_indices
= gtk_tree_path_get_indices (tree_path
);
553 *height
= get_cell_height(
554 GTK_TREE_VIEW(process_list
->process_list_widget
));
555 *y
= *height
* path_indices
[0];
556 *pm_hashed_process_data
= hashed_process_data
;
559 *pm_hashed_process_data
= hashed_process_data
;
566 gint
processlist_get_pixels_from_data( ProcessList
*process_list
,
567 ProcessInfo
*process_info
,
568 HashedProcessData
*hashed_process_data
,
573 GtkTreePath
*tree_path
;
575 tree_path
= gtk_tree_row_reference_get_path(
576 hashed_process_data
->row_ref
);
577 path_indices
= gtk_tree_path_get_indices (tree_path
);
579 *height
= get_cell_height(
580 GTK_TREE_VIEW(process_list
->process_list_widget
));
581 *y
= *height
* path_indices
[0];