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