update
[lttv.git] / ltt / branches / poly / lttv / modules / gui / lttvwindow / lttvwindow / init_module.c
CommitLineData
e076699e 1/* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 Mathieu Desnoyers and XangXiu Yang
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
fb87279e 19/*
20 * Initial main.c file generated by Glade. Edit as required.
21 * Glade will not overwrite this file.
22 */
23
24#ifdef HAVE_CONFIG_H
25# include <config.h>
26#endif
27
28#include <gtk/gtk.h>
a1a2b649 29#include <glib.h>
5e96e7e3 30#include <string.h>
fb87279e 31
fb87279e 32#include <lttv/lttv.h>
0a6808c0 33#include <lttv/attribute.h>
34#include <lttv/hook.h>
35#include <lttv/option.h>
36#include <lttv/module.h>
d8f124de 37#include <lttv/tracecontext.h>
ec25ff5e 38#include <lttv/state.h>
6b1d3120 39#include <lttv/stats.h>
13f86ce2 40#include <lttvwindow/menu.h>
41#include <lttvwindow/toolbar.h>
a1a2b649 42#include <lttvwindow/lttvwindowtraces.h>
fb87279e 43
44#include "interface.h"
45#include "support.h"
13f86ce2 46#include <lttvwindow/mainwindow.h>
2d262115 47#include <lttvwindow/mainwindow-private.h>
fb87279e 48#include "callbacks.h"
a5dcde2f 49#include <ltt/trace.h>
50
fb87279e 51
a1a2b649 52LttvTraceInfo LTTV_TRACES,
53 LTTV_COMPUTATION,
e025a729 54 LTTV_VIEWER_CONSTRUCTORS,
a1a2b649 55 LTTV_REQUESTS_QUEUE,
56 LTTV_REQUESTS_CURRENT,
57 LTTV_NOTIFY_QUEUE,
8bc02ec8 58 LTTV_NOTIFY_CURRENT,
59 LTTV_COMPUTATION_TRACESET,
60 LTTV_COMPUTATION_TRACESET_CONTEXT,
79257ba5 61 LTTV_COMPUTATION_SYNC_POSITION,
8bc02ec8 62 LTTV_BEFORE_CHUNK_TRACESET,
63 LTTV_BEFORE_CHUNK_TRACE,
64 LTTV_BEFORE_CHUNK_TRACEFILE,
65 LTTV_AFTER_CHUNK_TRACESET,
66 LTTV_AFTER_CHUNK_TRACE,
67 LTTV_AFTER_CHUNK_TRACEFILE,
68 LTTV_BEFORE_REQUEST,
69 LTTV_AFTER_REQUEST,
70 LTTV_EVENT_HOOK,
71 LTTV_EVENT_HOOK_BY_ID,
313bd6fc 72 LTTV_HOOK_ADDER,
73 LTTV_HOOK_REMOVER,
8bc02ec8 74 LTTV_IN_PROGRESS,
b052368a 75 LTTV_READY,
76 LTTV_LOCK;
8bc02ec8 77
6ced96ef 78
ec25ff5e 79/** Array containing instanced objects. */
68b48a45 80GSList * g_main_window_list = NULL ;
ec25ff5e 81
f7afe191 82LttvHooks
ec25ff5e 83 *main_hooks;
84
f7afe191 85/* Initial trace from command line */
8e3a7c75 86static GSList *g_init_trace = NULL;
f7afe191 87
ec25ff5e 88static char *a_trace;
8e3a7c75 89//static char g_init_trace[PATH_MAX] = "";
ec25ff5e 90
6ced96ef 91
ec25ff5e 92void lttv_trace_option(void *hook_data)
93{
8e3a7c75 94 //LttTrace *trace;
6cec4cd2 95
8e3a7c75 96 //get_absolute_pathname(a_trace, g_init_trace);
97 g_init_trace = g_slist_append(g_init_trace, a_trace);
ec25ff5e 98}
fb87279e 99
100/*****************************************************************************
101 * Functions for module loading/unloading *
102 *****************************************************************************/
103/**
104 * plugin's init function
105 *
106 * This function initializes the GUI.
107 */
108
68b48a45 109static gboolean window_creation_hook(void *hook_data, void *call_data)
fb87279e 110{
2a2fa4f0 111 g_debug("GUI window_creation_hook()");
fb87279e 112#ifdef ENABLE_NLS
113 bindtextdomain (GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR);
114 bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
115 textdomain (GETTEXT_PACKAGE);
116#endif
117
118 gtk_set_locale ();
08b1c66e 119 gtk_init (&lttv_argc, &lttv_argv);
fb87279e 120
121 add_pixmap_directory (PACKAGE_DATA_DIR "/" PACKAGE "/pixmaps");
122 add_pixmap_directory ("pixmaps");
077ba5c0 123 add_pixmap_directory ("../modules/gui/main/pixmaps");
fb87279e 124
6cec4cd2 125 /* First window, use command line trace */
8e3a7c75 126 create_main_window_with_trace_list(g_init_trace);
fb87279e 127
128 gtk_main ();
0a6808c0 129
ec25ff5e 130 return FALSE;
0a6808c0 131}
132
08b1c66e 133static void init() {
0a6808c0 134
ec25ff5e 135 LttvAttributeValue value;
f7afe191 136
137 // Global attributes only used for interaction with main() here.
ec25ff5e 138 LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes());
139
a1a2b649 140 LTTV_TRACES = g_quark_from_string("traces");
141 LTTV_COMPUTATION = g_quark_from_string("computation");
e025a729 142 LTTV_VIEWER_CONSTRUCTORS = g_quark_from_string("viewer_constructors");
a1a2b649 143 LTTV_REQUESTS_QUEUE = g_quark_from_string("requests_queue");
144 LTTV_REQUESTS_CURRENT = g_quark_from_string("requests_current");
145 LTTV_NOTIFY_QUEUE = g_quark_from_string("notify_queue");
146 LTTV_NOTIFY_CURRENT = g_quark_from_string("notify_current");
8bc02ec8 147 LTTV_COMPUTATION_TRACESET = g_quark_from_string("computation_traceset");
148 LTTV_COMPUTATION_TRACESET_CONTEXT =
149 g_quark_from_string("computation_traceset_context");
79257ba5 150 LTTV_COMPUTATION_SYNC_POSITION =
151 g_quark_from_string("computation_sync_position");
8bc02ec8 152 LTTV_BEFORE_CHUNK_TRACESET = g_quark_from_string("before_chunk_traceset");
153 LTTV_BEFORE_CHUNK_TRACE = g_quark_from_string("before_chunk_trace");
154 LTTV_BEFORE_CHUNK_TRACEFILE = g_quark_from_string("before_chunk_tracefile");
155 LTTV_AFTER_CHUNK_TRACESET = g_quark_from_string("after_chunk_traceset");
156 LTTV_AFTER_CHUNK_TRACE = g_quark_from_string("after_chunk_trace");
157 LTTV_AFTER_CHUNK_TRACEFILE = g_quark_from_string("after_chunk_tracefile");
158 LTTV_BEFORE_REQUEST = g_quark_from_string("before_request");
159 LTTV_AFTER_REQUEST = g_quark_from_string("after_request");
160 LTTV_EVENT_HOOK = g_quark_from_string("event_hook");
161 LTTV_EVENT_HOOK_BY_ID = g_quark_from_string("event_hook_by_id");
313bd6fc 162 LTTV_HOOK_ADDER = g_quark_from_string("hook_adder");
163 LTTV_HOOK_REMOVER = g_quark_from_string("hook_remover");
8bc02ec8 164 LTTV_IN_PROGRESS = g_quark_from_string("in_progress");
165 LTTV_READY = g_quark_from_string("ready");
b052368a 166 LTTV_LOCK = g_quark_from_string("lock");
8bc02ec8 167
6ced96ef 168 g_debug("GUI init()");
169
ec25ff5e 170 lttv_option_add("trace", 't',
171 "add a trace to the trace set to analyse",
172 "pathname of the directory containing the trace",
173 LTTV_OPT_STRING, &a_trace, lttv_trace_option, NULL);
174
ec25ff5e 175 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/main/before",
176 LTTV_POINTER, &value));
177 g_assert((main_hooks = *(value.v_pointer)) != NULL);
178
2d262115 179 lttv_hooks_add(main_hooks, window_creation_hook, NULL, LTTV_PRIO_DEFAULT);
0a6808c0 180
91fd6881 181 {
182 /* Register state calculator */
183 LttvHooks *hook_adder = lttv_hooks_new();
184 lttv_hooks_add(hook_adder, lttv_state_save_hook_add_event_hooks, NULL,
185 LTTV_PRIO_DEFAULT);
1ce324c6 186 lttv_hooks_add(hook_adder, lttv_state_hook_add_event_hooks, NULL,
187 LTTV_PRIO_DEFAULT);
91fd6881 188 LttvHooks *hook_remover = lttv_hooks_new();
189 lttv_hooks_add(hook_remover, lttv_state_save_hook_remove_event_hooks,
190 NULL, LTTV_PRIO_DEFAULT);
1ce324c6 191 lttv_hooks_add(hook_remover, lttv_state_hook_remove_event_hooks,
192 NULL, LTTV_PRIO_DEFAULT);
91fd6881 193 /* Add state computation background hook adder to attributes */
194 lttvwindowtraces_register_computation_hooks(g_quark_from_string("state"),
195 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
196 hook_adder, hook_remover);
197 }
198
199 {
200 /* Register statistics calculator */
201 LttvHooks *hook_adder = lttv_hooks_new();
202 lttv_hooks_add(hook_adder, lttv_stats_hook_add_event_hooks, NULL,
203 LTTV_PRIO_DEFAULT);
1ce324c6 204 lttv_hooks_add(hook_adder, lttv_state_hook_add_event_hooks, NULL,
205 LTTV_PRIO_DEFAULT);
91fd6881 206 LttvHooks *hook_remover = lttv_hooks_new();
207 lttv_hooks_add(hook_remover, lttv_stats_hook_remove_event_hooks,
208 NULL, LTTV_PRIO_DEFAULT);
1ce324c6 209 lttv_hooks_add(hook_remover, lttv_state_hook_remove_event_hooks,
210 NULL, LTTV_PRIO_DEFAULT);
91fd6881 211 LttvHooks *after_request = lttv_hooks_new();
212 lttv_hooks_add(after_request, lttv_stats_sum_traceset_hook, NULL,
213 LTTV_PRIO_DEFAULT);
214 /* Add state computation background hook adder to attributes */
215 lttvwindowtraces_register_computation_hooks(g_quark_from_string("stats"),
216 NULL, NULL, NULL, NULL, NULL, NULL, NULL,
217 after_request, NULL, NULL,
218 hook_adder, hook_remover);
219 }
fb87279e 220}
221
7a859036 222void
bca3b81f 223main_window_destructor(MainWindow * mw)
7a859036 224{
2d262115 225 g_assert(GTK_IS_WIDGET(mw->mwindow));
226 gtk_widget_destroy(mw->mwindow);
fb87279e 227}
228
d0724d16 229static void destroy_walk(gpointer data, gpointer user_data)
230{
231 main_window_destructor((MainWindow*)data);
232}
fb87279e 233
fb87279e 234/**
235 * plugin's destroy function
236 *
237 * This function releases the memory reserved by the module and unregisters
238 * everything that has been registered in the gtkTraceSet API.
239 */
08b1c66e 240static void destroy() {
fb87279e 241
7a859036 242 LttvAttributeValue value;
308711e5 243 LttvTrace *trace;
2d262115 244 GSList *iter = NULL;
245
ec25ff5e 246 lttv_option_remove("trace");
247
08b1c66e 248 lttv_hooks_remove_data(main_hooks, window_creation_hook, NULL);
ec25ff5e 249
2a2fa4f0 250 g_debug("GUI destroy()");
fb87279e 251
d0724d16 252 g_slist_foreach(g_main_window_list, destroy_walk, NULL);
253
254 g_slist_free(g_main_window_list);
8e3a7c75 255
256 g_slist_free(g_init_trace);
ec25ff5e 257
fb87279e 258}
259
260
db2c9c14 261LTTV_MODULE("lttvwindow", "Viewer main window", \
08b1c66e 262 "Viewer with multiple windows, tabs and panes for graphical modules", \
2d262115 263 init, destroy, "stats", "option")
This page took 0.06312 seconds and 4 git commands to generate.