Commit | Line | Data |
---|---|---|
d8866baa PP |
1 | /* |
2 | * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation | |
834e9996 | 3 | * Copyright 2017 Philippe Proulx <pproulx@efficios.com> |
d8866baa PP |
4 | * |
5 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
6 | * of this software and associated documentation files (the "Software"), to deal | |
7 | * in the Software without restriction, including without limitation the rights | |
8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
9 | * copies of the Software, and to permit persons to whom the Software is | |
10 | * furnished to do so, subject to the following conditions: | |
11 | * | |
12 | * The above copyright notice and this permission notice shall be included in | |
13 | * all copies or substantial portions of the Software. | |
14 | * | |
15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
21 | * SOFTWARE. | |
22 | */ | |
23 | ||
4b1e4687 | 24 | #define BT_COMP_LOG_SELF_COMP (dmesg_comp->self_comp) |
f9291fb7 | 25 | #define BT_LOG_OUTPUT_LEVEL (dmesg_comp->log_level) |
b03487ab | 26 | #define BT_LOG_TAG "PLUGIN/SRC.TEXT.DMESG" |
4b1e4687 | 27 | #include "plugins/comp-logging.h" |
e2531d3b | 28 | |
d8866baa | 29 | #include <stdbool.h> |
e2531d3b PP |
30 | #include <string.h> |
31 | #include <ctype.h> | |
d8866baa | 32 | #include <stdio.h> |
57952005 | 33 | #include "common/common.h" |
f9291fb7 | 34 | #include "common/assert.h" |
71c5da58 | 35 | #include <babeltrace2/babeltrace.h> |
57952005 MJ |
36 | #include "compat/utc.h" |
37 | #include "compat/stdio.h" | |
d8866baa PP |
38 | #include <glib.h> |
39 | ||
e2531d3b PP |
40 | #define NSEC_PER_USEC 1000UL |
41 | #define NSEC_PER_MSEC 1000000UL | |
42 | #define NSEC_PER_SEC 1000000000ULL | |
43 | #define USEC_PER_SEC 1000000UL | |
44 | ||
d8866baa PP |
45 | struct dmesg_component; |
46 | ||
b09a5592 | 47 | struct dmesg_msg_iter { |
d8866baa | 48 | struct dmesg_component *dmesg_comp; |
b09a5592 | 49 | bt_self_message_iterator *pc_msg_iter; /* Weak */ |
e2531d3b PP |
50 | char *linebuf; |
51 | size_t linebuf_len; | |
d8866baa | 52 | FILE *fp; |
b09a5592 | 53 | bt_message *tmp_event_msg; |
96a0a69d | 54 | uint64_t last_clock_value; |
a6918753 PP |
55 | |
56 | enum { | |
57 | STATE_EMIT_STREAM_BEGINNING, | |
66ff4085 | 58 | STATE_EMIT_STREAM_ACTIVITY_BEGINNING, |
a6918753 PP |
59 | STATE_EMIT_PACKET_BEGINNING, |
60 | STATE_EMIT_EVENT, | |
61 | STATE_EMIT_PACKET_END, | |
66ff4085 | 62 | STATE_EMIT_STREAM_ACTIVITY_END, |
a6918753 PP |
63 | STATE_EMIT_STREAM_END, |
64 | STATE_DONE, | |
65 | } state; | |
d8866baa PP |
66 | }; |
67 | ||
68 | struct dmesg_component { | |
f9291fb7 PP |
69 | bt_logging_level log_level; |
70 | ||
d8866baa PP |
71 | struct { |
72 | GString *path; | |
e2531d3b | 73 | bt_bool read_from_stdin; |
8743317e | 74 | bt_bool no_timestamp; |
d8866baa PP |
75 | } params; |
76 | ||
4b1e4687 PP |
77 | bt_self_component_source *self_comp_src; |
78 | bt_self_component *self_comp; | |
8eee8ea2 PP |
79 | bt_trace_class *trace_class; |
80 | bt_stream_class *stream_class; | |
81 | bt_event_class *event_class; | |
82 | bt_trace *trace; | |
83 | bt_stream *stream; | |
84 | bt_packet *packet; | |
85 | bt_clock_class *clock_class; | |
d8866baa PP |
86 | }; |
87 | ||
e2531d3b | 88 | static |
f9291fb7 PP |
89 | bt_field_class *create_event_payload_fc(struct dmesg_component *dmesg_comp, |
90 | bt_trace_class *trace_class) | |
e2531d3b | 91 | { |
8eee8ea2 PP |
92 | bt_field_class *root_fc = NULL; |
93 | bt_field_class *fc = NULL; | |
e2531d3b PP |
94 | int ret; |
95 | ||
b7396828 | 96 | root_fc = bt_field_class_structure_create(trace_class); |
939190b3 | 97 | if (!root_fc) { |
4b1e4687 | 98 | BT_COMP_LOGE_STR("Cannot create an empty structure field class object."); |
e2531d3b PP |
99 | goto error; |
100 | } | |
101 | ||
b7396828 | 102 | fc = bt_field_class_string_create(trace_class); |
939190b3 | 103 | if (!fc) { |
4b1e4687 | 104 | BT_COMP_LOGE_STR("Cannot create a string field class object."); |
e2531d3b PP |
105 | goto error; |
106 | } | |
107 | ||
78cf9df6 | 108 | ret = bt_field_class_structure_append_member(root_fc, |
9e550e5f | 109 | "str", fc); |
e2531d3b | 110 | if (ret) { |
4b1e4687 | 111 | BT_COMP_LOGE("Cannot add `str` member to structure field class: " |
e2531d3b PP |
112 | "ret=%d", ret); |
113 | goto error; | |
114 | } | |
115 | ||
116 | goto end; | |
117 | ||
118 | error: | |
8c6884d9 | 119 | BT_FIELD_CLASS_PUT_REF_AND_RESET(root_fc); |
e2531d3b PP |
120 | |
121 | end: | |
8c6884d9 | 122 | bt_field_class_put_ref(fc); |
939190b3 | 123 | return root_fc; |
e2531d3b PP |
124 | } |
125 | ||
e2531d3b PP |
126 | static |
127 | int create_meta(struct dmesg_component *dmesg_comp, bool has_ts) | |
128 | { | |
8eee8ea2 | 129 | bt_field_class *fc = NULL; |
d8866baa PP |
130 | int ret = 0; |
131 | ||
4b1e4687 | 132 | dmesg_comp->trace_class = bt_trace_class_create(dmesg_comp->self_comp); |
10b7a2e4 | 133 | if (!dmesg_comp->trace_class) { |
4b1e4687 | 134 | BT_COMP_LOGE_STR("Cannot create an empty trace class object."); |
e2531d3b PP |
135 | goto error; |
136 | } | |
137 | ||
78cf9df6 | 138 | dmesg_comp->stream_class = bt_stream_class_create( |
10b7a2e4 | 139 | dmesg_comp->trace_class); |
e2531d3b | 140 | if (!dmesg_comp->stream_class) { |
4b1e4687 | 141 | BT_COMP_LOGE_STR("Cannot create a stream class object."); |
e2531d3b PP |
142 | goto error; |
143 | } | |
144 | ||
e2531d3b | 145 | if (has_ts) { |
35fa110e | 146 | dmesg_comp->clock_class = bt_clock_class_create( |
4b1e4687 | 147 | dmesg_comp->self_comp); |
e2531d3b | 148 | if (!dmesg_comp->clock_class) { |
4b1e4687 | 149 | BT_COMP_LOGE_STR("Cannot create clock class."); |
e2531d3b PP |
150 | goto error; |
151 | } | |
152 | ||
44de4099 | 153 | /* |
d608d675 PP |
154 | * The `dmesg` timestamp's origin is not the Unix epoch, |
155 | * it's the boot time. | |
44de4099 | 156 | */ |
d608d675 | 157 | bt_clock_class_set_origin_is_unix_epoch(dmesg_comp->clock_class, |
44de4099 PP |
158 | BT_FALSE); |
159 | ||
78cf9df6 PP |
160 | ret = bt_stream_class_set_default_clock_class( |
161 | dmesg_comp->stream_class, dmesg_comp->clock_class); | |
e2531d3b | 162 | if (ret) { |
4b1e4687 | 163 | BT_COMP_LOGE_STR("Cannot set stream class's default clock class."); |
e2531d3b PP |
164 | goto error; |
165 | } | |
34e13c22 | 166 | |
5ef34326 | 167 | bt_stream_class_set_packets_have_beginning_default_clock_snapshot( |
34e13c22 | 168 | dmesg_comp->stream_class, BT_TRUE); |
5ef34326 | 169 | bt_stream_class_set_packets_have_end_default_clock_snapshot( |
34e13c22 | 170 | dmesg_comp->stream_class, BT_TRUE); |
e2531d3b PP |
171 | } |
172 | ||
78cf9df6 | 173 | dmesg_comp->event_class = bt_event_class_create( |
7b33a0e0 | 174 | dmesg_comp->stream_class); |
e2531d3b | 175 | if (!dmesg_comp->event_class) { |
4b1e4687 | 176 | BT_COMP_LOGE_STR("Cannot create an event class object."); |
7b33a0e0 PP |
177 | goto error; |
178 | } | |
179 | ||
78cf9df6 | 180 | ret = bt_event_class_set_name(dmesg_comp->event_class, "string"); |
7b33a0e0 | 181 | if (ret) { |
4b1e4687 | 182 | BT_COMP_LOGE_STR("Cannot set event class's name."); |
e2531d3b PP |
183 | goto error; |
184 | } | |
185 | ||
f9291fb7 | 186 | fc = create_event_payload_fc(dmesg_comp, dmesg_comp->trace_class); |
939190b3 | 187 | if (!fc) { |
4b1e4687 | 188 | BT_COMP_LOGE_STR("Cannot create event payload field class."); |
d8866baa PP |
189 | goto error; |
190 | } | |
191 | ||
78cf9df6 | 192 | ret = bt_event_class_set_payload_field_class(dmesg_comp->event_class, fc); |
e2531d3b | 193 | if (ret) { |
4b1e4687 | 194 | BT_COMP_LOGE_STR("Cannot set event class's event payload field class."); |
e2531d3b PP |
195 | goto error; |
196 | } | |
197 | ||
e2531d3b PP |
198 | goto end; |
199 | ||
200 | error: | |
201 | ret = -1; | |
202 | ||
203 | end: | |
8c6884d9 | 204 | bt_field_class_put_ref(fc); |
e2531d3b PP |
205 | return ret; |
206 | } | |
207 | ||
208 | static | |
ce141536 | 209 | int handle_params(struct dmesg_component *dmesg_comp, |
8eee8ea2 | 210 | const bt_value *params) |
e2531d3b | 211 | { |
8eee8ea2 PP |
212 | const bt_value *no_timestamp = NULL; |
213 | const bt_value *path = NULL; | |
e2531d3b PP |
214 | const char *path_str; |
215 | int ret = 0; | |
216 | ||
ce141536 | 217 | no_timestamp = bt_value_map_borrow_entry_value_const(params, |
44514773 | 218 | "no-extract-timestamp"); |
8743317e PP |
219 | if (no_timestamp) { |
220 | if (!bt_value_is_bool(no_timestamp)) { | |
4b1e4687 | 221 | BT_COMP_LOGE("Expecting a boolean value for the `no-extract-timestamp` parameter: " |
8743317e | 222 | "type=%s", |
17582c6d | 223 | bt_common_value_type_string( |
8743317e PP |
224 | bt_value_get_type(no_timestamp))); |
225 | goto error; | |
226 | } | |
227 | ||
b5cdc106 PP |
228 | dmesg_comp->params.no_timestamp = |
229 | bt_value_bool_get(no_timestamp); | |
8743317e PP |
230 | } |
231 | ||
ce141536 | 232 | path = bt_value_map_borrow_entry_value_const(params, "path"); |
d8866baa PP |
233 | if (path) { |
234 | if (dmesg_comp->params.read_from_stdin) { | |
4b1e4687 | 235 | BT_COMP_LOGE_STR("Cannot specify both `read-from-stdin` and `path` parameters."); |
d8866baa PP |
236 | goto error; |
237 | } | |
238 | ||
239 | if (!bt_value_is_string(path)) { | |
4b1e4687 | 240 | BT_COMP_LOGE("Expecting a string value for the `path` parameter: " |
e2531d3b | 241 | "type=%s", |
17582c6d | 242 | bt_common_value_type_string( |
e2531d3b | 243 | bt_value_get_type(path))); |
d8866baa PP |
244 | goto error; |
245 | } | |
246 | ||
b5cdc106 | 247 | path_str = bt_value_string_get(path); |
d8866baa PP |
248 | g_string_assign(dmesg_comp->params.path, path_str); |
249 | } else { | |
2a2f36a2 | 250 | dmesg_comp->params.read_from_stdin = true; |
d8866baa PP |
251 | } |
252 | ||
253 | goto end; | |
254 | ||
255 | error: | |
256 | ret = -1; | |
257 | ||
258 | end: | |
d8866baa PP |
259 | return ret; |
260 | } | |
261 | ||
e2531d3b | 262 | static |
10b7a2e4 | 263 | int create_packet_and_stream_and_trace(struct dmesg_component *dmesg_comp) |
e2531d3b PP |
264 | { |
265 | int ret = 0; | |
a260020d | 266 | const char *trace_name = NULL; |
10b7a2e4 PP |
267 | gchar *basename = NULL; |
268 | ||
269 | dmesg_comp->trace = bt_trace_create(dmesg_comp->trace_class); | |
270 | if (!dmesg_comp->trace) { | |
4b1e4687 | 271 | BT_COMP_LOGE_STR("Cannot create trace object."); |
10b7a2e4 PP |
272 | goto error; |
273 | } | |
e2531d3b | 274 | |
10b7a2e4 PP |
275 | if (dmesg_comp->params.read_from_stdin) { |
276 | trace_name = "STDIN"; | |
277 | } else { | |
278 | basename = g_path_get_basename(dmesg_comp->params.path->str); | |
279 | BT_ASSERT(basename); | |
280 | ||
281 | if (strcmp(basename, G_DIR_SEPARATOR_S) != 0 && | |
282 | strcmp(basename, ".") != 0) { | |
283 | trace_name = basename; | |
284 | } | |
285 | } | |
286 | ||
287 | if (trace_name) { | |
288 | ret = bt_trace_set_name(dmesg_comp->trace, trace_name); | |
289 | if (ret) { | |
4b1e4687 | 290 | BT_COMP_LOGE("Cannot set trace's name: name=\"%s\"", |
10b7a2e4 PP |
291 | trace_name); |
292 | goto error; | |
293 | } | |
294 | } | |
295 | ||
296 | dmesg_comp->stream = bt_stream_create(dmesg_comp->stream_class, | |
297 | dmesg_comp->trace); | |
e2531d3b | 298 | if (!dmesg_comp->stream) { |
4b1e4687 | 299 | BT_COMP_LOGE_STR("Cannot create stream object."); |
e2531d3b PP |
300 | goto error; |
301 | } | |
302 | ||
78cf9df6 | 303 | dmesg_comp->packet = bt_packet_create(dmesg_comp->stream); |
e2531d3b | 304 | if (!dmesg_comp->packet) { |
4b1e4687 | 305 | BT_COMP_LOGE_STR("Cannot create packet object."); |
e2531d3b PP |
306 | goto error; |
307 | } | |
308 | ||
e2531d3b PP |
309 | goto end; |
310 | ||
311 | error: | |
312 | ret = -1; | |
313 | ||
314 | end: | |
10b7a2e4 PP |
315 | if (basename) { |
316 | g_free(basename); | |
317 | } | |
318 | ||
e2531d3b PP |
319 | return ret; |
320 | } | |
321 | ||
322 | static | |
323 | int try_create_meta_stream_packet(struct dmesg_component *dmesg_comp, | |
324 | bool has_ts) | |
325 | { | |
326 | int ret = 0; | |
327 | ||
328 | if (dmesg_comp->trace) { | |
329 | /* Already created */ | |
330 | goto end; | |
331 | } | |
332 | ||
333 | ret = create_meta(dmesg_comp, has_ts); | |
334 | if (ret) { | |
4b1e4687 | 335 | BT_COMP_LOGE("Cannot create metadata objects: dmesg-comp-addr=%p", |
e2531d3b PP |
336 | dmesg_comp); |
337 | goto error; | |
338 | } | |
339 | ||
10b7a2e4 | 340 | ret = create_packet_and_stream_and_trace(dmesg_comp); |
e2531d3b | 341 | if (ret) { |
4b1e4687 | 342 | BT_COMP_LOGE("Cannot create packet and stream objects: " |
e2531d3b PP |
343 | "dmesg-comp-addr=%p", dmesg_comp); |
344 | goto error; | |
345 | } | |
346 | ||
347 | goto end; | |
348 | ||
349 | error: | |
350 | ret = -1; | |
351 | ||
352 | end: | |
353 | return ret; | |
354 | } | |
d8866baa PP |
355 | |
356 | static | |
357 | void destroy_dmesg_component(struct dmesg_component *dmesg_comp) | |
358 | { | |
359 | if (!dmesg_comp) { | |
360 | return; | |
361 | } | |
362 | ||
363 | if (dmesg_comp->params.path) { | |
364 | g_string_free(dmesg_comp->params.path, TRUE); | |
365 | } | |
366 | ||
8c6884d9 PP |
367 | bt_packet_put_ref(dmesg_comp->packet); |
368 | bt_trace_put_ref(dmesg_comp->trace); | |
369 | bt_stream_class_put_ref(dmesg_comp->stream_class); | |
370 | bt_event_class_put_ref(dmesg_comp->event_class); | |
371 | bt_stream_put_ref(dmesg_comp->stream); | |
372 | bt_clock_class_put_ref(dmesg_comp->clock_class); | |
224b2711 | 373 | bt_trace_class_put_ref(dmesg_comp->trace_class); |
d8866baa PP |
374 | g_free(dmesg_comp); |
375 | } | |
376 | ||
e2531d3b | 377 | static |
ee78f405 | 378 | bt_self_component_status create_port( |
8eee8ea2 | 379 | bt_self_component_source *self_comp) |
e2531d3b | 380 | { |
834e9996 | 381 | return bt_self_component_source_add_output_port(self_comp, |
e2531d3b PP |
382 | "out", NULL, NULL); |
383 | } | |
384 | ||
d8866baa | 385 | BT_HIDDEN |
ee78f405 | 386 | bt_self_component_status dmesg_init( |
4b1e4687 | 387 | bt_self_component_source *self_comp_src, |
8eee8ea2 | 388 | bt_value *params, void *init_method_data) |
d8866baa PP |
389 | { |
390 | int ret = 0; | |
391 | struct dmesg_component *dmesg_comp = g_new0(struct dmesg_component, 1); | |
ee78f405 | 392 | bt_self_component_status status = BT_SELF_COMPONENT_STATUS_OK; |
4b1e4687 PP |
393 | bt_self_component *self_comp = |
394 | bt_self_component_source_as_self_component(self_comp_src); | |
395 | const bt_component *comp = bt_self_component_as_component(self_comp); | |
f9291fb7 | 396 | bt_logging_level log_level = bt_component_get_logging_level(comp); |
d8866baa PP |
397 | |
398 | if (!dmesg_comp) { | |
f9291fb7 | 399 | /* Implicit log level is not available here */ |
4b1e4687 | 400 | BT_COMP_LOG_CUR_LVL(BT_LOG_ERROR, log_level, self_comp, |
f9291fb7 | 401 | "Failed to allocate one dmesg component structure."); |
d8866baa PP |
402 | goto error; |
403 | } | |
404 | ||
f9291fb7 | 405 | dmesg_comp->log_level = log_level; |
e5e71bf8 | 406 | dmesg_comp->self_comp = self_comp; |
4b1e4687 | 407 | dmesg_comp->self_comp_src = self_comp_src; |
d8866baa PP |
408 | dmesg_comp->params.path = g_string_new(NULL); |
409 | if (!dmesg_comp->params.path) { | |
4b1e4687 | 410 | BT_COMP_LOGE_STR("Failed to allocate a GString."); |
d8866baa PP |
411 | goto error; |
412 | } | |
413 | ||
e2531d3b | 414 | ret = handle_params(dmesg_comp, params); |
d8866baa | 415 | if (ret) { |
4b1e4687 | 416 | BT_COMP_LOGE("Invalid parameters: comp-addr=%p", self_comp); |
d8866baa PP |
417 | goto error; |
418 | } | |
419 | ||
e2531d3b PP |
420 | if (!dmesg_comp->params.read_from_stdin && |
421 | !g_file_test(dmesg_comp->params.path->str, | |
422 | G_FILE_TEST_IS_REGULAR)) { | |
4b1e4687 | 423 | BT_COMP_LOGE("Input path is not a regular file: " |
834e9996 | 424 | "comp-addr=%p, path=\"%s\"", self_comp, |
e2531d3b PP |
425 | dmesg_comp->params.path->str); |
426 | goto error; | |
427 | } | |
d8866baa | 428 | |
4b1e4687 | 429 | status = create_port(self_comp_src); |
834e9996 | 430 | if (status != BT_SELF_COMPONENT_STATUS_OK) { |
e2531d3b PP |
431 | goto error; |
432 | } | |
d8866baa | 433 | |
4b1e4687 PP |
434 | bt_self_component_set_data(self_comp, dmesg_comp); |
435 | BT_COMP_LOGI_STR("Component initialized."); | |
d8866baa PP |
436 | goto end; |
437 | ||
438 | error: | |
439 | destroy_dmesg_component(dmesg_comp); | |
4b1e4687 | 440 | bt_self_component_set_data(self_comp, NULL); |
e2531d3b PP |
441 | |
442 | if (status >= 0) { | |
834e9996 | 443 | status = BT_SELF_COMPONENT_STATUS_ERROR; |
e2531d3b | 444 | } |
d8866baa PP |
445 | |
446 | end: | |
447 | return status; | |
448 | } | |
449 | ||
450 | BT_HIDDEN | |
8eee8ea2 | 451 | void dmesg_finalize(bt_self_component_source *self_comp) |
d8866baa | 452 | { |
834e9996 | 453 | destroy_dmesg_component(bt_self_component_get_data( |
bb61965b | 454 | bt_self_component_source_as_self_component(self_comp))); |
e2531d3b PP |
455 | } |
456 | ||
457 | static | |
b09a5592 PP |
458 | bt_message *create_init_event_msg_from_line( |
459 | struct dmesg_msg_iter *msg_iter, | |
a6918753 | 460 | const char *line, const char **new_start) |
e2531d3b | 461 | { |
8eee8ea2 | 462 | bt_event *event; |
b09a5592 | 463 | bt_message *msg = NULL; |
e2531d3b PP |
464 | bool has_timestamp = false; |
465 | unsigned long sec, usec, msec; | |
466 | unsigned int year, mon, mday, hour, min; | |
467 | uint64_t ts = 0; | |
e2531d3b | 468 | int ret = 0; |
b09a5592 | 469 | struct dmesg_component *dmesg_comp = msg_iter->dmesg_comp; |
e2531d3b | 470 | |
e2531d3b PP |
471 | *new_start = line; |
472 | ||
8743317e PP |
473 | if (dmesg_comp->params.no_timestamp) { |
474 | goto skip_ts; | |
475 | } | |
476 | ||
e2531d3b PP |
477 | /* Extract time from input line */ |
478 | if (sscanf(line, "[%lu.%lu] ", &sec, &usec) == 2) { | |
479 | ts = (uint64_t) sec * USEC_PER_SEC + (uint64_t) usec; | |
480 | ||
481 | /* | |
482 | * The clock class we use has a 1 GHz frequency: convert | |
483 | * from µs to ns. | |
484 | */ | |
485 | ts *= NSEC_PER_USEC; | |
486 | has_timestamp = true; | |
487 | } else if (sscanf(line, "[%u-%u-%u %u:%u:%lu.%lu] ", | |
488 | &year, &mon, &mday, &hour, &min, | |
489 | &sec, &msec) == 7) { | |
490 | time_t ep_sec; | |
491 | struct tm ti; | |
492 | ||
493 | memset(&ti, 0, sizeof(ti)); | |
494 | ti.tm_year = year - 1900; /* From 1900 */ | |
495 | ti.tm_mon = mon - 1; /* 0 to 11 */ | |
496 | ti.tm_mday = mday; | |
497 | ti.tm_hour = hour; | |
498 | ti.tm_min = min; | |
499 | ti.tm_sec = sec; | |
500 | ||
501 | ep_sec = bt_timegm(&ti); | |
502 | if (ep_sec != (time_t) -1) { | |
503 | ts = (uint64_t) ep_sec * NSEC_PER_SEC | |
504 | + (uint64_t) msec * NSEC_PER_MSEC; | |
505 | } | |
506 | ||
507 | has_timestamp = true; | |
508 | } | |
509 | ||
510 | if (has_timestamp) { | |
511 | /* Set new start for the message portion of the line */ | |
512 | *new_start = strchr(line, ']'); | |
8b45963b | 513 | BT_ASSERT(*new_start); |
e2531d3b PP |
514 | (*new_start)++; |
515 | ||
516 | if ((*new_start)[0] == ' ') { | |
517 | (*new_start)++; | |
518 | } | |
519 | } | |
520 | ||
8743317e | 521 | skip_ts: |
e2531d3b PP |
522 | /* |
523 | * At this point, we know if the stream class's event header | |
939190b3 | 524 | * field class should have a timestamp or not, so we can lazily |
e2531d3b PP |
525 | * create the metadata, stream, and packet objects. |
526 | */ | |
527 | ret = try_create_meta_stream_packet(dmesg_comp, has_timestamp); | |
528 | if (ret) { | |
529 | /* try_create_meta_stream_packet() logs errors */ | |
530 | goto error; | |
531 | } | |
532 | ||
9c04b633 PP |
533 | if (dmesg_comp->clock_class) { |
534 | msg = bt_message_event_create_with_default_clock_snapshot( | |
535 | msg_iter->pc_msg_iter, | |
536 | dmesg_comp->event_class, dmesg_comp->packet, ts); | |
537 | msg_iter->last_clock_value = ts; | |
538 | } else { | |
539 | msg = bt_message_event_create(msg_iter->pc_msg_iter, | |
540 | dmesg_comp->event_class, dmesg_comp->packet); | |
541 | } | |
542 | ||
b09a5592 | 543 | if (!msg) { |
4b1e4687 | 544 | BT_COMP_LOGE_STR("Cannot create event message."); |
a6918753 PP |
545 | goto error; |
546 | } | |
e2531d3b | 547 | |
b09a5592 | 548 | event = bt_message_event_borrow_event(msg); |
a6918753 | 549 | BT_ASSERT(event); |
e2531d3b PP |
550 | goto end; |
551 | ||
552 | error: | |
b09a5592 | 553 | BT_MESSAGE_PUT_REF_AND_RESET(msg); |
e2531d3b PP |
554 | |
555 | end: | |
b09a5592 | 556 | return msg; |
e2531d3b PP |
557 | } |
558 | ||
559 | static | |
f9291fb7 PP |
560 | int fill_event_payload_from_line(struct dmesg_component *dmesg_comp, |
561 | const char *line, bt_event *event) | |
e2531d3b | 562 | { |
8eee8ea2 PP |
563 | bt_field *ep_field = NULL; |
564 | bt_field *str_field = NULL; | |
e2531d3b PP |
565 | size_t len; |
566 | int ret; | |
567 | ||
78cf9df6 | 568 | ep_field = bt_event_borrow_payload_field(event); |
a6918753 | 569 | BT_ASSERT(ep_field); |
78cf9df6 | 570 | str_field = bt_field_structure_borrow_member_field_by_index( |
9e550e5f | 571 | ep_field, 0); |
e2531d3b | 572 | if (!str_field) { |
4b1e4687 | 573 | BT_COMP_LOGE_STR("Cannot borrow `timestamp` field from event payload structure field."); |
e2531d3b PP |
574 | goto error; |
575 | } | |
576 | ||
577 | len = strlen(line); | |
578 | if (line[len - 1] == '\n') { | |
579 | /* Do not include the newline character in the payload */ | |
580 | len--; | |
581 | } | |
582 | ||
78cf9df6 | 583 | ret = bt_field_string_clear(str_field); |
a6918753 | 584 | if (ret) { |
4b1e4687 | 585 | BT_COMP_LOGE_STR("Cannot clear string field object."); |
a6918753 PP |
586 | goto error; |
587 | } | |
588 | ||
78cf9df6 | 589 | ret = bt_field_string_append_with_length(str_field, line, len); |
e2531d3b | 590 | if (ret) { |
4b1e4687 | 591 | BT_COMP_LOGE("Cannot append value to string field object: " |
e2531d3b PP |
592 | "len=%zu", len); |
593 | goto error; | |
594 | } | |
595 | ||
e2531d3b PP |
596 | goto end; |
597 | ||
598 | error: | |
599 | ret = -1; | |
600 | ||
601 | end: | |
e2531d3b PP |
602 | return ret; |
603 | } | |
604 | ||
605 | static | |
b09a5592 PP |
606 | bt_message *create_msg_from_line( |
607 | struct dmesg_msg_iter *dmesg_msg_iter, const char *line) | |
e2531d3b | 608 | { |
f9291fb7 | 609 | struct dmesg_component *dmesg_comp = dmesg_msg_iter->dmesg_comp; |
8eee8ea2 | 610 | bt_event *event = NULL; |
b09a5592 | 611 | bt_message *msg = NULL; |
e2531d3b PP |
612 | const char *new_start; |
613 | int ret; | |
614 | ||
b09a5592 | 615 | msg = create_init_event_msg_from_line(dmesg_msg_iter, |
03e18d5d | 616 | line, &new_start); |
b09a5592 | 617 | if (!msg) { |
4b1e4687 | 618 | BT_COMP_LOGE_STR("Cannot create and initialize event message from line."); |
e2531d3b PP |
619 | goto error; |
620 | } | |
621 | ||
b09a5592 | 622 | event = bt_message_event_borrow_event(msg); |
a6918753 | 623 | BT_ASSERT(event); |
f9291fb7 | 624 | ret = fill_event_payload_from_line(dmesg_comp, new_start, event); |
e2531d3b | 625 | if (ret) { |
4b1e4687 | 626 | BT_COMP_LOGE("Cannot fill event payload field from line: " |
e2531d3b PP |
627 | "ret=%d", ret); |
628 | goto error; | |
629 | } | |
630 | ||
e2531d3b PP |
631 | goto end; |
632 | ||
633 | error: | |
b09a5592 | 634 | BT_MESSAGE_PUT_REF_AND_RESET(msg); |
e2531d3b PP |
635 | |
636 | end: | |
b09a5592 | 637 | return msg; |
e2531d3b PP |
638 | } |
639 | ||
640 | static | |
b09a5592 | 641 | void destroy_dmesg_msg_iter(struct dmesg_msg_iter *dmesg_msg_iter) |
e2531d3b | 642 | { |
f9291fb7 PP |
643 | struct dmesg_component *dmesg_comp = dmesg_msg_iter->dmesg_comp; |
644 | ||
b09a5592 | 645 | if (!dmesg_msg_iter) { |
e2531d3b PP |
646 | return; |
647 | } | |
648 | ||
b09a5592 PP |
649 | if (dmesg_msg_iter->fp && dmesg_msg_iter->fp != stdin) { |
650 | if (fclose(dmesg_msg_iter->fp)) { | |
4b1e4687 | 651 | BT_COMP_LOGE_ERRNO("Cannot close input file", "."); |
e2531d3b PP |
652 | } |
653 | } | |
d8866baa | 654 | |
b09a5592 PP |
655 | bt_message_put_ref(dmesg_msg_iter->tmp_event_msg); |
656 | free(dmesg_msg_iter->linebuf); | |
657 | g_free(dmesg_msg_iter); | |
d8866baa PP |
658 | } |
659 | ||
12b0fa51 PP |
660 | |
661 | ||
d8866baa | 662 | BT_HIDDEN |
ee78f405 | 663 | bt_self_message_iterator_status dmesg_msg_iter_init( |
b09a5592 | 664 | bt_self_message_iterator *self_msg_iter, |
8eee8ea2 PP |
665 | bt_self_component_source *self_comp, |
666 | bt_self_component_port_output *self_port) | |
d8866baa | 667 | { |
f9291fb7 PP |
668 | struct dmesg_component *dmesg_comp = bt_self_component_get_data( |
669 | bt_self_component_source_as_self_component(self_comp)); | |
b09a5592 PP |
670 | struct dmesg_msg_iter *dmesg_msg_iter = |
671 | g_new0(struct dmesg_msg_iter, 1); | |
ee78f405 | 672 | bt_self_message_iterator_status status = |
b09a5592 | 673 | BT_SELF_MESSAGE_ITERATOR_STATUS_OK; |
e2531d3b | 674 | |
b09a5592 | 675 | if (!dmesg_msg_iter) { |
4b1e4687 | 676 | BT_COMP_LOGE_STR("Failed to allocate on dmesg message iterator structure."); |
e2531d3b PP |
677 | goto error; |
678 | } | |
679 | ||
8b45963b | 680 | BT_ASSERT(dmesg_comp); |
b09a5592 PP |
681 | dmesg_msg_iter->dmesg_comp = dmesg_comp; |
682 | dmesg_msg_iter->pc_msg_iter = self_msg_iter; | |
d8866baa | 683 | |
e2531d3b | 684 | if (dmesg_comp->params.read_from_stdin) { |
b09a5592 | 685 | dmesg_msg_iter->fp = stdin; |
e2531d3b | 686 | } else { |
b09a5592 PP |
687 | dmesg_msg_iter->fp = fopen(dmesg_comp->params.path->str, "r"); |
688 | if (!dmesg_msg_iter->fp) { | |
4b1e4687 | 689 | BT_COMP_LOGE_ERRNO("Cannot open input file in read mode", ": path=\"%s\"", |
e2531d3b PP |
690 | dmesg_comp->params.path->str); |
691 | goto error; | |
692 | } | |
693 | } | |
694 | ||
b09a5592 PP |
695 | bt_self_message_iterator_set_data(self_msg_iter, |
696 | dmesg_msg_iter); | |
e2531d3b PP |
697 | goto end; |
698 | ||
699 | error: | |
b09a5592 PP |
700 | destroy_dmesg_msg_iter(dmesg_msg_iter); |
701 | bt_self_message_iterator_set_data(self_msg_iter, NULL); | |
e2531d3b | 702 | if (status >= 0) { |
b09a5592 | 703 | status = BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR; |
e2531d3b PP |
704 | } |
705 | ||
706 | end: | |
e2531d3b | 707 | return status; |
d8866baa PP |
708 | } |
709 | ||
710 | BT_HIDDEN | |
b09a5592 PP |
711 | void dmesg_msg_iter_finalize( |
712 | bt_self_message_iterator *priv_msg_iter) | |
d8866baa | 713 | { |
b09a5592 PP |
714 | destroy_dmesg_msg_iter(bt_self_message_iterator_get_data( |
715 | priv_msg_iter)); | |
d8866baa PP |
716 | } |
717 | ||
3fd7b79d | 718 | static |
ee78f405 | 719 | bt_self_message_iterator_status dmesg_msg_iter_next_one( |
b09a5592 PP |
720 | struct dmesg_msg_iter *dmesg_msg_iter, |
721 | bt_message **msg) | |
d8866baa | 722 | { |
e2531d3b | 723 | ssize_t len; |
e2531d3b | 724 | struct dmesg_component *dmesg_comp; |
ee78f405 | 725 | bt_self_message_iterator_status status = |
b09a5592 | 726 | BT_SELF_MESSAGE_ITERATOR_STATUS_OK; |
d8866baa | 727 | |
b09a5592 PP |
728 | BT_ASSERT(dmesg_msg_iter); |
729 | dmesg_comp = dmesg_msg_iter->dmesg_comp; | |
8b45963b | 730 | BT_ASSERT(dmesg_comp); |
e2531d3b | 731 | |
b09a5592 PP |
732 | if (dmesg_msg_iter->state == STATE_DONE) { |
733 | status = BT_SELF_MESSAGE_ITERATOR_STATUS_END; | |
a6918753 PP |
734 | goto end; |
735 | } | |
736 | ||
b09a5592 PP |
737 | if (dmesg_msg_iter->tmp_event_msg || |
738 | dmesg_msg_iter->state == STATE_EMIT_PACKET_END || | |
66ff4085 | 739 | dmesg_msg_iter->state == STATE_EMIT_STREAM_ACTIVITY_END || |
b09a5592 | 740 | dmesg_msg_iter->state == STATE_EMIT_STREAM_END) { |
a6918753 PP |
741 | goto handle_state; |
742 | } | |
743 | ||
e2531d3b PP |
744 | while (true) { |
745 | const char *ch; | |
746 | bool only_spaces = true; | |
747 | ||
b09a5592 PP |
748 | len = bt_getline(&dmesg_msg_iter->linebuf, |
749 | &dmesg_msg_iter->linebuf_len, dmesg_msg_iter->fp); | |
e2531d3b PP |
750 | if (len < 0) { |
751 | if (errno == EINVAL) { | |
b09a5592 | 752 | status = BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR; |
e2531d3b | 753 | } else if (errno == ENOMEM) { |
3fd7b79d | 754 | status = |
b09a5592 | 755 | BT_SELF_MESSAGE_ITERATOR_STATUS_NOMEM; |
e2531d3b | 756 | } else { |
b09a5592 | 757 | if (dmesg_msg_iter->state == STATE_EMIT_STREAM_BEGINNING) { |
a6918753 | 758 | /* Stream did not even begin */ |
b09a5592 | 759 | status = BT_SELF_MESSAGE_ITERATOR_STATUS_END; |
a6918753 PP |
760 | goto end; |
761 | } else { | |
762 | /* End current packet now */ | |
b09a5592 | 763 | dmesg_msg_iter->state = |
a6918753 PP |
764 | STATE_EMIT_PACKET_END; |
765 | goto handle_state; | |
766 | } | |
e2531d3b PP |
767 | } |
768 | ||
769 | goto end; | |
770 | } | |
771 | ||
b09a5592 | 772 | BT_ASSERT(dmesg_msg_iter->linebuf); |
e2531d3b PP |
773 | |
774 | /* Ignore empty lines, once trimmed */ | |
b09a5592 | 775 | for (ch = dmesg_msg_iter->linebuf; *ch != '\0'; ch++) { |
e2531d3b PP |
776 | if (!isspace(*ch)) { |
777 | only_spaces = false; | |
778 | break; | |
779 | } | |
780 | } | |
781 | ||
782 | if (!only_spaces) { | |
783 | break; | |
784 | } | |
785 | } | |
786 | ||
b09a5592 PP |
787 | dmesg_msg_iter->tmp_event_msg = create_msg_from_line( |
788 | dmesg_msg_iter, dmesg_msg_iter->linebuf); | |
789 | if (!dmesg_msg_iter->tmp_event_msg) { | |
4b1e4687 | 790 | BT_COMP_LOGE("Cannot create event message from line: " |
e2531d3b | 791 | "dmesg-comp-addr=%p, line=\"%s\"", dmesg_comp, |
b09a5592 | 792 | dmesg_msg_iter->linebuf); |
a6918753 PP |
793 | goto end; |
794 | } | |
795 | ||
796 | handle_state: | |
797 | BT_ASSERT(dmesg_comp->trace); | |
798 | ||
b09a5592 | 799 | switch (dmesg_msg_iter->state) { |
a6918753 | 800 | case STATE_EMIT_STREAM_BEGINNING: |
b09a5592 PP |
801 | BT_ASSERT(dmesg_msg_iter->tmp_event_msg); |
802 | *msg = bt_message_stream_beginning_create( | |
803 | dmesg_msg_iter->pc_msg_iter, dmesg_comp->stream); | |
66ff4085 PP |
804 | dmesg_msg_iter->state = STATE_EMIT_STREAM_ACTIVITY_BEGINNING; |
805 | break; | |
806 | case STATE_EMIT_STREAM_ACTIVITY_BEGINNING: | |
807 | BT_ASSERT(dmesg_msg_iter->tmp_event_msg); | |
808 | *msg = bt_message_stream_activity_beginning_create( | |
809 | dmesg_msg_iter->pc_msg_iter, dmesg_comp->stream); | |
b09a5592 | 810 | dmesg_msg_iter->state = STATE_EMIT_PACKET_BEGINNING; |
a6918753 PP |
811 | break; |
812 | case STATE_EMIT_PACKET_BEGINNING: | |
b09a5592 | 813 | BT_ASSERT(dmesg_msg_iter->tmp_event_msg); |
96a0a69d PP |
814 | |
815 | if (dmesg_comp->clock_class) { | |
816 | *msg = bt_message_packet_beginning_create_with_default_clock_snapshot( | |
817 | dmesg_msg_iter->pc_msg_iter, dmesg_comp->packet, | |
818 | dmesg_msg_iter->last_clock_value); | |
819 | } else { | |
820 | *msg = bt_message_packet_beginning_create( | |
821 | dmesg_msg_iter->pc_msg_iter, dmesg_comp->packet); | |
822 | } | |
823 | ||
b09a5592 | 824 | dmesg_msg_iter->state = STATE_EMIT_EVENT; |
a6918753 PP |
825 | break; |
826 | case STATE_EMIT_EVENT: | |
b09a5592 PP |
827 | BT_ASSERT(dmesg_msg_iter->tmp_event_msg); |
828 | *msg = dmesg_msg_iter->tmp_event_msg; | |
829 | dmesg_msg_iter->tmp_event_msg = NULL; | |
a6918753 PP |
830 | break; |
831 | case STATE_EMIT_PACKET_END: | |
96a0a69d PP |
832 | if (dmesg_comp->clock_class) { |
833 | *msg = bt_message_packet_end_create_with_default_clock_snapshot( | |
834 | dmesg_msg_iter->pc_msg_iter, dmesg_comp->packet, | |
835 | dmesg_msg_iter->last_clock_value); | |
836 | } else { | |
837 | *msg = bt_message_packet_end_create( | |
838 | dmesg_msg_iter->pc_msg_iter, dmesg_comp->packet); | |
839 | } | |
840 | ||
66ff4085 PP |
841 | dmesg_msg_iter->state = STATE_EMIT_STREAM_ACTIVITY_END; |
842 | break; | |
843 | case STATE_EMIT_STREAM_ACTIVITY_END: | |
844 | *msg = bt_message_stream_activity_end_create( | |
845 | dmesg_msg_iter->pc_msg_iter, dmesg_comp->stream); | |
b09a5592 | 846 | dmesg_msg_iter->state = STATE_EMIT_STREAM_END; |
a6918753 PP |
847 | break; |
848 | case STATE_EMIT_STREAM_END: | |
b09a5592 PP |
849 | *msg = bt_message_stream_end_create( |
850 | dmesg_msg_iter->pc_msg_iter, dmesg_comp->stream); | |
851 | dmesg_msg_iter->state = STATE_DONE; | |
a6918753 PP |
852 | break; |
853 | default: | |
854 | break; | |
855 | } | |
856 | ||
b09a5592 | 857 | if (!*msg) { |
4b1e4687 | 858 | BT_COMP_LOGE("Cannot create message: dmesg-comp-addr=%p", |
a6918753 | 859 | dmesg_comp); |
b09a5592 | 860 | status = BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR; |
e2531d3b PP |
861 | } |
862 | ||
863 | end: | |
3fd7b79d PP |
864 | return status; |
865 | } | |
866 | ||
867 | BT_HIDDEN | |
ee78f405 | 868 | bt_self_message_iterator_status dmesg_msg_iter_next( |
b09a5592 PP |
869 | bt_self_message_iterator *self_msg_iter, |
870 | bt_message_array_const msgs, uint64_t capacity, | |
3fd7b79d PP |
871 | uint64_t *count) |
872 | { | |
b09a5592 PP |
873 | struct dmesg_msg_iter *dmesg_msg_iter = |
874 | bt_self_message_iterator_get_data( | |
875 | self_msg_iter); | |
ee78f405 | 876 | bt_self_message_iterator_status status = |
b09a5592 | 877 | BT_SELF_MESSAGE_ITERATOR_STATUS_OK; |
3fd7b79d PP |
878 | uint64_t i = 0; |
879 | ||
834e9996 | 880 | while (i < capacity && |
b09a5592 PP |
881 | status == BT_SELF_MESSAGE_ITERATOR_STATUS_OK) { |
882 | bt_message *priv_msg = NULL; | |
9e550e5f | 883 | |
b09a5592 PP |
884 | status = dmesg_msg_iter_next_one(dmesg_msg_iter, |
885 | &priv_msg); | |
886 | msgs[i] = priv_msg; | |
887 | if (status == BT_SELF_MESSAGE_ITERATOR_STATUS_OK) { | |
3fd7b79d PP |
888 | i++; |
889 | } | |
890 | } | |
891 | ||
892 | if (i > 0) { | |
893 | /* | |
b09a5592 | 894 | * Even if dmesg_msg_iter_next_one() returned |
3fd7b79d | 895 | * something else than |
b09a5592 PP |
896 | * BT_SELF_MESSAGE_ITERATOR_STATUS_OK, we |
897 | * accumulated message objects in the output | |
898 | * message array, so we need to return | |
899 | * BT_SELF_MESSAGE_ITERATOR_STATUS_OK so that they | |
834e9996 | 900 | * are transfered to downstream. This other status |
b09a5592 | 901 | * occurs again the next time muxer_msg_iter_do_next() |
834e9996 | 902 | * is called, possibly without any accumulated |
b09a5592 | 903 | * message, in which case we'll return it. |
3fd7b79d PP |
904 | */ |
905 | *count = i; | |
b09a5592 | 906 | status = BT_SELF_MESSAGE_ITERATOR_STATUS_OK; |
3fd7b79d PP |
907 | } |
908 | ||
909 | return status; | |
d8866baa | 910 | } |
12b0fa51 PP |
911 | |
912 | BT_HIDDEN | |
913 | bt_bool dmesg_msg_iter_can_seek_beginning( | |
914 | bt_self_message_iterator *self_msg_iter) | |
915 | { | |
916 | struct dmesg_msg_iter *dmesg_msg_iter = | |
917 | bt_self_message_iterator_get_data(self_msg_iter); | |
918 | ||
919 | /* Can't seek the beginning of the standard input stream */ | |
920 | return !dmesg_msg_iter->dmesg_comp->params.read_from_stdin; | |
921 | } | |
922 | ||
923 | BT_HIDDEN | |
924 | bt_self_message_iterator_status dmesg_msg_iter_seek_beginning( | |
925 | bt_self_message_iterator *self_msg_iter) | |
926 | { | |
927 | struct dmesg_msg_iter *dmesg_msg_iter = | |
928 | bt_self_message_iterator_get_data(self_msg_iter); | |
929 | ||
930 | BT_ASSERT(!dmesg_msg_iter->dmesg_comp->params.read_from_stdin); | |
931 | ||
932 | BT_MESSAGE_PUT_REF_AND_RESET(dmesg_msg_iter->tmp_event_msg); | |
933 | dmesg_msg_iter->last_clock_value = 0; | |
934 | dmesg_msg_iter->state = STATE_EMIT_STREAM_BEGINNING; | |
935 | return BT_SELF_MESSAGE_ITERATOR_STATUS_OK; | |
936 | } |