git-svn-id: http://ltt.polymtl.ca/svn@311 04897980-b3bd-0310-b5e0-8ef037075253
[lttv.git] / ltt / branches / poly / lttv / modules / guiStatistic / guiStatistic.c
CommitLineData
6b1d3120 1#include <glib.h>
2#include <gmodule.h>
3#include <gtk/gtk.h>
4#include <gdk/gdk.h>
5
6#include <lttv/module.h>
7#include <lttv/gtkTraceSet.h>
8#include <lttv/processTrace.h>
9#include <lttv/hook.h>
10#include <lttv/common.h>
11#include <lttv/state.h>
12#include <lttv/stats.h>
13
14#include <ltt/ltt.h>
15#include <ltt/event.h>
16#include <ltt/type.h>
17#include <ltt/trace.h>
18
19#include <string.h>
20
21#include "../icons/hGuiStatisticInsert.xpm"
22
f7afe191 23#define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
24#define g_debug(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, format)
25
6b1d3120 26#define PATH_LENGTH 256
27
28static LttvModule *Main_Win_Module;
29
30/** Array containing instanced objects. Used when module is unloaded */
f7afe191 31static GSList *gStatistic_Viewer_Data_List = NULL ;
6b1d3120 32
33typedef struct _StatisticViewerData StatisticViewerData;
34
35//! Statistic Viewer's constructor hook
36GtkWidget *hGuiStatistic(mainWindow *pmParentWindow);
37//! Statistic Viewer's constructor
38StatisticViewerData *GuiStatistic(mainWindow *pmParentWindow);
39//! Statistic Viewer's destructor
40void GuiStatistic_Destructor(StatisticViewerData *Statistic_Viewer_Data);
41void GuiStatistic_free(StatisticViewerData *Statistic_Viewer_Data);
42
43void grab_focus(GtkWidget *widget, gpointer data);
44static void tree_selection_changed_cb (GtkTreeSelection *selection, gpointer data);
45
46void Destroy_hash_key(gpointer key);
47void Destroy_hash_data(gpointer data);
48
49void get_traceset_stats(StatisticViewerData * Statistic_Viewer_Data);
50void show_traceset_stats(StatisticViewerData * Statistic_Viewer_Data);
51void show_tree(StatisticViewerData * Statistic_Viewer_Data,
52 LttvAttribute* stats, GtkTreeIter* parent);
53void show_statistic(StatisticViewerData * Statistic_Viewer_Data,
54 LttvAttribute* stats, GtkTextBuffer* buf);
55
56
57enum
58{
59 NAME_COLUMN,
60 N_COLUMNS
61};
62
63struct _StatisticViewerData{
64 mainWindow * mw;
65 LttvTracesetStats * stats;
66
67 GtkWidget * HPaned_V;
68 GtkTreeStore * Store_M;
69 GtkWidget * Tree_V;
70
71 //scroll window containing Tree View
72 GtkWidget * Scroll_Win_Tree;
73
74 GtkWidget * Text_V;
75 //scroll window containing Text View
76 GtkWidget * Scroll_Win_Text;
77
78 // Selection handler
79 GtkTreeSelection *Select_C;
80
81 //hash
82 GHashTable *Statistic_Hash;
83};
84
85
86/**
87 * plugin's init function
88 *
89 * This function initializes the Statistic Viewer functionnality through the
90 * gtkTraceSet API.
91 */
92G_MODULE_EXPORT void init(LttvModule *self, int argc, char *argv[]) {
93
94 Main_Win_Module = lttv_module_require(self, "mainwin", argc, argv);
95
96 if(Main_Win_Module == NULL){
97 g_critical("Can't load Statistic Viewer : missing mainwin\n");
98 return;
99 }
100
101 g_critical("GUI Statistic Viewer init()");
102
103 /* Register the toolbar insert button */
104 ToolbarItemReg(hGuiStatisticInsert_xpm, "Insert Statistic Viewer", hGuiStatistic);
105
106 /* Register the menu item insert entry */
107 MenuItemReg("/", "Insert Statistic Viewer", hGuiStatistic);
108
109}
110
111void destroy_walk(gpointer data, gpointer user_data)
112{
113 GuiStatistic_Destructor((StatisticViewerData*)data);
114}
115
116/**
117 * plugin's destroy function
118 *
119 * This function releases the memory reserved by the module and unregisters
120 * everything that has been registered in the gtkTraceSet API.
121 */
122G_MODULE_EXPORT void destroy() {
123 int i;
124
6b1d3120 125 g_critical("GUI Statistic Viewer destroy()");
6b1d3120 126 g_slist_foreach(gStatistic_Viewer_Data_List, destroy_walk, NULL );
127
128 g_slist_free(gStatistic_Viewer_Data_List);
129
130 /* Unregister the toolbar insert button */
131 ToolbarItemUnreg(hGuiStatistic);
132
133 /* Unregister the menu item insert entry */
134 MenuItemUnreg(hGuiStatistic);
135}
136
137
138void
139GuiStatistic_free(StatisticViewerData *Statistic_Viewer_Data)
140{
f7afe191 141 g_critical("GuiStatistic_free()");
7a859036 142 if(Statistic_Viewer_Data){
143 g_hash_table_destroy(Statistic_Viewer_Data->Statistic_Hash);
144 gStatistic_Viewer_Data_List = g_slist_remove(gStatistic_Viewer_Data_List, Statistic_Viewer_Data);
145 g_warning("Delete Statistic data\n");
146 g_free(Statistic_Viewer_Data);
147 }
6b1d3120 148}
149
150void
151GuiStatistic_Destructor(StatisticViewerData *Statistic_Viewer_Data)
152{
f7afe191 153 g_critical("GuiStatistic_Destructor()");
6b1d3120 154 /* May already been done by GTK window closing */
7a859036 155 if(GTK_IS_WIDGET(Statistic_Viewer_Data->HPaned_V)){
6b1d3120 156 gtk_widget_destroy(Statistic_Viewer_Data->HPaned_V);
7a859036 157 Statistic_Viewer_Data = NULL;
158 }
2061e03d 159 //GuiStatistic_free(Statistic_Viewer_Data);
6b1d3120 160}
161
162
163/**
164 * Statistic Viewer's constructor hook
165 *
166 * This constructor is given as a parameter to the menuitem and toolbar button
167 * registration. It creates the list.
168 * @param pmParentWindow A pointer to the parent window.
169 * @return The widget created.
170 */
171GtkWidget *
172hGuiStatistic(mainWindow * pmParentWindow)
173{
174 StatisticViewerData* Statistic_Viewer_Data = GuiStatistic(pmParentWindow) ;
175
176 if(Statistic_Viewer_Data)
177 return Statistic_Viewer_Data->HPaned_V;
178 else return NULL;
179
180}
181
182/**
183 * Statistic Viewer's constructor
184 *
185 * This constructor is used to create StatisticViewerData data structure.
186 * @return The Statistic viewer data created.
187 */
188StatisticViewerData *
189GuiStatistic(mainWindow *pmParentWindow)
190{
191 GtkCellRenderer *renderer;
192 GtkTreeViewColumn *column;
193
194 StatisticViewerData* Statistic_Viewer_Data = g_new(StatisticViewerData,1);
195
196 Statistic_Viewer_Data->mw = pmParentWindow;
197 Statistic_Viewer_Data->stats = getTracesetStats(Statistic_Viewer_Data->mw);
198
199 Statistic_Viewer_Data->Statistic_Hash = g_hash_table_new_full(g_str_hash, g_str_equal,
200 Destroy_hash_key, Destroy_hash_data);
201
202 Statistic_Viewer_Data->HPaned_V = gtk_hpaned_new();
203 Statistic_Viewer_Data->Store_M = gtk_tree_store_new (N_COLUMNS, G_TYPE_STRING);
204 Statistic_Viewer_Data->Tree_V = gtk_tree_view_new_with_model (GTK_TREE_MODEL (Statistic_Viewer_Data->Store_M));
205 g_object_unref (G_OBJECT (Statistic_Viewer_Data->Store_M));
206
207 g_signal_connect (G_OBJECT (Statistic_Viewer_Data->Tree_V), "grab-focus",
208 G_CALLBACK (grab_focus),
209 Statistic_Viewer_Data);
210
211 // Setup the selection handler
212 Statistic_Viewer_Data->Select_C = gtk_tree_view_get_selection (GTK_TREE_VIEW (Statistic_Viewer_Data->Tree_V));
213 gtk_tree_selection_set_mode (Statistic_Viewer_Data->Select_C, GTK_SELECTION_SINGLE);
214 g_signal_connect (G_OBJECT (Statistic_Viewer_Data->Select_C), "changed",
215 G_CALLBACK (tree_selection_changed_cb),
216 Statistic_Viewer_Data);
217
218 renderer = gtk_cell_renderer_text_new ();
219 column = gtk_tree_view_column_new_with_attributes ("Statistic Name",
220 renderer,
221 "text", NAME_COLUMN,
222 NULL);
223 gtk_tree_view_column_set_alignment (column, 0.0);
224 // gtk_tree_view_column_set_fixed_width (column, 45);
225 gtk_tree_view_append_column (GTK_TREE_VIEW (Statistic_Viewer_Data->Tree_V), column);
226
227
228 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW (Statistic_Viewer_Data->Tree_V), FALSE);
229
230 Statistic_Viewer_Data->Scroll_Win_Tree = gtk_scrolled_window_new (NULL, NULL);
231 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(Statistic_Viewer_Data->Scroll_Win_Tree),
232 GTK_POLICY_AUTOMATIC,GTK_POLICY_AUTOMATIC);
233
234 gtk_container_add (GTK_CONTAINER (Statistic_Viewer_Data->Scroll_Win_Tree), Statistic_Viewer_Data->Tree_V);
235 gtk_paned_pack1(GTK_PANED(Statistic_Viewer_Data->HPaned_V),Statistic_Viewer_Data->Scroll_Win_Tree, TRUE, FALSE);
236 gtk_paned_set_position(GTK_PANED(Statistic_Viewer_Data->HPaned_V), 160);
237
238 Statistic_Viewer_Data->Scroll_Win_Text = gtk_scrolled_window_new (NULL, NULL);
239 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(Statistic_Viewer_Data->Scroll_Win_Text),
240 GTK_POLICY_AUTOMATIC,GTK_POLICY_AUTOMATIC);
241
242 Statistic_Viewer_Data->Text_V = gtk_text_view_new ();
243 g_signal_connect (G_OBJECT (Statistic_Viewer_Data->Text_V), "grab-focus",
244 G_CALLBACK (grab_focus),
245 Statistic_Viewer_Data);
246
247 gtk_text_view_set_editable(GTK_TEXT_VIEW(Statistic_Viewer_Data->Text_V),FALSE);
248 gtk_text_view_set_cursor_visible(GTK_TEXT_VIEW(Statistic_Viewer_Data->Text_V),FALSE);
249 gtk_container_add (GTK_CONTAINER (Statistic_Viewer_Data->Scroll_Win_Text), Statistic_Viewer_Data->Text_V);
250 gtk_paned_pack2(GTK_PANED(Statistic_Viewer_Data->HPaned_V), Statistic_Viewer_Data->Scroll_Win_Text, TRUE, FALSE);
251
252 gtk_widget_show(Statistic_Viewer_Data->Scroll_Win_Tree);
253 gtk_widget_show(Statistic_Viewer_Data->Scroll_Win_Text);
254 gtk_widget_show(Statistic_Viewer_Data->Tree_V);
255 gtk_widget_show(Statistic_Viewer_Data->Text_V);
256 gtk_widget_show(Statistic_Viewer_Data->HPaned_V);
257
258 g_object_set_data_full(
259 G_OBJECT(Statistic_Viewer_Data->HPaned_V),
260 "Statistic_Viewer_Data",
261 Statistic_Viewer_Data,
262 (GDestroyNotify)GuiStatistic_free);
263
264 /* Add the object's information to the module's array */
f7afe191 265 gStatistic_Viewer_Data_List = g_slist_append(
266 gStatistic_Viewer_Data_List,
267 Statistic_Viewer_Data);
6b1d3120 268
269 get_traceset_stats(Statistic_Viewer_Data);
270
271 return Statistic_Viewer_Data;
272}
273
274void grab_focus(GtkWidget *widget, gpointer data)
275{
276 StatisticViewerData *Statistic_Viewer_Data = (StatisticViewerData *)data;
277 mainWindow * mw = Statistic_Viewer_Data->mw;
278 SetFocusedPane(mw, gtk_widget_get_parent(Statistic_Viewer_Data->HPaned_V));
279}
280
281static void
282tree_selection_changed_cb (GtkTreeSelection *selection, gpointer data)
283{
284 StatisticViewerData *Statistic_Viewer_Data = (StatisticViewerData*)data;
285 GtkTreeIter iter;
286 GtkTreeModel *model = GTK_TREE_MODEL(Statistic_Viewer_Data->Store_M);
287 gchar *Event;
288 GtkTextBuffer* buf;
289 gchar * str;
290 GtkTreePath * path;
291 GtkTextIter text_iter;
292 LttvAttribute * stats;
293
294 if (gtk_tree_selection_get_selected (selection, &model, &iter))
295 {
296 gtk_tree_model_get (model, &iter, NAME_COLUMN, &Event, -1);
297
298 path = gtk_tree_model_get_path(GTK_TREE_MODEL(model),&iter);
299 str = gtk_tree_path_to_string (path);
300 stats = (LttvAttribute*)g_hash_table_lookup (Statistic_Viewer_Data->Statistic_Hash,str);
301 g_free(str);
302
303 buf = gtk_text_view_get_buffer((GtkTextView*)Statistic_Viewer_Data->Text_V);
304 gtk_text_buffer_set_text(buf,"Statistic for '", -1);
305 gtk_text_buffer_get_end_iter(buf, &text_iter);
306 gtk_text_buffer_insert(buf, &text_iter, Event, strlen(Event));
307 gtk_text_buffer_get_end_iter(buf, &text_iter);
308 gtk_text_buffer_insert(buf, &text_iter, "' :\n\n",5);
309
310 show_statistic(Statistic_Viewer_Data, stats, buf);
311
312 g_free (Event);
313 }
314}
315
316void Destroy_hash_key(gpointer key)
317{
318 g_free(key);
319}
320
321void Destroy_hash_data(gpointer data)
322{
323 // g_free(data);
324}
325
326void get_traceset_stats(StatisticViewerData * Statistic_Viewer_Data)
327{
328 LttTime start, end;
329
330 start.tv_sec = 0;
331 start.tv_nsec = 0;
332 end.tv_sec = G_MAXULONG;
333 end.tv_nsec = G_MAXULONG;
334
335 stateAddEventHooks(Statistic_Viewer_Data->mw);
336 statsAddEventHooks(Statistic_Viewer_Data->mw);
337
338 processTraceset(Statistic_Viewer_Data->mw, start, end, G_MAXULONG);
339
340 stateRemoveEventHooks(Statistic_Viewer_Data->mw);
341 statsRemoveEventHooks(Statistic_Viewer_Data->mw);
342
343 //establish tree view for stats
344 show_traceset_stats(Statistic_Viewer_Data);
345}
346
347void show_traceset_stats(StatisticViewerData * Statistic_Viewer_Data)
348{
349 int i, nb;
350 LttvTraceset *ts;
351 LttvTraceStats *tcs;
352 LttSystemDescription *desc;
353 LttvTracesetStats * tscs = Statistic_Viewer_Data->stats;
354 gchar * str, trace_str[PATH_LENGTH];
355 GtkTreePath * path;
356 GtkTreeIter iter;
357 GtkTreeStore * store = Statistic_Viewer_Data->Store_M;
358
359 if(tscs->stats == NULL) return;
360
361 gtk_tree_store_append (store, &iter, NULL);
362 gtk_tree_store_set (store, &iter,
363 NAME_COLUMN, "Traceset statistics",
364 -1);
365 path = gtk_tree_model_get_path(GTK_TREE_MODEL(store), &iter);
366 str = gtk_tree_path_to_string (path);
367 g_hash_table_insert(Statistic_Viewer_Data->Statistic_Hash,
368 (gpointer)str, tscs->stats);
369 show_tree(Statistic_Viewer_Data, tscs->stats, &iter);
370
371 //show stats for all traces
372 ts = tscs->parent.parent.ts;
373 nb = lttv_traceset_number(ts);
374
375 for(i = 0 ; i < nb ; i++) {
376 tcs = (LttvTraceStats *)(LTTV_TRACESET_CONTEXT(tscs)->traces[i]);
377 desc = ltt_trace_system_description(tcs->parent.parent.t);
378 sprintf(trace_str, "Trace on system %s at time %d secs",
379 desc->node_name,desc->trace_start.tv_sec);
380
381 gtk_tree_store_append (store, &iter, NULL);
382 gtk_tree_store_set (store, &iter,NAME_COLUMN,trace_str,-1);
383 path = gtk_tree_model_get_path(GTK_TREE_MODEL(store), &iter);
384 str = gtk_tree_path_to_string (path);
385 g_hash_table_insert(Statistic_Viewer_Data->Statistic_Hash,
386 (gpointer)str,tcs->stats);
387 show_tree(Statistic_Viewer_Data, tcs->stats, &iter);
388 }
389}
390
391void show_tree(StatisticViewerData * Statistic_Viewer_Data,
392 LttvAttribute* stats, GtkTreeIter* parent)
393{
394 int i, nb;
395 LttvAttribute *subtree;
396 LttvAttributeName name;
397 LttvAttributeValue value;
398 LttvAttributeType type;
399 gchar * str, dir_str[PATH_LENGTH];
400 GtkTreePath * path;
401 GtkTreeIter iter;
402 GtkTreeStore * store = Statistic_Viewer_Data->Store_M;
403
404 nb = lttv_attribute_get_number(stats);
405 for(i = 0 ; i < nb ; i++) {
406 type = lttv_attribute_get(stats, i, &name, &value);
407 switch(type) {
408 case LTTV_GOBJECT:
409 if(LTTV_IS_ATTRIBUTE(*(value.v_gobject))) {
410 sprintf(dir_str, "%s", g_quark_to_string(name));
411 subtree = (LttvAttribute *)*(value.v_gobject);
412 gtk_tree_store_append (store, &iter, parent);
413 gtk_tree_store_set (store, &iter,NAME_COLUMN,dir_str,-1);
414 path = gtk_tree_model_get_path(GTK_TREE_MODEL(store), &iter);
415 str = gtk_tree_path_to_string (path);
416 g_hash_table_insert(Statistic_Viewer_Data->Statistic_Hash,
417 (gpointer)str, subtree);
418 show_tree(Statistic_Viewer_Data, subtree, &iter);
419 }
420 break;
421 default:
422 break;
423 }
424 }
425}
426
427void show_statistic(StatisticViewerData * Statistic_Viewer_Data,
428 LttvAttribute* stats, GtkTextBuffer* buf)
429{
430 int i, nb , flag;
431 LttvAttribute *subtree;
432 LttvAttributeName name;
433 LttvAttributeValue value;
434 LttvAttributeType type;
435 gchar type_name[PATH_LENGTH], type_value[PATH_LENGTH];
436 GtkTextIter text_iter;
437
438 flag = 0;
439 nb = lttv_attribute_get_number(stats);
440 for(i = 0 ; i < nb ; i++) {
441 type = lttv_attribute_get(stats, i, &name, &value);
442 sprintf(type_name,"%s", g_quark_to_string(name));
443 type_value[0] = '\0';
444 switch(type) {
445 case LTTV_INT:
446 sprintf(type_value, " : %d\n", *value.v_int);
447 break;
448 case LTTV_UINT:
449 sprintf(type_value, " : %u\n", *value.v_uint);
450 break;
451 case LTTV_LONG:
452 sprintf(type_value, " : %ld\n", *value.v_long);
453 break;
454 case LTTV_ULONG:
455 sprintf(type_value, " : %lu\n", *value.v_ulong);
456 break;
457 case LTTV_FLOAT:
458 sprintf(type_value, " : %f\n", (double)*value.v_float);
459 break;
460 case LTTV_DOUBLE:
461 sprintf(type_value, " : %f\n", *value.v_double);
462 break;
463 case LTTV_TIME:
464 sprintf(type_value, " : %10u.%09u\n", value.v_time->tv_sec,
465 value.v_time->tv_nsec);
466 break;
467 case LTTV_POINTER:
468 sprintf(type_value, " : POINTER\n");
469 break;
470 case LTTV_STRING:
471 sprintf(type_value, " : %s\n", *value.v_string);
472 break;
473 default:
474 break;
475 }
476 if(strlen(type_value)){
477 flag = 1;
478 strcat(type_name,type_value);
479 gtk_text_buffer_get_end_iter(buf, &text_iter);
480 gtk_text_buffer_insert(buf, &text_iter, type_name, strlen(type_name));
481 }
482 }
483
484 if(flag == 0){
485 sprintf(type_value, "No statistic information in this directory.\nCheck in subdirectories please.\n");
486 gtk_text_buffer_get_end_iter(buf, &text_iter);
487 gtk_text_buffer_insert(buf, &text_iter, type_value, strlen(type_value));
488
489 }
490}
491
492
This page took 0.040733 seconds and 4 git commands to generate.