lib: strictly type function return status enumerations
[babeltrace.git] / src / plugins / text / dmesg / dmesg.c
CommitLineData
d8866baa
PP
1/*
2 * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation
d94d92ac 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
9c8a5044 24#define BT_COMP_LOG_SELF_COMP (dmesg_comp->self_comp)
caedbbee 25#define BT_LOG_OUTPUT_LEVEL (dmesg_comp->log_level)
350ad6c1 26#define BT_LOG_TAG "PLUGIN/SRC.TEXT.DMESG"
9c8a5044 27#include "plugins/comp-logging.h"
33ec5dfa 28
d8866baa 29#include <stdbool.h>
33ec5dfa
PP
30#include <string.h>
31#include <ctype.h>
d8866baa 32#include <stdio.h>
578e048b 33#include "common/common.h"
caedbbee 34#include "common/assert.h"
3fadfbc0 35#include <babeltrace2/babeltrace.h>
578e048b
MJ
36#include "compat/utc.h"
37#include "compat/stdio.h"
d8866baa
PP
38#include <glib.h>
39
33ec5dfa
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
45struct dmesg_component;
46
d6e69534 47struct dmesg_msg_iter {
d8866baa 48 struct dmesg_component *dmesg_comp;
d6e69534 49 bt_self_message_iterator *pc_msg_iter; /* Weak */
33ec5dfa
PP
50 char *linebuf;
51 size_t linebuf_len;
d8866baa 52 FILE *fp;
d6e69534 53 bt_message *tmp_event_msg;
a6d85d2f 54 uint64_t last_clock_value;
312c056a
PP
55
56 enum {
57 STATE_EMIT_STREAM_BEGINNING,
a59806b7 58 STATE_EMIT_STREAM_ACTIVITY_BEGINNING,
312c056a
PP
59 STATE_EMIT_PACKET_BEGINNING,
60 STATE_EMIT_EVENT,
61 STATE_EMIT_PACKET_END,
a59806b7 62 STATE_EMIT_STREAM_ACTIVITY_END,
312c056a
PP
63 STATE_EMIT_STREAM_END,
64 STATE_DONE,
65 } state;
d8866baa
PP
66};
67
68struct dmesg_component {
caedbbee
PP
69 bt_logging_level log_level;
70
d8866baa
PP
71 struct {
72 GString *path;
33ec5dfa 73 bt_bool read_from_stdin;
707b323a 74 bt_bool no_timestamp;
d8866baa
PP
75 } params;
76
9c8a5044
PP
77 bt_self_component_source *self_comp_src;
78 bt_self_component *self_comp;
b19ff26f
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
33ec5dfa 88static
caedbbee
PP
89bt_field_class *create_event_payload_fc(struct dmesg_component *dmesg_comp,
90 bt_trace_class *trace_class)
33ec5dfa 91{
b19ff26f
PP
92 bt_field_class *root_fc = NULL;
93 bt_field_class *fc = NULL;
33ec5dfa
PP
94 int ret;
95
1122a43a 96 root_fc = bt_field_class_structure_create(trace_class);
5cd6d0e5 97 if (!root_fc) {
9c8a5044 98 BT_COMP_LOGE_STR("Cannot create an empty structure field class object.");
33ec5dfa
PP
99 goto error;
100 }
101
1122a43a 102 fc = bt_field_class_string_create(trace_class);
5cd6d0e5 103 if (!fc) {
9c8a5044 104 BT_COMP_LOGE_STR("Cannot create a string field class object.");
33ec5dfa
PP
105 goto error;
106 }
107
40f4ba76 108 ret = bt_field_class_structure_append_member(root_fc,
e5be10ef 109 "str", fc);
33ec5dfa 110 if (ret) {
9c8a5044 111 BT_COMP_LOGE("Cannot add `str` member to structure field class: "
33ec5dfa
PP
112 "ret=%d", ret);
113 goto error;
114 }
115
116 goto end;
117
118error:
c5b9b441 119 BT_FIELD_CLASS_PUT_REF_AND_RESET(root_fc);
33ec5dfa
PP
120
121end:
c5b9b441 122 bt_field_class_put_ref(fc);
5cd6d0e5 123 return root_fc;
33ec5dfa
PP
124}
125
33ec5dfa
PP
126static
127int create_meta(struct dmesg_component *dmesg_comp, bool has_ts)
128{
b19ff26f 129 bt_field_class *fc = NULL;
d8866baa
PP
130 int ret = 0;
131
9c8a5044 132 dmesg_comp->trace_class = bt_trace_class_create(dmesg_comp->self_comp);
862ca4ed 133 if (!dmesg_comp->trace_class) {
9c8a5044 134 BT_COMP_LOGE_STR("Cannot create an empty trace class object.");
33ec5dfa
PP
135 goto error;
136 }
137
40f4ba76 138 dmesg_comp->stream_class = bt_stream_class_create(
862ca4ed 139 dmesg_comp->trace_class);
33ec5dfa 140 if (!dmesg_comp->stream_class) {
9c8a5044 141 BT_COMP_LOGE_STR("Cannot create a stream class object.");
33ec5dfa
PP
142 goto error;
143 }
144
33ec5dfa 145 if (has_ts) {
0f2d58c9 146 dmesg_comp->clock_class = bt_clock_class_create(
9c8a5044 147 dmesg_comp->self_comp);
33ec5dfa 148 if (!dmesg_comp->clock_class) {
9c8a5044 149 BT_COMP_LOGE_STR("Cannot create clock class.");
33ec5dfa
PP
150 goto error;
151 }
152
21029722 153 /*
5552377a
PP
154 * The `dmesg` timestamp's origin is not the Unix epoch,
155 * it's the boot time.
21029722 156 */
5552377a 157 bt_clock_class_set_origin_is_unix_epoch(dmesg_comp->clock_class,
21029722
PP
158 BT_FALSE);
159
40f4ba76
PP
160 ret = bt_stream_class_set_default_clock_class(
161 dmesg_comp->stream_class, dmesg_comp->clock_class);
33ec5dfa 162 if (ret) {
9c8a5044 163 BT_COMP_LOGE_STR("Cannot set stream class's default clock class.");
33ec5dfa
PP
164 goto error;
165 }
649934d2 166
9b24b6aa 167 bt_stream_class_set_packets_have_beginning_default_clock_snapshot(
649934d2 168 dmesg_comp->stream_class, BT_TRUE);
9b24b6aa 169 bt_stream_class_set_packets_have_end_default_clock_snapshot(
649934d2 170 dmesg_comp->stream_class, BT_TRUE);
33ec5dfa
PP
171 }
172
40f4ba76 173 dmesg_comp->event_class = bt_event_class_create(
44c440bc 174 dmesg_comp->stream_class);
33ec5dfa 175 if (!dmesg_comp->event_class) {
9c8a5044 176 BT_COMP_LOGE_STR("Cannot create an event class object.");
44c440bc
PP
177 goto error;
178 }
179
40f4ba76 180 ret = bt_event_class_set_name(dmesg_comp->event_class, "string");
44c440bc 181 if (ret) {
9c8a5044 182 BT_COMP_LOGE_STR("Cannot set event class's name.");
33ec5dfa
PP
183 goto error;
184 }
185
caedbbee 186 fc = create_event_payload_fc(dmesg_comp, dmesg_comp->trace_class);
5cd6d0e5 187 if (!fc) {
9c8a5044 188 BT_COMP_LOGE_STR("Cannot create event payload field class.");
d8866baa
PP
189 goto error;
190 }
191
40f4ba76 192 ret = bt_event_class_set_payload_field_class(dmesg_comp->event_class, fc);
33ec5dfa 193 if (ret) {
9c8a5044 194 BT_COMP_LOGE_STR("Cannot set event class's event payload field class.");
33ec5dfa
PP
195 goto error;
196 }
197
33ec5dfa
PP
198 goto end;
199
200error:
201 ret = -1;
202
203end:
c5b9b441 204 bt_field_class_put_ref(fc);
33ec5dfa
PP
205 return ret;
206}
207
208static
05e21286 209int handle_params(struct dmesg_component *dmesg_comp,
b19ff26f 210 const bt_value *params)
33ec5dfa 211{
b19ff26f
PP
212 const bt_value *no_timestamp = NULL;
213 const bt_value *path = NULL;
33ec5dfa
PP
214 const char *path_str;
215 int ret = 0;
216
05e21286 217 no_timestamp = bt_value_map_borrow_entry_value_const(params,
07208d85 218 "no-extract-timestamp");
707b323a
PP
219 if (no_timestamp) {
220 if (!bt_value_is_bool(no_timestamp)) {
9c8a5044 221 BT_COMP_LOGE("Expecting a boolean value for the `no-extract-timestamp` parameter: "
707b323a 222 "type=%s",
da91b29a 223 bt_common_value_type_string(
707b323a
PP
224 bt_value_get_type(no_timestamp)));
225 goto error;
226 }
227
601b0d3c
PP
228 dmesg_comp->params.no_timestamp =
229 bt_value_bool_get(no_timestamp);
707b323a
PP
230 }
231
05e21286 232 path = bt_value_map_borrow_entry_value_const(params, "path");
d8866baa
PP
233 if (path) {
234 if (dmesg_comp->params.read_from_stdin) {
9c8a5044 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)) {
9c8a5044 240 BT_COMP_LOGE("Expecting a string value for the `path` parameter: "
33ec5dfa 241 "type=%s",
da91b29a 242 bt_common_value_type_string(
33ec5dfa 243 bt_value_get_type(path)));
d8866baa
PP
244 goto error;
245 }
246
601b0d3c 247 path_str = bt_value_string_get(path);
d8866baa
PP
248 g_string_assign(dmesg_comp->params.path, path_str);
249 } else {
4da23e31 250 dmesg_comp->params.read_from_stdin = true;
d8866baa
PP
251 }
252
253 goto end;
254
255error:
256 ret = -1;
257
258end:
d8866baa
PP
259 return ret;
260}
261
33ec5dfa 262static
862ca4ed 263int create_packet_and_stream_and_trace(struct dmesg_component *dmesg_comp)
33ec5dfa
PP
264{
265 int ret = 0;
e54986cf 266 const char *trace_name = NULL;
862ca4ed
PP
267 gchar *basename = NULL;
268
269 dmesg_comp->trace = bt_trace_create(dmesg_comp->trace_class);
270 if (!dmesg_comp->trace) {
9c8a5044 271 BT_COMP_LOGE_STR("Cannot create trace object.");
862ca4ed
PP
272 goto error;
273 }
33ec5dfa 274
862ca4ed
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) {
9c8a5044 290 BT_COMP_LOGE("Cannot set trace's name: name=\"%s\"",
862ca4ed
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);
33ec5dfa 298 if (!dmesg_comp->stream) {
9c8a5044 299 BT_COMP_LOGE_STR("Cannot create stream object.");
33ec5dfa
PP
300 goto error;
301 }
302
40f4ba76 303 dmesg_comp->packet = bt_packet_create(dmesg_comp->stream);
33ec5dfa 304 if (!dmesg_comp->packet) {
9c8a5044 305 BT_COMP_LOGE_STR("Cannot create packet object.");
33ec5dfa
PP
306 goto error;
307 }
308
33ec5dfa
PP
309 goto end;
310
311error:
312 ret = -1;
313
314end:
862ca4ed
PP
315 if (basename) {
316 g_free(basename);
317 }
318
33ec5dfa
PP
319 return ret;
320}
321
322static
323int 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) {
9c8a5044 335 BT_COMP_LOGE("Cannot create metadata objects: dmesg-comp-addr=%p",
33ec5dfa
PP
336 dmesg_comp);
337 goto error;
338 }
339
862ca4ed 340 ret = create_packet_and_stream_and_trace(dmesg_comp);
33ec5dfa 341 if (ret) {
9c8a5044 342 BT_COMP_LOGE("Cannot create packet and stream objects: "
33ec5dfa
PP
343 "dmesg-comp-addr=%p", dmesg_comp);
344 goto error;
345 }
346
347 goto end;
348
349error:
350 ret = -1;
351
352end:
353 return ret;
354}
d8866baa
PP
355
356static
357void 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
c5b9b441
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);
8b5bd70c 373 bt_trace_class_put_ref(dmesg_comp->trace_class);
d8866baa
PP
374 g_free(dmesg_comp);
375}
376
33ec5dfa 377static
d24d5663 378bt_component_class_init_method_status create_port(
b19ff26f 379 bt_self_component_source *self_comp)
33ec5dfa 380{
d24d5663
PP
381 bt_component_class_init_method_status status;
382 bt_self_component_add_port_status add_port_status;
383
384 add_port_status = bt_self_component_source_add_output_port(self_comp,
33ec5dfa 385 "out", NULL, NULL);
d24d5663
PP
386 switch (add_port_status) {
387 case BT_SELF_COMPONENT_ADD_PORT_STATUS_OK:
388 status = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_OK;
389 break;
390 case BT_SELF_COMPONENT_ADD_PORT_STATUS_ERROR:
391 status = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_ERROR;
392 break;
393 case BT_SELF_COMPONENT_ADD_PORT_STATUS_MEMORY_ERROR:
394 status = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_MEMORY_ERROR;
395 break;
396 default:
397 abort();
398 }
399
400 return status;
33ec5dfa
PP
401}
402
d8866baa 403BT_HIDDEN
d24d5663 404bt_component_class_init_method_status dmesg_init(
9c8a5044 405 bt_self_component_source *self_comp_src,
b19ff26f 406 bt_value *params, void *init_method_data)
d8866baa
PP
407{
408 int ret = 0;
409 struct dmesg_component *dmesg_comp = g_new0(struct dmesg_component, 1);
d24d5663
PP
410 bt_component_class_init_method_status status =
411 BT_COMPONENT_CLASS_INIT_METHOD_STATUS_OK;
9c8a5044
PP
412 bt_self_component *self_comp =
413 bt_self_component_source_as_self_component(self_comp_src);
414 const bt_component *comp = bt_self_component_as_component(self_comp);
caedbbee 415 bt_logging_level log_level = bt_component_get_logging_level(comp);
d8866baa
PP
416
417 if (!dmesg_comp) {
caedbbee 418 /* Implicit log level is not available here */
9c8a5044 419 BT_COMP_LOG_CUR_LVL(BT_LOG_ERROR, log_level, self_comp,
caedbbee 420 "Failed to allocate one dmesg component structure.");
d8866baa
PP
421 goto error;
422 }
423
caedbbee 424 dmesg_comp->log_level = log_level;
41693723 425 dmesg_comp->self_comp = self_comp;
9c8a5044 426 dmesg_comp->self_comp_src = self_comp_src;
d8866baa
PP
427 dmesg_comp->params.path = g_string_new(NULL);
428 if (!dmesg_comp->params.path) {
9c8a5044 429 BT_COMP_LOGE_STR("Failed to allocate a GString.");
d8866baa
PP
430 goto error;
431 }
432
33ec5dfa 433 ret = handle_params(dmesg_comp, params);
d8866baa 434 if (ret) {
9c8a5044 435 BT_COMP_LOGE("Invalid parameters: comp-addr=%p", self_comp);
d8866baa
PP
436 goto error;
437 }
438
33ec5dfa
PP
439 if (!dmesg_comp->params.read_from_stdin &&
440 !g_file_test(dmesg_comp->params.path->str,
441 G_FILE_TEST_IS_REGULAR)) {
9c8a5044 442 BT_COMP_LOGE("Input path is not a regular file: "
d94d92ac 443 "comp-addr=%p, path=\"%s\"", self_comp,
33ec5dfa
PP
444 dmesg_comp->params.path->str);
445 goto error;
446 }
d8866baa 447
9c8a5044 448 status = create_port(self_comp_src);
d24d5663 449 if (status != BT_COMPONENT_CLASS_INIT_METHOD_STATUS_OK) {
33ec5dfa
PP
450 goto error;
451 }
d8866baa 452
9c8a5044
PP
453 bt_self_component_set_data(self_comp, dmesg_comp);
454 BT_COMP_LOGI_STR("Component initialized.");
d8866baa
PP
455 goto end;
456
457error:
458 destroy_dmesg_component(dmesg_comp);
9c8a5044 459 bt_self_component_set_data(self_comp, NULL);
33ec5dfa
PP
460
461 if (status >= 0) {
d24d5663 462 status = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_ERROR;
33ec5dfa 463 }
d8866baa
PP
464
465end:
466 return status;
467}
468
469BT_HIDDEN
b19ff26f 470void dmesg_finalize(bt_self_component_source *self_comp)
d8866baa 471{
d94d92ac 472 destroy_dmesg_component(bt_self_component_get_data(
707b7d35 473 bt_self_component_source_as_self_component(self_comp)));
33ec5dfa
PP
474}
475
476static
d6e69534
PP
477bt_message *create_init_event_msg_from_line(
478 struct dmesg_msg_iter *msg_iter,
312c056a 479 const char *line, const char **new_start)
33ec5dfa 480{
b19ff26f 481 bt_event *event;
d6e69534 482 bt_message *msg = NULL;
33ec5dfa
PP
483 bool has_timestamp = false;
484 unsigned long sec, usec, msec;
485 unsigned int year, mon, mday, hour, min;
486 uint64_t ts = 0;
33ec5dfa 487 int ret = 0;
d6e69534 488 struct dmesg_component *dmesg_comp = msg_iter->dmesg_comp;
33ec5dfa 489
33ec5dfa
PP
490 *new_start = line;
491
707b323a
PP
492 if (dmesg_comp->params.no_timestamp) {
493 goto skip_ts;
494 }
495
33ec5dfa
PP
496 /* Extract time from input line */
497 if (sscanf(line, "[%lu.%lu] ", &sec, &usec) == 2) {
498 ts = (uint64_t) sec * USEC_PER_SEC + (uint64_t) usec;
499
500 /*
501 * The clock class we use has a 1 GHz frequency: convert
502 * from µs to ns.
503 */
504 ts *= NSEC_PER_USEC;
505 has_timestamp = true;
506 } else if (sscanf(line, "[%u-%u-%u %u:%u:%lu.%lu] ",
507 &year, &mon, &mday, &hour, &min,
508 &sec, &msec) == 7) {
509 time_t ep_sec;
510 struct tm ti;
511
512 memset(&ti, 0, sizeof(ti));
513 ti.tm_year = year - 1900; /* From 1900 */
514 ti.tm_mon = mon - 1; /* 0 to 11 */
515 ti.tm_mday = mday;
516 ti.tm_hour = hour;
517 ti.tm_min = min;
518 ti.tm_sec = sec;
519
520 ep_sec = bt_timegm(&ti);
521 if (ep_sec != (time_t) -1) {
522 ts = (uint64_t) ep_sec * NSEC_PER_SEC
523 + (uint64_t) msec * NSEC_PER_MSEC;
524 }
525
526 has_timestamp = true;
527 }
528
529 if (has_timestamp) {
530 /* Set new start for the message portion of the line */
531 *new_start = strchr(line, ']');
f6ccaed9 532 BT_ASSERT(*new_start);
33ec5dfa
PP
533 (*new_start)++;
534
535 if ((*new_start)[0] == ' ') {
536 (*new_start)++;
537 }
538 }
539
707b323a 540skip_ts:
33ec5dfa
PP
541 /*
542 * At this point, we know if the stream class's event header
5cd6d0e5 543 * field class should have a timestamp or not, so we can lazily
33ec5dfa
PP
544 * create the metadata, stream, and packet objects.
545 */
546 ret = try_create_meta_stream_packet(dmesg_comp, has_timestamp);
547 if (ret) {
548 /* try_create_meta_stream_packet() logs errors */
549 goto error;
550 }
551
2c091c04
PP
552 if (dmesg_comp->clock_class) {
553 msg = bt_message_event_create_with_default_clock_snapshot(
554 msg_iter->pc_msg_iter,
555 dmesg_comp->event_class, dmesg_comp->packet, ts);
556 msg_iter->last_clock_value = ts;
557 } else {
558 msg = bt_message_event_create(msg_iter->pc_msg_iter,
559 dmesg_comp->event_class, dmesg_comp->packet);
560 }
561
d6e69534 562 if (!msg) {
9c8a5044 563 BT_COMP_LOGE_STR("Cannot create event message.");
312c056a
PP
564 goto error;
565 }
33ec5dfa 566
d6e69534 567 event = bt_message_event_borrow_event(msg);
312c056a 568 BT_ASSERT(event);
33ec5dfa
PP
569 goto end;
570
571error:
d6e69534 572 BT_MESSAGE_PUT_REF_AND_RESET(msg);
33ec5dfa
PP
573
574end:
d6e69534 575 return msg;
33ec5dfa
PP
576}
577
578static
caedbbee
PP
579int fill_event_payload_from_line(struct dmesg_component *dmesg_comp,
580 const char *line, bt_event *event)
33ec5dfa 581{
b19ff26f
PP
582 bt_field *ep_field = NULL;
583 bt_field *str_field = NULL;
33ec5dfa
PP
584 size_t len;
585 int ret;
586
40f4ba76 587 ep_field = bt_event_borrow_payload_field(event);
312c056a 588 BT_ASSERT(ep_field);
40f4ba76 589 str_field = bt_field_structure_borrow_member_field_by_index(
e5be10ef 590 ep_field, 0);
33ec5dfa 591 if (!str_field) {
9c8a5044 592 BT_COMP_LOGE_STR("Cannot borrow `timestamp` field from event payload structure field.");
33ec5dfa
PP
593 goto error;
594 }
595
596 len = strlen(line);
597 if (line[len - 1] == '\n') {
598 /* Do not include the newline character in the payload */
599 len--;
600 }
601
d24d5663 602 bt_field_string_clear(str_field);
40f4ba76 603 ret = bt_field_string_append_with_length(str_field, line, len);
33ec5dfa 604 if (ret) {
9c8a5044 605 BT_COMP_LOGE("Cannot append value to string field object: "
33ec5dfa
PP
606 "len=%zu", len);
607 goto error;
608 }
609
33ec5dfa
PP
610 goto end;
611
612error:
613 ret = -1;
614
615end:
33ec5dfa
PP
616 return ret;
617}
618
619static
d6e69534
PP
620bt_message *create_msg_from_line(
621 struct dmesg_msg_iter *dmesg_msg_iter, const char *line)
33ec5dfa 622{
caedbbee 623 struct dmesg_component *dmesg_comp = dmesg_msg_iter->dmesg_comp;
b19ff26f 624 bt_event *event = NULL;
d6e69534 625 bt_message *msg = NULL;
33ec5dfa
PP
626 const char *new_start;
627 int ret;
628
d6e69534 629 msg = create_init_event_msg_from_line(dmesg_msg_iter,
f0010051 630 line, &new_start);
d6e69534 631 if (!msg) {
9c8a5044 632 BT_COMP_LOGE_STR("Cannot create and initialize event message from line.");
33ec5dfa
PP
633 goto error;
634 }
635
d6e69534 636 event = bt_message_event_borrow_event(msg);
312c056a 637 BT_ASSERT(event);
caedbbee 638 ret = fill_event_payload_from_line(dmesg_comp, new_start, event);
33ec5dfa 639 if (ret) {
9c8a5044 640 BT_COMP_LOGE("Cannot fill event payload field from line: "
33ec5dfa
PP
641 "ret=%d", ret);
642 goto error;
643 }
644
33ec5dfa
PP
645 goto end;
646
647error:
d6e69534 648 BT_MESSAGE_PUT_REF_AND_RESET(msg);
33ec5dfa
PP
649
650end:
d6e69534 651 return msg;
33ec5dfa
PP
652}
653
654static
d6e69534 655void destroy_dmesg_msg_iter(struct dmesg_msg_iter *dmesg_msg_iter)
33ec5dfa 656{
caedbbee
PP
657 struct dmesg_component *dmesg_comp = dmesg_msg_iter->dmesg_comp;
658
d6e69534 659 if (!dmesg_msg_iter) {
33ec5dfa
PP
660 return;
661 }
662
d6e69534
PP
663 if (dmesg_msg_iter->fp && dmesg_msg_iter->fp != stdin) {
664 if (fclose(dmesg_msg_iter->fp)) {
9c8a5044 665 BT_COMP_LOGE_ERRNO("Cannot close input file", ".");
33ec5dfa
PP
666 }
667 }
d8866baa 668
d6e69534
PP
669 bt_message_put_ref(dmesg_msg_iter->tmp_event_msg);
670 free(dmesg_msg_iter->linebuf);
671 g_free(dmesg_msg_iter);
d8866baa
PP
672}
673
2d6bab5c
PP
674
675
d8866baa 676BT_HIDDEN
d24d5663 677bt_component_class_message_iterator_init_method_status dmesg_msg_iter_init(
d6e69534 678 bt_self_message_iterator *self_msg_iter,
b19ff26f
PP
679 bt_self_component_source *self_comp,
680 bt_self_component_port_output *self_port)
d8866baa 681{
caedbbee
PP
682 struct dmesg_component *dmesg_comp = bt_self_component_get_data(
683 bt_self_component_source_as_self_component(self_comp));
d6e69534
PP
684 struct dmesg_msg_iter *dmesg_msg_iter =
685 g_new0(struct dmesg_msg_iter, 1);
d24d5663
PP
686 bt_component_class_message_iterator_init_method_status status =
687 BT_COMPONENT_CLASS_MESSAGE_ITERATOR_INIT_METHOD_STATUS_OK;
33ec5dfa 688
d6e69534 689 if (!dmesg_msg_iter) {
9c8a5044 690 BT_COMP_LOGE_STR("Failed to allocate on dmesg message iterator structure.");
33ec5dfa
PP
691 goto error;
692 }
693
f6ccaed9 694 BT_ASSERT(dmesg_comp);
d6e69534
PP
695 dmesg_msg_iter->dmesg_comp = dmesg_comp;
696 dmesg_msg_iter->pc_msg_iter = self_msg_iter;
d8866baa 697
33ec5dfa 698 if (dmesg_comp->params.read_from_stdin) {
d6e69534 699 dmesg_msg_iter->fp = stdin;
33ec5dfa 700 } else {
d6e69534
PP
701 dmesg_msg_iter->fp = fopen(dmesg_comp->params.path->str, "r");
702 if (!dmesg_msg_iter->fp) {
9c8a5044 703 BT_COMP_LOGE_ERRNO("Cannot open input file in read mode", ": path=\"%s\"",
33ec5dfa
PP
704 dmesg_comp->params.path->str);
705 goto error;
706 }
707 }
708
d6e69534
PP
709 bt_self_message_iterator_set_data(self_msg_iter,
710 dmesg_msg_iter);
33ec5dfa
PP
711 goto end;
712
713error:
d6e69534
PP
714 destroy_dmesg_msg_iter(dmesg_msg_iter);
715 bt_self_message_iterator_set_data(self_msg_iter, NULL);
33ec5dfa 716 if (status >= 0) {
d24d5663 717 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_INIT_METHOD_STATUS_ERROR;
33ec5dfa
PP
718 }
719
720end:
33ec5dfa 721 return status;
d8866baa
PP
722}
723
724BT_HIDDEN
d6e69534
PP
725void dmesg_msg_iter_finalize(
726 bt_self_message_iterator *priv_msg_iter)
d8866baa 727{
d6e69534
PP
728 destroy_dmesg_msg_iter(bt_self_message_iterator_get_data(
729 priv_msg_iter));
d8866baa
PP
730}
731
d4393e08 732static
d24d5663 733bt_component_class_message_iterator_next_method_status dmesg_msg_iter_next_one(
d6e69534
PP
734 struct dmesg_msg_iter *dmesg_msg_iter,
735 bt_message **msg)
d8866baa 736{
33ec5dfa 737 ssize_t len;
33ec5dfa 738 struct dmesg_component *dmesg_comp;
d24d5663
PP
739 bt_component_class_message_iterator_next_method_status status =
740 BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK;
d8866baa 741
d6e69534
PP
742 BT_ASSERT(dmesg_msg_iter);
743 dmesg_comp = dmesg_msg_iter->dmesg_comp;
f6ccaed9 744 BT_ASSERT(dmesg_comp);
33ec5dfa 745
d6e69534 746 if (dmesg_msg_iter->state == STATE_DONE) {
d24d5663 747 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_END;
312c056a
PP
748 goto end;
749 }
750
d6e69534
PP
751 if (dmesg_msg_iter->tmp_event_msg ||
752 dmesg_msg_iter->state == STATE_EMIT_PACKET_END ||
a59806b7 753 dmesg_msg_iter->state == STATE_EMIT_STREAM_ACTIVITY_END ||
d6e69534 754 dmesg_msg_iter->state == STATE_EMIT_STREAM_END) {
312c056a
PP
755 goto handle_state;
756 }
757
33ec5dfa
PP
758 while (true) {
759 const char *ch;
760 bool only_spaces = true;
761
d6e69534
PP
762 len = bt_getline(&dmesg_msg_iter->linebuf,
763 &dmesg_msg_iter->linebuf_len, dmesg_msg_iter->fp);
33ec5dfa
PP
764 if (len < 0) {
765 if (errno == EINVAL) {
d24d5663 766 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR;
33ec5dfa 767 } else if (errno == ENOMEM) {
d24d5663 768 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_MEMORY_ERROR;
33ec5dfa 769 } else {
d6e69534 770 if (dmesg_msg_iter->state == STATE_EMIT_STREAM_BEGINNING) {
312c056a 771 /* Stream did not even begin */
d24d5663 772 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_END;
312c056a
PP
773 goto end;
774 } else {
775 /* End current packet now */
d6e69534 776 dmesg_msg_iter->state =
312c056a
PP
777 STATE_EMIT_PACKET_END;
778 goto handle_state;
779 }
33ec5dfa
PP
780 }
781
782 goto end;
783 }
784
d6e69534 785 BT_ASSERT(dmesg_msg_iter->linebuf);
33ec5dfa
PP
786
787 /* Ignore empty lines, once trimmed */
d6e69534 788 for (ch = dmesg_msg_iter->linebuf; *ch != '\0'; ch++) {
33ec5dfa
PP
789 if (!isspace(*ch)) {
790 only_spaces = false;
791 break;
792 }
793 }
794
795 if (!only_spaces) {
796 break;
797 }
798 }
799
d6e69534
PP
800 dmesg_msg_iter->tmp_event_msg = create_msg_from_line(
801 dmesg_msg_iter, dmesg_msg_iter->linebuf);
802 if (!dmesg_msg_iter->tmp_event_msg) {
9c8a5044 803 BT_COMP_LOGE("Cannot create event message from line: "
33ec5dfa 804 "dmesg-comp-addr=%p, line=\"%s\"", dmesg_comp,
d6e69534 805 dmesg_msg_iter->linebuf);
312c056a
PP
806 goto end;
807 }
808
809handle_state:
810 BT_ASSERT(dmesg_comp->trace);
811
d6e69534 812 switch (dmesg_msg_iter->state) {
312c056a 813 case STATE_EMIT_STREAM_BEGINNING:
d6e69534
PP
814 BT_ASSERT(dmesg_msg_iter->tmp_event_msg);
815 *msg = bt_message_stream_beginning_create(
816 dmesg_msg_iter->pc_msg_iter, dmesg_comp->stream);
a59806b7
PP
817 dmesg_msg_iter->state = STATE_EMIT_STREAM_ACTIVITY_BEGINNING;
818 break;
819 case STATE_EMIT_STREAM_ACTIVITY_BEGINNING:
820 BT_ASSERT(dmesg_msg_iter->tmp_event_msg);
821 *msg = bt_message_stream_activity_beginning_create(
822 dmesg_msg_iter->pc_msg_iter, dmesg_comp->stream);
d6e69534 823 dmesg_msg_iter->state = STATE_EMIT_PACKET_BEGINNING;
312c056a
PP
824 break;
825 case STATE_EMIT_PACKET_BEGINNING:
d6e69534 826 BT_ASSERT(dmesg_msg_iter->tmp_event_msg);
a6d85d2f
PP
827
828 if (dmesg_comp->clock_class) {
829 *msg = bt_message_packet_beginning_create_with_default_clock_snapshot(
830 dmesg_msg_iter->pc_msg_iter, dmesg_comp->packet,
831 dmesg_msg_iter->last_clock_value);
832 } else {
833 *msg = bt_message_packet_beginning_create(
834 dmesg_msg_iter->pc_msg_iter, dmesg_comp->packet);
835 }
836
d6e69534 837 dmesg_msg_iter->state = STATE_EMIT_EVENT;
312c056a
PP
838 break;
839 case STATE_EMIT_EVENT:
d6e69534
PP
840 BT_ASSERT(dmesg_msg_iter->tmp_event_msg);
841 *msg = dmesg_msg_iter->tmp_event_msg;
842 dmesg_msg_iter->tmp_event_msg = NULL;
312c056a
PP
843 break;
844 case STATE_EMIT_PACKET_END:
a6d85d2f
PP
845 if (dmesg_comp->clock_class) {
846 *msg = bt_message_packet_end_create_with_default_clock_snapshot(
847 dmesg_msg_iter->pc_msg_iter, dmesg_comp->packet,
848 dmesg_msg_iter->last_clock_value);
849 } else {
850 *msg = bt_message_packet_end_create(
851 dmesg_msg_iter->pc_msg_iter, dmesg_comp->packet);
852 }
853
a59806b7
PP
854 dmesg_msg_iter->state = STATE_EMIT_STREAM_ACTIVITY_END;
855 break;
856 case STATE_EMIT_STREAM_ACTIVITY_END:
857 *msg = bt_message_stream_activity_end_create(
858 dmesg_msg_iter->pc_msg_iter, dmesg_comp->stream);
d6e69534 859 dmesg_msg_iter->state = STATE_EMIT_STREAM_END;
312c056a
PP
860 break;
861 case STATE_EMIT_STREAM_END:
d6e69534
PP
862 *msg = bt_message_stream_end_create(
863 dmesg_msg_iter->pc_msg_iter, dmesg_comp->stream);
864 dmesg_msg_iter->state = STATE_DONE;
312c056a
PP
865 break;
866 default:
867 break;
868 }
869
d6e69534 870 if (!*msg) {
9c8a5044 871 BT_COMP_LOGE("Cannot create message: dmesg-comp-addr=%p",
312c056a 872 dmesg_comp);
d24d5663 873 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR;
33ec5dfa
PP
874 }
875
876end:
d4393e08
PP
877 return status;
878}
879
880BT_HIDDEN
d24d5663 881bt_component_class_message_iterator_next_method_status dmesg_msg_iter_next(
d6e69534
PP
882 bt_self_message_iterator *self_msg_iter,
883 bt_message_array_const msgs, uint64_t capacity,
d4393e08
PP
884 uint64_t *count)
885{
d6e69534
PP
886 struct dmesg_msg_iter *dmesg_msg_iter =
887 bt_self_message_iterator_get_data(
888 self_msg_iter);
d24d5663
PP
889 bt_component_class_message_iterator_next_method_status status =
890 BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK;
d4393e08
PP
891 uint64_t i = 0;
892
d94d92ac 893 while (i < capacity &&
d24d5663 894 status == BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK) {
d6e69534 895 bt_message *priv_msg = NULL;
e5be10ef 896
d6e69534
PP
897 status = dmesg_msg_iter_next_one(dmesg_msg_iter,
898 &priv_msg);
899 msgs[i] = priv_msg;
d24d5663 900 if (status == BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK) {
d4393e08
PP
901 i++;
902 }
903 }
904
905 if (i > 0) {
906 /*
d6e69534 907 * Even if dmesg_msg_iter_next_one() returned
d4393e08 908 * something else than
d6e69534
PP
909 * BT_SELF_MESSAGE_ITERATOR_STATUS_OK, we
910 * accumulated message objects in the output
911 * message array, so we need to return
912 * BT_SELF_MESSAGE_ITERATOR_STATUS_OK so that they
d94d92ac 913 * are transfered to downstream. This other status
d6e69534 914 * occurs again the next time muxer_msg_iter_do_next()
d94d92ac 915 * is called, possibly without any accumulated
d6e69534 916 * message, in which case we'll return it.
d4393e08
PP
917 */
918 *count = i;
d24d5663 919 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK;
d4393e08
PP
920 }
921
922 return status;
d8866baa 923}
2d6bab5c
PP
924
925BT_HIDDEN
926bt_bool dmesg_msg_iter_can_seek_beginning(
927 bt_self_message_iterator *self_msg_iter)
928{
929 struct dmesg_msg_iter *dmesg_msg_iter =
930 bt_self_message_iterator_get_data(self_msg_iter);
931
932 /* Can't seek the beginning of the standard input stream */
933 return !dmesg_msg_iter->dmesg_comp->params.read_from_stdin;
934}
935
936BT_HIDDEN
d24d5663
PP
937bt_component_class_message_iterator_seek_beginning_method_status
938dmesg_msg_iter_seek_beginning(
2d6bab5c
PP
939 bt_self_message_iterator *self_msg_iter)
940{
941 struct dmesg_msg_iter *dmesg_msg_iter =
942 bt_self_message_iterator_get_data(self_msg_iter);
943
944 BT_ASSERT(!dmesg_msg_iter->dmesg_comp->params.read_from_stdin);
945
946 BT_MESSAGE_PUT_REF_AND_RESET(dmesg_msg_iter->tmp_event_msg);
947 dmesg_msg_iter->last_clock_value = 0;
948 dmesg_msg_iter->state = STATE_EMIT_STREAM_BEGINNING;
d24d5663 949 return BT_COMPONENT_CLASS_MESSAGE_ITERATOR_SEEK_BEGINNING_METHOD_STATUS_OK;
2d6bab5c 950}
This page took 0.103938 seconds and 4 git commands to generate.