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