git-svn-id: http://ltt.polymtl.ca/svn@179 04897980-b3bd-0310-b5e0-8ef037075253
[lttv.git] / ltt / branches / poly / lttv / textDump.c
1 /* The text dump facility needs to print headers before the trace set and
2 before each trace, to print each event, and to print statistics
3 after each trace. */
4
5 #include <lttv/lttv.h>
6 #include <lttv/option.h>
7 #include <lttv/module.h>
8 #include <lttv/hook.h>
9 #include <lttv/attribute.h>
10 #include <lttv/iattribute.h>
11 #include <lttv/state.h>
12 #include <ltt/ltt.h>
13 #include <ltt/event.h>
14 #include <ltt/type.h>
15 #include <ltt/trace.h>
16 #include <stdio.h>
17
18 static gboolean
19 a_field_names,
20 a_state;
21
22 static char
23 *a_file_name;
24
25 static LttvHooks
26 *before_traceset,
27 *after_traceset,
28 *before_trace,
29 *before_event;
30
31
32 void print_field(LttEvent *e, LttField *f, GString *s, gboolean field_names) {
33
34 LttType *type;
35
36 LttField *element;
37
38 char *name;
39
40 int nb, i;
41
42 type = ltt_field_type(f);
43 switch(ltt_type_class(type)) {
44 case LTT_INT:
45 g_string_append_printf(s, " %ld", ltt_event_get_long_int(e,f));
46 break;
47
48 case LTT_UINT:
49 g_string_append_printf(s, " %lu", ltt_event_get_long_unsigned(e,f));
50 break;
51
52 case LTT_FLOAT:
53 g_string_append_printf(s, " %g", ltt_event_get_double(e,f));
54 break;
55
56 case LTT_STRING:
57 g_string_append_printf(s, " \"%s\"", ltt_event_get_string(e,f));
58 break;
59
60 case LTT_ENUM:
61 g_string_append_printf(s, " %s", ltt_enum_string_get(type,
62 ltt_event_get_unsigned(e,f)-1));
63 break;
64
65 case LTT_ARRAY:
66 case LTT_SEQUENCE:
67 g_string_append_printf(s, " {");
68 nb = ltt_event_field_element_number(e,f);
69 element = ltt_field_element(f);
70 for(i = 0 ; i < nb ; i++) {
71 ltt_event_field_element_select(e,f,i);
72 print_field(e, element, s, field_names);
73 }
74 g_string_append_printf(s, " }");
75 break;
76
77 case LTT_STRUCT:
78 g_string_append_printf(s, " {");
79 nb = ltt_type_member_number(type);
80 for(i = 0 ; i < nb ; i++) {
81 element = ltt_field_member(f,i);
82 if(field_names) {
83 ltt_type_member_type(type, i, &name);
84 g_string_append_printf(s, " %s = ", name);
85 }
86 print_field(e, element, s, field_names);
87 }
88 g_string_append_printf(s, " }");
89 break;
90 }
91 }
92
93
94 void lttv_event_to_string(LttEvent *e, LttTracefile *tf, GString *s,
95 gboolean mandatory_fields, gboolean field_names)
96 {
97 LttFacility *facility;
98
99 LttEventType *event_type;
100
101 LttType *type;
102
103 LttField *field;
104
105 LttTime time;
106
107 g_string_set_size(s,0);
108
109 facility = ltt_event_facility(e);
110 event_type = ltt_event_eventtype(e);
111 field = ltt_event_field(e);
112
113 if(mandatory_fields) {
114 time = ltt_event_time(e);
115 g_string_append_printf(s,"%s.%s: %ld.%ld (%s)",ltt_facility_name(facility),
116 ltt_eventtype_name(event_type), (long)time.tv_sec, time.tv_nsec,
117 ltt_tracefile_name(tf));
118 /* Print the process id and the state/interrupt type of the process */
119 }
120
121 if(field)
122 print_field(e, field, s, field_names);
123 }
124
125
126 /* Insert the hooks before and after each trace and tracefile, and for each
127 event. Print a global header. */
128
129 static FILE *a_file;
130
131 static GString *a_string;
132
133 static gboolean write_traceset_header(void *hook_data, void *call_data)
134 {
135 LttvTracesetContext *tc = (LttvTracesetContext *)call_data;
136
137 if(a_file_name == NULL) a_file = stdout;
138 else a_file = fopen(a_file_name, "w");
139
140 if(a_file == NULL) g_error("cannot open file %s", a_file_name);
141
142 /* Print the trace set header */
143 fprintf(a_file,"Trace set contains %d traces\n\n",
144 lttv_traceset_number(tc->ts));
145
146 return FALSE;
147 }
148
149
150 static gboolean write_traceset_footer(void *hook_data, void *call_data)
151 {
152 LttvTracesetContext *tc = (LttvTracesetContext *)call_data;
153
154 fprintf(a_file,"End trace set\n\n");
155
156 if(a_file_name != NULL) fclose(a_file);
157
158 return FALSE;
159 }
160
161
162 static gboolean write_trace_header(void *hook_data, void *call_data)
163 {
164 LttvTraceContext *tc = (LttvTraceContext *)call_data;
165
166 LttSystemDescription *system = ltt_trace_system_description(tc->t);
167
168 fprintf(a_file," Trace from %s in %s\n%s\n\n", system->node_name,
169 system->domain_name, system->description);
170 return FALSE;
171 }
172
173
174 static int write_event_content(void *hook_data, void *call_data)
175 {
176 LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
177
178 LttvTracefileState *tfs = (LttvTracefileState *)call_data;
179
180 LttEvent *e;
181
182 e = tfc->e;
183
184 lttv_event_to_string(e, tfc->tf, a_string, TRUE, a_field_names);
185 g_string_append_printf(a_string,"\n");
186
187 if(a_state) {
188 g_string_append_printf(a_string, " %s",
189 g_quark_to_string(tfs->process->state->s));
190 }
191
192 fputs(a_string->str, a_file);
193 return FALSE;
194 }
195
196
197 //void init(int argc, char **argv)
198 G_MODULE_EXPORT void init(LttvModule *self, int argc, char **argv)
199 {
200 LttvAttributeValue value;
201
202 LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes());
203
204 a_string = g_string_new("");
205
206 a_file_name = NULL;
207 lttv_option_add("output", 'o',
208 "output file where the text is written",
209 "file name",
210 LTTV_OPT_STRING, &a_file_name, NULL, NULL);
211
212 a_field_names = FALSE;
213 lttv_option_add("field_names", 'l',
214 "write the field names for each event",
215 "",
216 LTTV_OPT_NONE, &a_field_names, NULL, NULL);
217
218 a_state = FALSE;
219 lttv_option_add("process_state", 's',
220 "write the pid and state for each event",
221 "",
222 LTTV_OPT_NONE, &a_state, NULL, NULL);
223
224 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/event/before",
225 LTTV_POINTER, &value));
226 g_assert((before_event = *(value.v_pointer)) != NULL);
227 lttv_hooks_add(before_event, write_event_content, NULL);
228
229 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/trace/before",
230 LTTV_POINTER, &value));
231 g_assert((before_trace = *(value.v_pointer)) != NULL);
232 lttv_hooks_add(before_trace, write_trace_header, NULL);
233
234 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/traceset/before",
235 LTTV_POINTER, &value));
236 g_assert((before_traceset = *(value.v_pointer)) != NULL);
237 lttv_hooks_add(before_traceset, write_traceset_header, NULL);
238
239 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/traceset/after",
240 LTTV_POINTER, &value));
241 g_assert((after_traceset = *(value.v_pointer)) != NULL);
242 lttv_hooks_add(after_traceset, write_traceset_footer, NULL);
243 }
244
245
246 G_MODULE_EXPORT void destroy()
247 {
248 lttv_option_remove("output");
249
250 lttv_option_remove("field_names");
251
252 lttv_option_remove("process_state");
253
254 g_string_free(a_string, TRUE);
255
256 lttv_hooks_remove_data(before_event, write_event_content, NULL);
257
258 lttv_hooks_remove_data(before_trace, write_trace_header, NULL);
259
260 lttv_hooks_remove_data(before_trace, write_traceset_header, NULL);
261
262 lttv_hooks_remove_data(before_trace, write_traceset_footer, NULL);
263 }
264
265
266
267
This page took 0.04006 seconds and 4 git commands to generate.