Drawing.h attribute name change
[lttv.git] / ltt / branches / poly / lttv / modules / guiControlFlow / Process_List.c
CommitLineData
f0d936c0 1
fa2c4dbe 2#include <gtk/gtk.h>
3#include <glib.h>
f0d936c0 4#include "Process_List.h"
80a52ff8 5#include "Draw_Item.h"
fa2c4dbe 6
f0d936c0 7/*****************************************************************************
8 * Methods to synchronize process list *
9 *****************************************************************************/
10
f0d936c0 11/* Enumeration of the columns */
12enum
13{
a56a1ba4 14 PROCESS_COLUMN,
15 PID_COLUMN,
16 BIRTH_S_COLUMN,
17 BIRTH_NS_COLUMN,
18 N_COLUMNS
f0d936c0 19};
20
21
a56a1ba4 22gint process_sort_func ( GtkTreeModel *model,
23 GtkTreeIter *it_a,
24 GtkTreeIter *it_b,
25 gpointer user_data)
fa2c4dbe 26{
a56a1ba4 27 GValue a, b;
28
29 memset(&a, 0, sizeof(GValue));
30 memset(&b, 0, sizeof(GValue));
31
32 /* Order by PID */
33 gtk_tree_model_get_value( model,
34 it_a,
35 PID_COLUMN,
36 &a);
37
38 gtk_tree_model_get_value( model,
39 it_b,
40 PID_COLUMN,
41 &b);
42
43 if(G_VALUE_TYPE(&a) == G_TYPE_UINT
44 && G_VALUE_TYPE(&b) == G_TYPE_UINT )
45 {
46 if(g_value_get_uint(&a) > g_value_get_uint(&b))
47 {
48 g_value_unset(&a);
49 g_value_unset(&b);
50 return 1;
51 }
52 if(g_value_get_uint(&a) < g_value_get_uint(&b))
53 {
54 g_value_unset(&a);
55 g_value_unset(&b);
56 return 0;
57 }
58 }
59
60 g_value_unset(&a);
61 g_value_unset(&b);
62
63
64 /* Order by birth second */
65 gtk_tree_model_get_value( model,
66 it_a,
67 BIRTH_S_COLUMN,
68 &a);
69
70 gtk_tree_model_get_value( model,
71 it_b,
72 BIRTH_S_COLUMN,
73 &b);
74
75
76 if(G_VALUE_TYPE(&a) == G_TYPE_ULONG
77 && G_VALUE_TYPE(&b) == G_TYPE_ULONG )
78 {
79 if(g_value_get_ulong(&a) > g_value_get_ulong(&b))
80 {
81 g_value_unset(&a);
82 g_value_unset(&b);
83 return 1;
84 }
85 if(g_value_get_ulong(&a) < g_value_get_ulong(&b))
86 {
87 g_value_unset(&a);
88 g_value_unset(&b);
89 return 0;
90 }
91
92 }
93
94 g_value_unset(&a);
95 g_value_unset(&b);
96
97 /* Order by birth nanosecond */
98 gtk_tree_model_get_value( model,
99 it_a,
100 BIRTH_NS_COLUMN,
101 &a);
102
103 gtk_tree_model_get_value( model,
104 it_b,
105 BIRTH_NS_COLUMN,
106 &b);
107
108
109 if(G_VALUE_TYPE(&a) == G_TYPE_ULONG
110 && G_VALUE_TYPE(&b) == G_TYPE_ULONG )
111 {
112 if(g_value_get_ulong(&a) > g_value_get_ulong(&b))
113 {
114 g_value_unset(&a);
115 g_value_unset(&b);
116 return 1;
117 }
118 // Final condition
119 //if(g_value_get_ulong(&a) < g_value_get_ulong(&b))
120 //{
121 // g_value_unset(&a);
122 // g_value_unset(&b);
123 // return 0;
124 //}
125
126 }
127
128 g_value_unset(&a);
129 g_value_unset(&b);
130
131 return 0;
fa2c4dbe 132
133}
134
fa2c4dbe 135guint hash_fct(gconstpointer key)
136{
a56a1ba4 137 return ((ProcessInfo*)key)->pid;
fa2c4dbe 138}
139
140gboolean equ_fct(gconstpointer a, gconstpointer b)
141{
a56a1ba4 142 if(((ProcessInfo*)a)->pid != ((ProcessInfo*)b)->pid)
143 return 0;
144// g_critical("compare %u and %u",((ProcessInfo*)a)->pid,((ProcessInfo*)b)->pid);
145 if(((ProcessInfo*)a)->birth.tv_sec != ((ProcessInfo*)b)->birth.tv_sec)
146 return 0;
147// g_critical("compare %u and %u",((ProcessInfo*)a)->birth.tv_sec,((ProcessInfo*)b)->birth.tv_sec);
148
149 if(((ProcessInfo*)a)->birth.tv_nsec != ((ProcessInfo*)b)->birth.tv_nsec)
150 return 0;
151// g_critical("compare %u and %u",((ProcessInfo*)a)->birth.tv_nsec,((ProcessInfo*)b)->birth.tv_nsec);
152
153 return 1;
fa2c4dbe 154}
155
4c69e0cc 156void destroy_hash_key(gpointer key);
fa2c4dbe 157
4c69e0cc 158void destroy_hash_data(gpointer data);
fa2c4dbe 159
160
161
162
4c69e0cc 163ProcessList *processlist_construct(void)
f0d936c0 164{
a56a1ba4 165 GtkTreeViewColumn *column;
166 GtkCellRenderer *renderer;
167
ba90bc77 168 ProcessList* process_list = g_new(ProcessList,1);
a56a1ba4 169
ba90bc77 170 process_list->number_of_process = 0;
a56a1ba4 171
172 /* Create the Process list */
ba90bc77 173 process_list->Store_M = gtk_list_store_new ( N_COLUMNS,
a56a1ba4 174 G_TYPE_STRING,
175 G_TYPE_UINT,
176 G_TYPE_ULONG,
177 G_TYPE_ULONG);
178
179
ba90bc77 180 process_list->process_list_VC =
a56a1ba4 181 gtk_tree_view_new_with_model
ba90bc77 182 (GTK_TREE_MODEL (process_list->Store_M));
a56a1ba4 183
ba90bc77 184 g_object_unref (G_OBJECT (process_list->Store_M));
a56a1ba4 185
186 gtk_tree_sortable_set_sort_func(
ba90bc77 187 GTK_TREE_SORTABLE(process_list->Store_M),
a56a1ba4 188 PID_COLUMN,
189 process_sort_func,
190 NULL,
191 NULL);
192
193 gtk_tree_sortable_set_sort_column_id(
ba90bc77 194 GTK_TREE_SORTABLE(process_list->Store_M),
a56a1ba4 195 PID_COLUMN,
196 GTK_SORT_ASCENDING);
197
14963be0 198 process_list->process_hash = g_hash_table_new_full(
a56a1ba4 199 hash_fct, equ_fct,
200 destroy_hash_key, destroy_hash_data
201 );
202
203
204 gtk_tree_view_set_headers_visible(
ba90bc77 205 GTK_TREE_VIEW(process_list->process_list_VC), FALSE);
a56a1ba4 206
207 /* Create a column, associating the "text" attribute of the
208 * cell_renderer to the first column of the model */
209 /* Columns alignment : 0.0 : Left 0.5 : Center 1.0 : Right */
210 renderer = gtk_cell_renderer_text_new ();
211 column = gtk_tree_view_column_new_with_attributes ( "Process",
212 renderer,
213 "text",
214 PROCESS_COLUMN,
215 NULL);
216 gtk_tree_view_column_set_alignment (column, 0.0);
217 gtk_tree_view_column_set_fixed_width (column, 45);
218 gtk_tree_view_append_column (
ba90bc77 219 GTK_TREE_VIEW (process_list->process_list_VC), column);
a56a1ba4 220
221 column = gtk_tree_view_column_new_with_attributes ( "PID",
222 renderer,
223 "text",
224 PID_COLUMN,
225 NULL);
226 gtk_tree_view_append_column (
ba90bc77 227 GTK_TREE_VIEW (process_list->process_list_VC), column);
a56a1ba4 228
229
230 column = gtk_tree_view_column_new_with_attributes ( "Birth sec",
231 renderer,
232 "text",
233 BIRTH_S_COLUMN,
234 NULL);
235 gtk_tree_view_append_column (
ba90bc77 236 GTK_TREE_VIEW (process_list->process_list_VC), column);
a56a1ba4 237
238 //gtk_tree_view_column_set_visible(column, 0);
239 //
240 column = gtk_tree_view_column_new_with_attributes ( "Birth nsec",
241 renderer,
242 "text",
243 BIRTH_NS_COLUMN,
244 NULL);
245 gtk_tree_view_append_column (
ba90bc77 246 GTK_TREE_VIEW (process_list->process_list_VC), column);
a56a1ba4 247
248 //gtk_tree_view_column_set_visible(column, 0);
249
250 g_object_set_data_full(
ba90bc77 251 G_OBJECT(process_list->process_list_VC),
252 "process_list_Data",
253 process_list,
a56a1ba4 254 (GDestroyNotify)processlist_destroy);
255
ba90bc77 256 process_list->Test_Process_Sent = 0;
a56a1ba4 257
ba90bc77 258 return process_list;
f0d936c0 259}
ba90bc77 260void processlist_destroy(ProcessList *process_list)
f0d936c0 261{
14963be0 262 g_hash_table_destroy(process_list->process_hash);
263 process_list->process_hash = NULL;
f0d936c0 264
ba90bc77 265 g_free(process_list);
f0d936c0 266}
267
ba90bc77 268GtkWidget *processlist_get_widget(ProcessList *process_list)
f0d936c0 269{
ba90bc77 270 return process_list->process_list_VC;
f0d936c0 271}
272
273
274
275gint get_cell_height(GtkTreeView *TreeView)
276{
a56a1ba4 277 gint height;
278 GtkTreeViewColumn *Column = gtk_tree_view_get_column(TreeView, 0);
279 //GList *Render_List = gtk_tree_view_column_get_cell_renderers(Column);
280 //GtkCellRenderer *Renderer = g_list_first(Render_List)->data;
281
282 //g_list_free(Render_List);
283 gtk_tree_view_column_cell_get_size(Column, NULL, NULL, NULL, NULL, &height);
284 //g_critical("cell 0 height : %u",height);
285
286 return height;
f0d936c0 287}
288
4c69e0cc 289void destroy_hash_key(gpointer key)
f0d936c0 290{
a56a1ba4 291 g_free(key);
fa2c4dbe 292}
293
4c69e0cc 294void destroy_hash_data(gpointer data)
fa2c4dbe 295{
a56a1ba4 296 g_free(data);
fa2c4dbe 297}
298
ba90bc77 299int processlist_add( ProcessList *process_list,
a56a1ba4 300 guint pid,
301 LttTime *birth,
302 gchar *name,
303 guint *height,
14963be0 304 HashedProcessData **pmhashed_process_data)
fa2c4dbe 305{
a56a1ba4 306 GtkTreeIter iter ;
307 ProcessInfo *Process_Info = g_new(ProcessInfo, 1);
14963be0 308 HashedProcessData *hashed_process_data = g_new(HashedProcessData, 1);
309 *pmhashed_process_data = hashed_process_data;
a56a1ba4 310
311 Process_Info->pid = pid;
312 Process_Info->birth = *birth;
313
14963be0 314 hashed_process_data->draw_context = g_new(DrawContext, 1);
315 hashed_process_data->draw_context->drawable = NULL;
316 hashed_process_data->draw_context->gc = NULL;
317 hashed_process_data->draw_context->pango_layout = NULL;
318 hashed_process_data->draw_context->current = g_new(DrawInfo,1);
319 hashed_process_data->draw_context->current->over = g_new(ItemInfo,1);
320 hashed_process_data->draw_context->current->over->x = -1;
321 hashed_process_data->draw_context->current->over->y = -1;
322 hashed_process_data->draw_context->current->middle = g_new(ItemInfo,1);
323 hashed_process_data->draw_context->current->middle->x = -1;
324 hashed_process_data->draw_context->current->middle->y = -1;
325 hashed_process_data->draw_context->current->under = g_new(ItemInfo,1);
326 hashed_process_data->draw_context->current->under->x = -1;
327 hashed_process_data->draw_context->current->under->y = -1;
328 hashed_process_data->draw_context->current->modify_over = g_new(ItemInfo,1);
329 hashed_process_data->draw_context->current->modify_over->x = -1;
330 hashed_process_data->draw_context->current->modify_over->y = -1;
331 hashed_process_data->draw_context->current->modify_middle = g_new(ItemInfo,1);
332 hashed_process_data->draw_context->current->modify_middle->x = -1;
333 hashed_process_data->draw_context->current->modify_middle->y = -1;
334 hashed_process_data->draw_context->current->modify_under = g_new(ItemInfo,1);
335 hashed_process_data->draw_context->current->modify_under->x = -1;
336 hashed_process_data->draw_context->current->modify_under->y = -1;
337 hashed_process_data->draw_context->current->status = LTTV_STATE_UNNAMED;
338 hashed_process_data->draw_context->previous = g_new(DrawInfo,1);
339 hashed_process_data->draw_context->previous->over = g_new(ItemInfo,1);
340 hashed_process_data->draw_context->previous->over->x = -1;
341 hashed_process_data->draw_context->previous->over->y = -1;
342 hashed_process_data->draw_context->previous->middle = g_new(ItemInfo,1);
343 hashed_process_data->draw_context->previous->middle->x = -1;
344 hashed_process_data->draw_context->previous->middle->y = -1;
345 hashed_process_data->draw_context->previous->under = g_new(ItemInfo,1);
346 hashed_process_data->draw_context->previous->under->x = -1;
347 hashed_process_data->draw_context->previous->under->y = -1;
348 hashed_process_data->draw_context->previous->modify_over = g_new(ItemInfo,1);
349 hashed_process_data->draw_context->previous->modify_over->x = -1;
350 hashed_process_data->draw_context->previous->modify_over->y = -1;
351 hashed_process_data->draw_context->previous->modify_middle = g_new(ItemInfo,1);
352 hashed_process_data->draw_context->previous->modify_middle->x = -1;
353 hashed_process_data->draw_context->previous->modify_middle->y = -1;
354 hashed_process_data->draw_context->previous->modify_under = g_new(ItemInfo,1);
355 hashed_process_data->draw_context->previous->modify_under->x = -1;
356 hashed_process_data->draw_context->previous->modify_under->y = -1;
357 hashed_process_data->draw_context->previous->status = LTTV_STATE_UNNAMED;
a56a1ba4 358
359 /* Add a new row to the model */
ba90bc77 360 gtk_list_store_append ( process_list->Store_M, &iter);
a56a1ba4 361 //g_critical ( "iter before : %s", gtk_tree_path_to_string (
362 // gtk_tree_model_get_path (
ba90bc77 363 // GTK_TREE_MODEL(process_list->Store_M),
a56a1ba4 364 // &iter)));
ba90bc77 365 gtk_list_store_set ( process_list->Store_M, &iter,
a56a1ba4 366 PROCESS_COLUMN, name,
367 PID_COLUMN, pid,
368 BIRTH_S_COLUMN, birth->tv_sec,
369 BIRTH_NS_COLUMN, birth->tv_nsec,
370 -1);
14963be0 371 hashed_process_data->RowRef = gtk_tree_row_reference_new (
ba90bc77 372 GTK_TREE_MODEL(process_list->Store_M),
a56a1ba4 373 gtk_tree_model_get_path(
ba90bc77 374 GTK_TREE_MODEL(process_list->Store_M),
a56a1ba4 375 &iter));
14963be0 376 g_hash_table_insert( process_list->process_hash,
a56a1ba4 377 (gpointer)Process_Info,
14963be0 378 (gpointer)hashed_process_data);
a56a1ba4 379
380 //g_critical ( "iter after : %s", gtk_tree_path_to_string (
381 // gtk_tree_model_get_path (
ba90bc77 382 // GTK_TREE_MODEL(process_list->Store_M),
a56a1ba4 383 // &iter)));
ba90bc77 384 process_list->number_of_process++;
a56a1ba4 385
ba90bc77 386 *height = get_cell_height(GTK_TREE_VIEW(process_list->process_list_VC))
387 * process_list->number_of_process ;
a56a1ba4 388
389
390 return 0;
391
f0d936c0 392}
393
ba90bc77 394int processlist_remove( ProcessList *process_list,
a56a1ba4 395 guint pid,
396 LttTime *birth)
f0d936c0 397{
a56a1ba4 398 ProcessInfo Process_Info;
399 gint *path_indices;
14963be0 400 HashedProcessData *hashed_process_data;
a56a1ba4 401 GtkTreeIter iter;
402
403 Process_Info.pid = pid;
404 Process_Info.birth = *birth;
405
406
14963be0 407 if(hashed_process_data =
a56a1ba4 408 (HashedProcessData*)g_hash_table_lookup(
14963be0 409 process_list->process_hash,
a56a1ba4 410 &Process_Info))
411 {
412 gtk_tree_model_get_iter (
ba90bc77 413 GTK_TREE_MODEL(process_list->Store_M),
a56a1ba4 414 &iter,
415 gtk_tree_row_reference_get_path(
14963be0 416 (GtkTreeRowReference*)hashed_process_data->RowRef)
a56a1ba4 417 );
418
ba90bc77 419 gtk_list_store_remove (process_list->Store_M, &iter);
a56a1ba4 420
14963be0 421 g_free(hashed_process_data->draw_context->previous->modify_under);
422 g_free(hashed_process_data->draw_context->previous->modify_middle);
423 g_free(hashed_process_data->draw_context->previous->modify_over);
424 g_free(hashed_process_data->draw_context->previous->under);
425 g_free(hashed_process_data->draw_context->previous->middle);
426 g_free(hashed_process_data->draw_context->previous->over);
427 g_free(hashed_process_data->draw_context->previous);
428 g_free(hashed_process_data->draw_context->current->modify_under);
429 g_free(hashed_process_data->draw_context->current->modify_middle);
430 g_free(hashed_process_data->draw_context->current->modify_over);
431 g_free(hashed_process_data->draw_context->current->under);
432 g_free(hashed_process_data->draw_context->current->middle);
433 g_free(hashed_process_data->draw_context->current->over);
434 g_free(hashed_process_data->draw_context->current);
435 g_free(hashed_process_data->draw_context);
436 g_free(hashed_process_data);
437
438 g_hash_table_remove(process_list->process_hash,
a56a1ba4 439 &Process_Info);
440
ba90bc77 441 process_list->number_of_process--;
a56a1ba4 442
443 return 0;
444 } else {
445 return 1;
446 }
fa2c4dbe 447}
448
449
ba90bc77 450guint processlist_get_height(ProcessList *process_list)
fa2c4dbe 451{
ba90bc77 452 return get_cell_height(GTK_TREE_VIEW(process_list->process_list_VC))
453 * process_list->number_of_process ;
f0d936c0 454}
fa2c4dbe 455
456
ba90bc77 457gint processlist_get_process_pixels( ProcessList *process_list,
a56a1ba4 458 guint pid, LttTime *birth,
459 guint *y,
460 guint *height,
14963be0 461 HashedProcessData **pmhashed_process_data)
fa2c4dbe 462{
a56a1ba4 463 ProcessInfo Process_Info;
464 gint *path_indices;
465 GtkTreePath *tree_path;
14963be0 466 HashedProcessData *hashed_process_data = NULL;
a56a1ba4 467
468 Process_Info.pid = pid;
469 Process_Info.birth = *birth;
470
14963be0 471 if(hashed_process_data =
a56a1ba4 472 (HashedProcessData*)g_hash_table_lookup(
14963be0 473 process_list->process_hash,
a56a1ba4 474 &Process_Info))
475 {
476 tree_path = gtk_tree_row_reference_get_path(
14963be0 477 hashed_process_data->RowRef);
a56a1ba4 478 path_indices = gtk_tree_path_get_indices (tree_path);
479
480 *height = get_cell_height(
ba90bc77 481 GTK_TREE_VIEW(process_list->process_list_VC));
a56a1ba4 482 *y = *height * path_indices[0];
14963be0 483 *pmhashed_process_data = hashed_process_data;
a56a1ba4 484 return 0;
485 } else {
14963be0 486 *pmhashed_process_data = hashed_process_data;
a56a1ba4 487 return 1;
488 }
fa2c4dbe 489
fa2c4dbe 490}
8b90e648 491
492
ba90bc77 493gint processlist_get_pixels_from_data( ProcessList *process_list,
a56a1ba4 494 ProcessInfo *process_info,
14963be0 495 HashedProcessData *hashed_process_data,
a56a1ba4 496 guint *y,
497 guint *height)
8b90e648 498{
a56a1ba4 499 gint *path_indices;
500 GtkTreePath *tree_path;
8b90e648 501
a56a1ba4 502 tree_path = gtk_tree_row_reference_get_path(
14963be0 503 hashed_process_data->RowRef);
a56a1ba4 504 path_indices = gtk_tree_path_get_indices (tree_path);
8b90e648 505
a56a1ba4 506 *height = get_cell_height(
ba90bc77 507 GTK_TREE_VIEW(process_list->process_list_VC));
a56a1ba4 508 *y = *height * path_indices[0];
8b90e648 509
a56a1ba4 510 return 0;
8b90e648 511
512}
This page took 0.045574 seconds and 4 git commands to generate.