git-svn-id: http://ltt.polymtl.ca/svn@180 04897980-b3bd-0310-b5e0-8ef037075253
[lttv.git] / ltt / branches / poly / lttv / main.c
CommitLineData
eccb5352 1
3d218f2a 2#include <lttv/hook.h>
3#include <lttv/module.h>
fcdf0ec2 4#include <lttv/lttv.h>
ffd54a90 5#include <lttv/iattribute.h>
fcdf0ec2 6#include <lttv/attribute.h>
7#include <lttv/option.h>
dc877563 8#include <lttv/traceset.h>
9#include <ltt/trace.h>
eccb5352 10
dc877563 11void lttv_option_init(int argc, char **argv);
12void lttv_option_destroy();
13
14void lttv_module_init(int argc, char **argv);
15void lttv_module_destroy();
fcdf0ec2 16
ffd54a90 17void lttv_state_init(int argc, char **argv);
18void lttv_state_destroy();
19
eccb5352 20/* The main program maintains a few central data structures and relies
21 on modules for the rest. These data structures may be accessed by modules
22 through an exported API */
23
ffd54a90 24static LttvIAttribute *attributes;
eccb5352 25
dc877563 26static LttvHooks
27 *before_options,
28 *after_options,
29 *before_main,
30 *after_main;
eccb5352 31
dc877563 32static char
33 *a_module,
34 *a_module_path;
eccb5352 35
dc877563 36static int a_argc;
eccb5352 37
dc877563 38static char **a_argv;
eccb5352 39
40static void lttv_module_option(void *hook_data);
41
42static void lttv_module_path_option(void *hook_data);
43
eccb5352 44#ifdef MEMDEBUG
45extern struct GMemVTable *glib_mem_profiler_table;
46#endif
47
dc877563 48
eccb5352 49/* Since everything is done in modules, the main program only takes care
50 of the infrastructure. */
51
52int main(int argc, char **argv) {
53
ffd54a90 54 LttvAttributeValue value;
eccb5352 55
56#ifdef MEMDEBUG
57 g_mem_set_vtable(glib_mem_profiler_table);
58 g_message("Memory summary before main");
59 g_mem_profile();
60#endif
61
d83f6739 62 //g_type_init();
63 g_type_init_with_debug_flags (G_TYPE_DEBUG_OBJECTS | G_TYPE_DEBUG_SIGNALS);
64
ffd54a90 65 attributes = LTTV_IATTRIBUTE(g_object_new(LTTV_ATTRIBUTE_TYPE, NULL));
eccb5352 66
dc877563 67 before_options = lttv_hooks_new();
68 after_options = lttv_hooks_new();
69 before_main = lttv_hooks_new();
70 after_main = lttv_hooks_new();
eccb5352 71
dc877563 72 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/options/before",
73 LTTV_POINTER, &value));
ffd54a90 74 *(value.v_pointer) = before_options;
dc877563 75 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/options/after",
76 LTTV_POINTER, &value));
ffd54a90 77 *(value.v_pointer) = after_options;
dc877563 78 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/main/before",
79 LTTV_POINTER, &value));
ffd54a90 80 *(value.v_pointer) = before_main;
dc877563 81 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/main/after",
82 LTTV_POINTER, &value));
ffd54a90 83 *(value.v_pointer) = after_main;
eccb5352 84
eccb5352 85
86 /* Initialize the command line options processing */
87
88 lttv_option_init(argc,argv);
89 lttv_module_init(argc,argv);
ffd54a90 90 lttv_state_init(argc,argv);
eccb5352 91
92 /* Initialize the module loading */
93
94 lttv_module_path_add("/usr/lib/lttv/plugins");
95
96 /* Add some built-in options */
97
98 lttv_option_add("module",'m', "load a module", "name of module to load",
ffd54a90 99 LTTV_OPT_STRING, &a_module, lttv_module_option, NULL);
eccb5352 100
101 lttv_option_add("modules-path", 'L',
102 "add a directory to the module search path",
ffd54a90 103 "directory to add to the path", LTTV_OPT_STRING, &a_module_path,
eccb5352 104 lttv_module_path_option, NULL);
105
dc877563 106 lttv_hooks_call(before_options, NULL);
c432246e 107 lttv_option_parse(argc, argv);
dc877563 108 lttv_hooks_call(after_options, NULL);
c432246e 109
dc877563 110 lttv_hooks_call(before_main, NULL);
111 lttv_hooks_call(after_main, NULL);
eccb5352 112
ffd54a90 113 lttv_state_destroy();
eccb5352 114 lttv_module_destroy();
115 lttv_option_destroy();
dc877563 116
117 lttv_hooks_destroy(before_options);
118 lttv_hooks_destroy(after_options);
119 lttv_hooks_destroy(before_main);
120 lttv_hooks_destroy(after_main);
121 g_object_unref(attributes);
eccb5352 122
123#ifdef MEMDEBUG
124 g_message("Memory summary after main");
125 g_mem_profile();
126#endif
eccb5352 127}
128
dc877563 129
ffd54a90 130LttvAttribute *lttv_global_attributes()
1cab0928 131{
cbe7c836 132 return (LttvAttribute*)attributes;
1cab0928 133}
134
135
eccb5352 136void lttv_module_option(void *hook_data)
137{
dc877563 138 lttv_module_load(a_module,a_argc,a_argv);
eccb5352 139}
140
141
142void lttv_module_path_option(void *hook_data)
143{
ffd54a90 144 lttv_module_path_add(a_module_path);
eccb5352 145}
This page took 0.029306 seconds and 4 git commands to generate.