uninitialized variables checked. Also change two if/else if functions for switch
[lttv.git] / ltt / branches / poly / lttv / lttv / main.c
CommitLineData
9c312311 1/* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 Michel Dagenais
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
eccb5352 19
3d218f2a 20#include <lttv/hook.h>
21#include <lttv/module.h>
fcdf0ec2 22#include <lttv/lttv.h>
ffd54a90 23#include <lttv/iattribute.h>
fcdf0ec2 24#include <lttv/attribute.h>
25#include <lttv/option.h>
dc877563 26#include <lttv/traceset.h>
27#include <ltt/trace.h>
d888c9c8 28#include <stdio.h>
29
eccb5352 30
31/* The main program maintains a few central data structures and relies
32 on modules for the rest. These data structures may be accessed by modules
33 through an exported API */
34
ffd54a90 35static LttvIAttribute *attributes;
eccb5352 36
dc877563 37static LttvHooks
38 *before_options,
39 *after_options,
40 *before_main,
41 *after_main;
eccb5352 42
dc877563 43static char
44 *a_module,
45 *a_module_path;
eccb5352 46
b445142a 47static gboolean
48 a_verbose,
3754677c 49 a_debug,
50 a_fatal;
b445142a 51
dbb7bb09 52gboolean lttv_profile_memory;
53
08b1c66e 54int lttv_argc;
eccb5352 55
08b1c66e 56char **lttv_argv;
eccb5352 57
58static void lttv_module_option(void *hook_data);
59
60static void lttv_module_path_option(void *hook_data);
61
b445142a 62static void lttv_verbose(void *hook_data);
63
64static void lttv_debug(void *hook_data);
65
3754677c 66static void lttv_fatal(void *hook_data);
67
308711e5 68static void lttv_help(void *hook_data);
dc877563 69
2a2fa4f0 70/* This is the handler to specify when we dont need all the debugging
71 messages. It receives the message and does nothing. */
72
73void ignore_and_drop_message(const gchar *log_domain, GLogLevelFlags log_level,
74 const gchar *message, gpointer user_data) {
75}
76
77
eccb5352 78/* Since everything is done in modules, the main program only takes care
79 of the infrastructure. */
80
81int main(int argc, char **argv) {
82
dbb7bb09 83 int i;
84
85 char
86 *profile_memory_short_option = "-M",
87 *profile_memory_long_option = "--memory";
88
89 gboolean profile_memory = FALSE;
90
ffd54a90 91 LttvAttributeValue value;
eccb5352 92
08b1c66e 93 lttv_argc = argc;
94 lttv_argv = argv;
eccb5352 95
dbb7bb09 96 /* Before anything else, check if memory profiling is requested */
97
98 for(i = 1 ; i < argc ; i++) {
99 if(*(argv[i]) != '-') break;
100 if(strcmp(argv[i], profile_memory_short_option) == 0 ||
101 strcmp(argv[i], profile_memory_long_option) == 0) {
dbb7bb09 102 g_mem_set_vtable(glib_mem_profiler_table);
103 g_message("Memory summary before main");
104 g_mem_profile();
105 profile_memory = TRUE;
106 break;
107 }
108 }
109
110
111 /* Initialize glib and by default ignore info and debug messages */
2a2fa4f0 112
41f18f3e 113 g_type_init();
9bbfbc95 114 //g_type_init_with_debug_flags (G_TYPE_DEBUG_OBJECTS | G_TYPE_DEBUG_SIGNALS);
115 g_log_set_handler(NULL, G_LOG_LEVEL_INFO, ignore_and_drop_message, NULL);
116 g_log_set_handler(NULL, G_LOG_LEVEL_DEBUG, ignore_and_drop_message, NULL);
dbb7bb09 117
118
119 /* Have an attributes subtree to store hooks to be registered by modules. */
d83f6739 120
ffd54a90 121 attributes = LTTV_IATTRIBUTE(g_object_new(LTTV_ATTRIBUTE_TYPE, NULL));
eccb5352 122
dc877563 123 before_options = lttv_hooks_new();
124 after_options = lttv_hooks_new();
125 before_main = lttv_hooks_new();
126 after_main = lttv_hooks_new();
eccb5352 127
dbb7bb09 128
129 /* Create a number of hooks lists */
130
dc877563 131 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/options/before",
132 LTTV_POINTER, &value));
ffd54a90 133 *(value.v_pointer) = before_options;
dc877563 134 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/options/after",
135 LTTV_POINTER, &value));
ffd54a90 136 *(value.v_pointer) = after_options;
dc877563 137 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/main/before",
138 LTTV_POINTER, &value));
ffd54a90 139 *(value.v_pointer) = before_main;
dc877563 140 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/main/after",
141 LTTV_POINTER, &value));
ffd54a90 142 *(value.v_pointer) = after_main;
eccb5352 143
eccb5352 144
145 /* Initialize the command line options processing */
146
08b1c66e 147 GError *error = NULL;
eccb5352 148
08b1c66e 149 LttvModule *module_module = lttv_module_require("module", &error);
150 if(error != NULL) g_error(error->message);
151 LttvModule *module_option = lttv_module_require("option", &error);
152 if(error != NULL) g_error(error->message);
dbb7bb09 153
eccb5352 154 /* Initialize the module loading */
155
08b1c66e 156 lttv_library_path_add(PACKAGE_PLUGIN_DIR);
eccb5352 157
dbb7bb09 158
eccb5352 159 /* Add some built-in options */
160
161 lttv_option_add("module",'m', "load a module", "name of module to load",
ffd54a90 162 LTTV_OPT_STRING, &a_module, lttv_module_option, NULL);
eccb5352 163
164 lttv_option_add("modules-path", 'L',
165 "add a directory to the module search path",
ffd54a90 166 "directory to add to the path", LTTV_OPT_STRING, &a_module_path,
eccb5352 167 lttv_module_path_option, NULL);
d888c9c8 168
169 lttv_option_add("help",'h', "basic help", "none",
170 LTTV_OPT_NONE, NULL, lttv_help, NULL);
b445142a 171
172 a_verbose = FALSE;
173 lttv_option_add("verbose",'v', "print information messages", "none",
174 LTTV_OPT_NONE, NULL, lttv_verbose, NULL);
175
176 a_debug = FALSE;
177 lttv_option_add("debug",'d', "print debugging messages", "none",
178 LTTV_OPT_NONE, NULL, lttv_debug, NULL);
3754677c 179
180 a_fatal = FALSE;
181 lttv_option_add("fatal",'f', "make critical messages fatal",
182 "none",
183 LTTV_OPT_NONE, NULL, lttv_fatal, NULL);
d888c9c8 184
dbb7bb09 185 lttv_profile_memory = FALSE;
186 lttv_option_add(profile_memory_long_option + 2,
187 profile_memory_short_option[1], "print memory information", "none",
188 LTTV_OPT_NONE, &lttv_profile_memory, NULL, NULL);
189
190
191 /* Process the options */
d888c9c8 192
dc877563 193 lttv_hooks_call(before_options, NULL);
c432246e 194 lttv_option_parse(argc, argv);
dc877563 195 lttv_hooks_call(after_options, NULL);
c432246e 196
dbb7bb09 197
198 /* Memory profiling to be useful must be activated as early as possible */
199
200 if(profile_memory != lttv_profile_memory)
201 g_error("Memory profiling options must appear before other options");
202
203
204 /* Do the main work */
205
dc877563 206 lttv_hooks_call(before_main, NULL);
207 lttv_hooks_call(after_main, NULL);
eccb5352 208
dbb7bb09 209
210 /* Clean up everything */
211
08b1c66e 212 lttv_module_release(module_option);
213 lttv_module_release(module_module);
dc877563 214
215 lttv_hooks_destroy(before_options);
216 lttv_hooks_destroy(after_options);
217 lttv_hooks_destroy(before_main);
218 lttv_hooks_destroy(after_main);
219 g_object_unref(attributes);
eccb5352 220
dbb7bb09 221 if(profile_memory) {
eccb5352 222 g_message("Memory summary after main");
223 g_mem_profile();
dbb7bb09 224 }
08b1c66e 225 return 0;
eccb5352 226}
227
dc877563 228
ffd54a90 229LttvAttribute *lttv_global_attributes()
1cab0928 230{
cbe7c836 231 return (LttvAttribute*)attributes;
1cab0928 232}
233
234
eccb5352 235void lttv_module_option(void *hook_data)
236{
08b1c66e 237 GError *error = NULL;
238
239 lttv_module_require(a_module, &error);
240 if(error != NULL) g_error(error->message);
eccb5352 241}
242
243
244void lttv_module_path_option(void *hook_data)
245{
08b1c66e 246 lttv_library_path_add(a_module_path);
eccb5352 247}
d888c9c8 248
2a2fa4f0 249
b445142a 250void lttv_verbose(void *hook_data)
251{
252 g_log_set_handler(NULL, G_LOG_LEVEL_INFO, g_log_default_handler, NULL);
253 g_info("Logging set to include INFO level messages");
254}
255
256void lttv_debug(void *hook_data)
257{
258 g_log_set_handler(NULL, G_LOG_LEVEL_DEBUG, g_log_default_handler, NULL);
259 g_info("Logging set to include DEBUG level messages");
260}
261
3754677c 262void lttv_fatal(void *hook_data)
263{
264 //g_log_set_always_fatal(G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL);
265 g_log_set_always_fatal(G_LOG_LEVEL_CRITICAL);
266 g_info("Critical log from glib will abort execution");
267}
268
308711e5 269void lttv_help(void *hook_data)
d888c9c8 270{
271 printf("Linux Trace Toolkit Visualizer\n");
272 printf("\n");
273 lttv_option_show_help();
274 printf("\n");
275}
b445142a 276
308711e5 277/*
278
308711e5 279- Define formally traceset/trace in the GUI for the user and decide how
280 trace/traceset sharing goes in the application.
281
282- Use appropriately the new functions in time.h
283
284- remove the separate tracefiles (control/per cpu) arrays/loops in context.
285
286- split processTrace into context.c and processTrace.c
287
288- check spelling conventions.
289
290- get all the copyright notices.
291
292- remove all the warnings.
293
294- get all the .h files properly doxygen commented to produce useful documents.
295
296- have an intro/architecture document.
297
298- write a tutorial */
This page took 0.042841 seconds and 4 git commands to generate.