lib: add internal object pool API and use it; adapt plugins/tests
[babeltrace.git] / plugins / text / dmesg / dmesg.c
index 0f8a6e7646a954196dd0474c3c6d9547801df18a..7d208ed35b50eb23616a0b440388ab3082b6c546 100644 (file)
  * SOFTWARE.
  */
 
+#define BT_LOG_TAG "PLUGIN-TEXT-DMESG-SRC"
+#include "logging.h"
+
 #include <stdbool.h>
+#include <string.h>
+#include <ctype.h>
 #include <stdio.h>
-#include <assert.h>
-#include <babeltrace/babeltrace-internal.h>
-#include <babeltrace/graph/component.h>
-#include <babeltrace/graph/clock-class-priority-map.h>
+#include <babeltrace/assert-internal.h>
+#include <babeltrace/babeltrace.h>
+#include <babeltrace/values-internal.h>
+#include <babeltrace/compat/utc-internal.h>
+#include <babeltrace/compat/stdio-internal.h>
 #include <glib.h>
 
+#define NSEC_PER_USEC 1000UL
+#define NSEC_PER_MSEC 1000000UL
+#define NSEC_PER_SEC 1000000000ULL
+#define USEC_PER_SEC 1000000UL
+
 struct dmesg_component;
 
 struct dmesg_notif_iter {
        struct dmesg_component *dmesg_comp;
+       char *linebuf;
+       size_t linebuf_len;
        FILE *fp;
+       struct bt_notification *tmp_event_notif;
+
+       enum {
+               STATE_EMIT_STREAM_BEGINNING,
+               STATE_EMIT_PACKET_BEGINNING,
+               STATE_EMIT_EVENT,
+               STATE_EMIT_PACKET_END,
+               STATE_EMIT_STREAM_END,
+               STATE_DONE,
+       } state;
 };
 
 struct dmesg_component {
        struct {
                GString *path;
-               bool read_from_stdin;
+               bt_bool read_from_stdin;
+               bt_bool no_timestamp;
        } params;
 
-       struct bt_ctf_packet *packet;
-       struct bt_ctf_event_class *event_class;
-       struct bt_ctf_stream *stream;
+       struct bt_trace *trace;
+       struct bt_stream_class *stream_class;
+       struct bt_event_class *event_class;
+       struct bt_stream *stream;
+       struct bt_packet *packet;
+       struct bt_clock_class *clock_class;
        struct bt_clock_class_priority_map *cc_prio_map;
 };
 
 static
-int check_params(struct dmesg_component *dmesg_comp, struct bt_value *params)
+struct bt_field_type *create_packet_header_ft(void)
 {
-       struct bt_value *read_from_stdin;
-       struct bt_value *path;
-       const char *path_str;
+       struct bt_field_type *root_ft = NULL;
+       struct bt_field_type *ft = NULL;
+       int ret;
+
+       root_ft = bt_field_type_structure_create();
+       if (!root_ft) {
+               BT_LOGE_STR("Cannot create an empty structure field type object.");
+               goto error;
+       }
+
+       ft = bt_field_type_integer_create(32);
+       if (!ft) {
+               BT_LOGE_STR("Cannot create an integer field type object.");
+               goto error;
+       }
+
+       ret = bt_field_type_structure_add_field(root_ft, ft, "magic");
+       if (ret) {
+               BT_LOGE("Cannot add `magic` field type to structure field type: "
+                       "ret=%d", ret);
+               goto error;
+       }
+
+       BT_PUT(ft);
+       ft = bt_field_type_integer_create(8);
+       if (!ft) {
+               BT_LOGE_STR("Cannot create an integer field type object.");
+               goto error;
+       }
+
+       goto end;
+
+error:
+       BT_PUT(root_ft);
+
+end:
+       bt_put(ft);
+       return root_ft;
+}
+
+static
+struct bt_field_type *create_event_header_ft(
+               struct bt_clock_class *clock_class)
+{
+       struct bt_field_type *root_ft = NULL;
+       struct bt_field_type *ft = NULL;
+       int ret;
+
+       root_ft = bt_field_type_structure_create();
+       if (!root_ft) {
+               BT_LOGE_STR("Cannot create an empty structure field type object.");
+               goto error;
+       }
+
+       ft = bt_field_type_integer_create(64);
+       if (!ft) {
+               BT_LOGE_STR("Cannot create an integer field type object.");
+               goto error;
+       }
+
+       ret = bt_field_type_integer_set_mapped_clock_class(ft, clock_class);
+       if (ret) {
+               BT_LOGE("Cannot map integer field type to clock class: "
+                       "ret=%d", ret);
+               goto error;
+       }
+
+       ret = bt_field_type_structure_add_field(root_ft,
+               ft, "timestamp");
+       if (ret) {
+               BT_LOGE("Cannot add `timestamp` field type to structure field type: "
+                       "ret=%d", ret);
+               goto error;
+       }
+
+       goto end;
+
+error:
+       BT_PUT(root_ft);
+
+end:
+       bt_put(ft);
+       return root_ft;
+}
+
+static
+struct bt_field_type *create_event_payload_ft(void)
+{
+       struct bt_field_type *root_ft = NULL;
+       struct bt_field_type *ft = NULL;
+       int ret;
+
+       root_ft = bt_field_type_structure_create();
+       if (!root_ft) {
+               BT_LOGE_STR("Cannot create an empty structure field type object.");
+               goto error;
+       }
+
+       ft = bt_field_type_string_create();
+       if (!ft) {
+               BT_LOGE_STR("Cannot create a string field type object.");
+               goto error;
+       }
+
+       ret = bt_field_type_structure_add_field(root_ft,
+               ft, "str");
+       if (ret) {
+               BT_LOGE("Cannot add `str` field type to structure field type: "
+                       "ret=%d", ret);
+               goto error;
+       }
+
+       goto end;
+
+error:
+       BT_PUT(root_ft);
+
+end:
+       bt_put(ft);
+       return root_ft;
+}
+
+static
+struct bt_clock_class *create_clock_class(void)
+{
+       return bt_clock_class_create("the_clock", 1000000000);
+}
+
+static
+int create_meta(struct dmesg_component *dmesg_comp, bool has_ts)
+{
+       struct bt_field_type *ft = NULL;
+       const char *trace_name = NULL;
+       gchar *basename = NULL;
        int ret = 0;
 
-       if (!params || !bt_value_is_map(params)) {
-               fprintf(stderr, "Expecting a map value as parameters.\n");
+       dmesg_comp->trace = bt_trace_create();
+       if (!dmesg_comp->trace) {
+               BT_LOGE_STR("Cannot create an empty trace object.");
                goto error;
        }
 
-       read_from_stdin = bt_value_map_get(params, "read-from-stdin");
-       if (read_from_stdin) {
-               if (!bt_value_is_bool(read_from_stdin)) {
-                       fprintf(stderr, "Expecting a boolean value for `read-from-stdin` parameter.\n");
+       ft = create_packet_header_ft();
+       if (!ft) {
+               BT_LOGE_STR("Cannot create packet header field type.");
+               goto error;
+       }
+
+       ret = bt_trace_set_packet_header_field_type(dmesg_comp->trace, ft);
+       if (ret) {
+               BT_LOGE_STR("Cannot set trace's packet header field type.");
+               goto error;
+       }
+
+       if (dmesg_comp->params.read_from_stdin) {
+               trace_name = "STDIN";
+       } else {
+               basename = g_path_get_basename(dmesg_comp->params.path->str);
+               BT_ASSERT(basename);
+
+               if (strcmp(basename, G_DIR_SEPARATOR_S) != 0 &&
+                               strcmp(basename, ".") != 0) {
+                       trace_name = basename;
+               }
+       }
+
+       if (trace_name) {
+               ret = bt_trace_set_name(dmesg_comp->trace, trace_name);
+               if (ret) {
+                       BT_LOGE("Cannot set trace's name: name=\"%s\"", trace_name);
+                       goto error;
+               }
+       }
+
+       dmesg_comp->stream_class = bt_stream_class_create(NULL);
+       if (!dmesg_comp->stream_class) {
+               BT_LOGE_STR("Cannot create an empty stream class object.");
+               goto error;
+       }
+
+       dmesg_comp->cc_prio_map = bt_clock_class_priority_map_create();
+       if (!dmesg_comp->cc_prio_map) {
+               BT_LOGE_STR("Cannot create empty clock class priority map.");
+               goto error;
+       }
+
+       if (has_ts) {
+               dmesg_comp->clock_class = create_clock_class();
+               if (!dmesg_comp->clock_class) {
+                       BT_LOGE_STR("Cannot create clock class.");
+                       goto error;
+               }
+
+               ret = bt_trace_add_clock_class(dmesg_comp->trace,
+                       dmesg_comp->clock_class);
+               if (ret) {
+                       BT_LOGE_STR("Cannot add clock class to trace.");
+                       goto error;
+               }
+
+               ret = bt_clock_class_priority_map_add_clock_class(
+                       dmesg_comp->cc_prio_map, dmesg_comp->clock_class, 0);
+               if (ret) {
+                       BT_LOGE_STR("Cannot add clock class to clock class priority map.");
                        goto error;
                }
 
-               ret = bt_value_bool_get(read_from_stdin,
-                       &dmesg_comp->params.read_from_stdin);
-               assert(ret == 0);
+               bt_put(ft);
+               ft = create_event_header_ft(dmesg_comp->clock_class);
+               if (!ft) {
+                       BT_LOGE_STR("Cannot create event header field type.");
+                       goto error;
+               }
+
+               ret = bt_stream_class_set_event_header_field_type(
+                       dmesg_comp->stream_class, ft);
+               if (ret) {
+                       BT_LOGE_STR("Cannot set stream class's event header field type.");
+                       goto error;
+               }
+       }
+
+       dmesg_comp->event_class = bt_event_class_create("string");
+       if (!dmesg_comp->event_class) {
+               BT_LOGE_STR("Cannot create an empty event class object.");
+               goto error;
+       }
+
+       bt_put(ft);
+       ft = create_event_payload_ft();
+       if (!ft) {
+               BT_LOGE_STR("Cannot create event payload field type.");
+               goto error;
+       }
+
+       ret = bt_event_class_set_payload_field_type(dmesg_comp->event_class, ft);
+       if (ret) {
+               BT_LOGE_STR("Cannot set event class's event payload field type.");
+               goto error;
+       }
+
+       ret = bt_stream_class_add_event_class(dmesg_comp->stream_class,
+               dmesg_comp->event_class);
+       if (ret) {
+               BT_LOGE("Cannot add event class to stream class: ret=%d", ret);
+               goto error;
+       }
+
+       ret = bt_trace_add_stream_class(dmesg_comp->trace,
+               dmesg_comp->stream_class);
+       if (ret) {
+               BT_LOGE("Cannot add event class to stream class: ret=%d", ret);
+               goto error;
+       }
+
+       goto end;
+
+error:
+       ret = -1;
+
+end:
+       bt_put(ft);
+
+       if (basename) {
+               g_free(basename);
+       }
+
+       return ret;
+}
+
+static
+int handle_params(struct dmesg_component *dmesg_comp, struct bt_value *params)
+{
+       struct bt_value *read_from_stdin = NULL;
+       struct bt_value *no_timestamp = NULL;
+       struct bt_value *path = NULL;
+       const char *path_str;
+       int ret = 0;
+
+       no_timestamp = bt_value_map_get(params, "no-extract-timestamp");
+       if (no_timestamp) {
+               if (!bt_value_is_bool(no_timestamp)) {
+                       BT_LOGE("Expecting a boolean value for the `no-extract-timestamp` parameter: "
+                               "type=%s",
+                               bt_value_type_string(
+                                       bt_value_get_type(no_timestamp)));
+                       goto error;
+               }
+
+               ret = bt_value_bool_get(no_timestamp,
+                       &dmesg_comp->params.no_timestamp);
+               BT_ASSERT(ret == 0);
        }
 
        path = bt_value_map_get(params, "path");
        if (path) {
                if (dmesg_comp->params.read_from_stdin) {
-                       fprintf(stderr, "Cannot specify both `read-from-stdin` and `path` parameters.\n");
+                       BT_LOGE_STR("Cannot specify both `read-from-stdin` and `path` parameters.");
                        goto error;
                }
 
                if (!bt_value_is_string(path)) {
-                       fprintf(stderr, "Expecting a string value for `path` parameter.\n");
+                       BT_LOGE("Expecting a string value for the `path` parameter: "
+                               "type=%s",
+                               bt_value_type_string(
+                                       bt_value_get_type(path)));
                        goto error;
                }
 
-               ret = bt_value_bool_get(path, &path_str);
-               assert(ret == 0);
+               ret = bt_value_string_get(path, &path_str);
+               BT_ASSERT(ret == 0);
                g_string_assign(dmesg_comp->params.path, path_str);
        } else {
-               if (!dmesg_comp->params.read_from_stdin) {
-                       fprintf(stderr, "Expecting `path` parameter or `read-from-stdin` parameter set to true.\n");
-                       goto error;
-               }
+               dmesg_comp->params.read_from_stdin = true;
        }
 
        goto end;
@@ -103,11 +402,108 @@ error:
 end:
        bt_put(read_from_stdin);
        bt_put(path);
+       bt_put(no_timestamp);
+       return ret;
+}
+
+static
+int fill_packet_header_field(struct bt_packet *packet)
+{
+       struct bt_field *ph = NULL;
+       struct bt_field *magic = NULL;
+       int ret;
+
+       ph = bt_packet_borrow_header(packet);
+       BT_ASSERT(ph);
+       magic = bt_field_structure_borrow_field_by_name(ph, "magic");
+       if (!magic) {
+               BT_LOGE_STR("Cannot borrow `magic` field from structure field.");
+               goto error;
+       }
+
+       ret = bt_field_integer_unsigned_set_value(magic, 0xc1fc1fc1);
+       BT_ASSERT(ret == 0);
+       goto end;
+
+error:
+       ret = -1;
+
+end:
+       return ret;
+}
+
+static
+int create_packet_and_stream(struct dmesg_component *dmesg_comp)
+{
+       int ret = 0;
+
+       dmesg_comp->stream = bt_stream_create(dmesg_comp->stream_class,
+               NULL, 0);
+       if (!dmesg_comp->stream) {
+               BT_LOGE_STR("Cannot create stream object.");
+               goto error;
+       }
+
+       dmesg_comp->packet = bt_packet_create(dmesg_comp->stream);
+       if (!dmesg_comp->packet) {
+               BT_LOGE_STR("Cannot create packet object.");
+               goto error;
+       }
+
+       ret = fill_packet_header_field(dmesg_comp->packet);
+       if (ret) {
+               BT_LOGE_STR("Cannot fill packet header field.");
+               goto error;
+       }
+
+       ret = bt_trace_set_is_static(dmesg_comp->trace);
+       if (ret) {
+               BT_LOGE_STR("Cannot make trace static.");
+               goto error;
+       }
+
+       goto end;
+
+error:
+       ret = -1;
+
+end:
        return ret;
 }
 
 static
-int create_stream()
+int try_create_meta_stream_packet(struct dmesg_component *dmesg_comp,
+               bool has_ts)
+{
+       int ret = 0;
+
+       if (dmesg_comp->trace) {
+               /* Already created */
+               goto end;
+       }
+
+       ret = create_meta(dmesg_comp, has_ts);
+       if (ret) {
+               BT_LOGE("Cannot create metadata objects: dmesg-comp-addr=%p",
+                       dmesg_comp);
+               goto error;
+       }
+
+       ret = create_packet_and_stream(dmesg_comp);
+       if (ret) {
+               BT_LOGE("Cannot create packet and stream objects: "
+                       "dmesg-comp-addr=%p", dmesg_comp);
+               goto error;
+       }
+
+       goto end;
+
+error:
+       ret = -1;
+
+end:
+       return ret;
+}
 
 static
 void destroy_dmesg_component(struct dmesg_component *dmesg_comp)
@@ -121,12 +517,22 @@ void destroy_dmesg_component(struct dmesg_component *dmesg_comp)
        }
 
        bt_put(dmesg_comp->packet);
+       bt_put(dmesg_comp->trace);
+       bt_put(dmesg_comp->stream_class);
        bt_put(dmesg_comp->event_class);
        bt_put(dmesg_comp->stream);
+       bt_put(dmesg_comp->clock_class);
        bt_put(dmesg_comp->cc_prio_map);
        g_free(dmesg_comp);
 }
 
+static
+enum bt_component_status create_port(struct bt_private_component *priv_comp)
+{
+       return bt_private_component_source_add_output_private_port(priv_comp,
+               "out", NULL, NULL);
+}
+
 BT_HIDDEN
 enum bt_component_status dmesg_init(struct bt_private_component *priv_comp,
                struct bt_value *params, void *init_method_data)
@@ -136,26 +542,46 @@ enum bt_component_status dmesg_init(struct bt_private_component *priv_comp,
        enum bt_component_status status = BT_COMPONENT_STATUS_OK;
 
        if (!dmesg_comp) {
+               BT_LOGE_STR("Failed to allocate one dmesg component structure.");
                goto error;
        }
 
        dmesg_comp->params.path = g_string_new(NULL);
        if (!dmesg_comp->params.path) {
+               BT_LOGE_STR("Failed to allocate a GString.");
                goto error;
        }
 
-       ret = check_params(dmesg_comp, params);
+       ret = handle_params(dmesg_comp, params);
        if (ret) {
+               BT_LOGE("Invalid parameters: comp-addr=%p", priv_comp);
                goto error;
        }
 
+       if (!dmesg_comp->params.read_from_stdin &&
+                       !g_file_test(dmesg_comp->params.path->str,
+                       G_FILE_TEST_IS_REGULAR)) {
+               BT_LOGE("Input path is not a regular file: "
+                       "comp-addr=%p, path=\"%s\"", priv_comp,
+                       dmesg_comp->params.path->str);
+               goto error;
+       }
 
+       status = create_port(priv_comp);
+       if (status != BT_COMPONENT_STATUS_OK) {
+               goto error;
+       }
 
+       (void) bt_private_component_set_user_data(priv_comp, dmesg_comp);
        goto end;
 
 error:
        destroy_dmesg_component(dmesg_comp);
-       status = BT_COMPONENT_STATUS_ERROR;
+       (void) bt_private_component_set_user_data(priv_comp, NULL);
+
+       if (status >= 0) {
+               status = BT_COMPONENT_STATUS_ERROR;
+       }
 
 end:
        return status;
@@ -164,27 +590,407 @@ end:
 BT_HIDDEN
 void dmesg_finalize(struct bt_private_component *priv_comp)
 {
+       void *data = bt_private_component_get_user_data(priv_comp);
 
+       destroy_dmesg_component(data);
+}
+
+static
+struct bt_notification *create_init_event_notif_from_line(
+               struct dmesg_component *dmesg_comp,
+               const char *line, const char **new_start)
+{
+       struct bt_event *event;
+       struct bt_notification *notif = NULL;
+       bool has_timestamp = false;
+       unsigned long sec, usec, msec;
+       unsigned int year, mon, mday, hour, min;
+       uint64_t ts = 0;
+       struct bt_field *eh_field = NULL;
+       struct bt_field *ts_field = NULL;
+       int ret = 0;
+
+       *new_start = line;
+
+       if (dmesg_comp->params.no_timestamp) {
+               goto skip_ts;
+       }
+
+       /* Extract time from input line */
+       if (sscanf(line, "[%lu.%lu] ", &sec, &usec) == 2) {
+               ts = (uint64_t) sec * USEC_PER_SEC + (uint64_t) usec;
+
+               /*
+                * The clock class we use has a 1 GHz frequency: convert
+                * from µs to ns.
+                */
+               ts *= NSEC_PER_USEC;
+               has_timestamp = true;
+       } else if (sscanf(line, "[%u-%u-%u %u:%u:%lu.%lu] ",
+                       &year, &mon, &mday, &hour, &min,
+                       &sec, &msec) == 7) {
+               time_t ep_sec;
+               struct tm ti;
+
+               memset(&ti, 0, sizeof(ti));
+               ti.tm_year = year - 1900;       /* From 1900 */
+               ti.tm_mon = mon - 1;            /* 0 to 11 */
+               ti.tm_mday = mday;
+               ti.tm_hour = hour;
+               ti.tm_min = min;
+               ti.tm_sec = sec;
+
+               ep_sec = bt_timegm(&ti);
+               if (ep_sec != (time_t) -1) {
+                       ts = (uint64_t) ep_sec * NSEC_PER_SEC
+                               + (uint64_t) msec * NSEC_PER_MSEC;
+               }
+
+               has_timestamp = true;
+       }
+
+       if (has_timestamp) {
+               /* Set new start for the message portion of the line */
+               *new_start = strchr(line, ']');
+               BT_ASSERT(*new_start);
+               (*new_start)++;
+
+               if ((*new_start)[0] == ' ') {
+                       (*new_start)++;
+               }
+       }
+
+skip_ts:
+       /*
+        * At this point, we know if the stream class's event header
+        * field type should have a timestamp or not, so we can lazily
+        * create the metadata, stream, and packet objects.
+        */
+       ret = try_create_meta_stream_packet(dmesg_comp, has_timestamp);
+       if (ret) {
+               /* try_create_meta_stream_packet() logs errors */
+               goto error;
+       }
+
+       notif = bt_notification_event_create(dmesg_comp->event_class,
+               dmesg_comp->packet, dmesg_comp->cc_prio_map);
+       if (!notif) {
+               BT_LOGE_STR("Cannot create event notification.");
+               goto error;
+       }
+
+       event = bt_notification_event_borrow_event(notif);
+       BT_ASSERT(event);
+
+       if (dmesg_comp->clock_class) {
+               struct bt_clock_value *cv = bt_event_borrow_clock_value(event,
+                       dmesg_comp->clock_class);
+
+               ret = bt_clock_value_set_value(cv, ts);
+               BT_ASSERT(ret == 0);
+               eh_field = bt_event_borrow_header(event);
+               BT_ASSERT(eh_field);
+               ts_field = bt_field_structure_borrow_field_by_name(eh_field,
+                       "timestamp");
+               if (!ts_field) {
+                       BT_LOGE_STR("Cannot borrow `timestamp` field from event header structure field.");
+                       goto error;
+               }
+
+               ret = bt_field_integer_unsigned_set_value(ts_field, ts);
+               BT_ASSERT(ret == 0);
+       }
+
+       goto end;
+
+error:
+       BT_PUT(notif);
+
+end:
+       return notif;
+}
+
+static
+int fill_event_payload_from_line(struct dmesg_component *dmesg_comp,
+               const char *line, struct bt_event *event)
+{
+       struct bt_field *ep_field = NULL;
+       struct bt_field *str_field = NULL;
+       size_t len;
+       int ret;
+
+       ep_field = bt_event_borrow_payload(event);
+       BT_ASSERT(ep_field);
+       str_field = bt_field_structure_borrow_field_by_name(ep_field, "str");
+       if (!str_field) {
+               BT_LOGE_STR("Cannot borrow `timestamp` field from event payload structure field.");
+               goto error;
+       }
+
+       len = strlen(line);
+       if (line[len - 1] == '\n') {
+               /* Do not include the newline character in the payload */
+               len--;
+       }
+
+       ret = bt_field_string_clear(str_field);
+       if (ret) {
+               BT_LOGE_STR("Cannot clear string field object.");
+               goto error;
+       }
+
+       ret = bt_field_string_append_len(str_field, line, len);
+       if (ret) {
+               BT_LOGE("Cannot append value to string field object: "
+                       "len=%zu", len);
+               goto error;
+       }
+
+       goto end;
+
+error:
+       ret = -1;
+
+end:
+       return ret;
+}
+
+static
+struct bt_notification *create_notif_from_line(
+               struct dmesg_component *dmesg_comp, const char *line)
+{
+       struct bt_event *event = NULL;
+       struct bt_notification *notif = NULL;
+       const char *new_start;
+       int ret;
+
+       notif = create_init_event_notif_from_line(dmesg_comp, line, &new_start);
+       if (!notif) {
+               BT_LOGE_STR("Cannot create and initialize event notification from line.");
+               goto error;
+       }
+
+       event = bt_notification_event_borrow_event(notif);
+       BT_ASSERT(event);
+       ret = fill_event_payload_from_line(dmesg_comp, new_start,
+               event);
+       if (ret) {
+               BT_LOGE("Cannot fill event payload field from line: "
+                       "ret=%d", ret);
+               goto error;
+       }
+
+       goto end;
+
+error:
+       BT_PUT(notif);
+
+end:
+       return notif;
+}
+
+static
+void destroy_dmesg_notif_iter(struct dmesg_notif_iter *dmesg_notif_iter)
+{
+       if (!dmesg_notif_iter) {
+               return;
+       }
+
+       if (dmesg_notif_iter->fp && dmesg_notif_iter->fp != stdin) {
+               if (fclose(dmesg_notif_iter->fp)) {
+                       BT_LOGE_ERRNO("Cannot close input file", ".");
+               }
+       }
+
+       bt_put(dmesg_notif_iter->tmp_event_notif);
+       free(dmesg_notif_iter->linebuf);
+       g_free(dmesg_notif_iter);
 }
 
 BT_HIDDEN
 enum bt_notification_iterator_status dmesg_notif_iter_init(
-               struct bt_private_notification_iterator *priv_notif_iter,
+               struct bt_private_connection_private_notification_iterator *priv_notif_iter,
                struct bt_private_port *priv_port)
 {
+       struct bt_private_component *priv_comp = NULL;
+       struct dmesg_component *dmesg_comp;
+       struct dmesg_notif_iter *dmesg_notif_iter =
+               g_new0(struct dmesg_notif_iter, 1);
+       enum bt_notification_iterator_status status =
+               BT_NOTIFICATION_ITERATOR_STATUS_OK;
 
+       if (!dmesg_notif_iter) {
+               BT_LOGE_STR("Failed to allocate on dmesg notification iterator structure.");
+               goto error;
+       }
+
+       priv_comp = bt_private_connection_private_notification_iterator_get_private_component(
+               priv_notif_iter);
+       BT_ASSERT(priv_comp);
+       dmesg_comp = bt_private_component_get_user_data(priv_comp);
+       BT_ASSERT(dmesg_comp);
+       dmesg_notif_iter->dmesg_comp = dmesg_comp;
+
+       if (dmesg_comp->params.read_from_stdin) {
+               dmesg_notif_iter->fp = stdin;
+       } else {
+               dmesg_notif_iter->fp = fopen(dmesg_comp->params.path->str, "r");
+               if (!dmesg_notif_iter->fp) {
+                       BT_LOGE_ERRNO("Cannot open input file in read mode", ": path=\"%s\"",
+                               dmesg_comp->params.path->str);
+                       goto error;
+               }
+       }
+
+       (void) bt_private_connection_private_notification_iterator_set_user_data(priv_notif_iter,
+               dmesg_notif_iter);
+       goto end;
+
+error:
+       destroy_dmesg_notif_iter(dmesg_notif_iter);
+       (void) bt_private_connection_private_notification_iterator_set_user_data(priv_notif_iter,
+               NULL);
+       if (status >= 0) {
+               status = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
+       }
+
+end:
+       bt_put(priv_comp);
+       return status;
 }
 
 BT_HIDDEN
-void dmesg_iterator_finalize(
-               struct bt_private_notification_iterator *priv_notif_iter)
+void dmesg_notif_iter_finalize(
+               struct bt_private_connection_private_notification_iterator *priv_notif_iter)
 {
-
+       destroy_dmesg_notif_iter(bt_private_connection_private_notification_iterator_get_user_data(
+               priv_notif_iter));
 }
 
 BT_HIDDEN
-struct bt_notification_iterator_next_return dmesg_notif_iter_next(
-               struct bt_private_notification_iterator *priv_notif_iter)
+struct bt_notification_iterator_next_method_return dmesg_notif_iter_next(
+               struct bt_private_connection_private_notification_iterator *priv_notif_iter)
 {
+       ssize_t len;
+       struct dmesg_notif_iter *dmesg_notif_iter =
+               bt_private_connection_private_notification_iterator_get_user_data(
+                       priv_notif_iter);
+       struct dmesg_component *dmesg_comp;
+       struct bt_notification_iterator_next_method_return next_ret = {
+               .status = BT_NOTIFICATION_ITERATOR_STATUS_OK,
+               .notification = NULL
+       };
+
+       BT_ASSERT(dmesg_notif_iter);
+       dmesg_comp = dmesg_notif_iter->dmesg_comp;
+       BT_ASSERT(dmesg_comp);
+
+       if (dmesg_notif_iter->state == STATE_DONE) {
+               next_ret.status = BT_NOTIFICATION_ITERATOR_STATUS_END;
+               goto end;
+       }
+
+       if (dmesg_notif_iter->tmp_event_notif ||
+                       dmesg_notif_iter->state == STATE_EMIT_PACKET_END ||
+                       dmesg_notif_iter->state == STATE_EMIT_STREAM_END) {
+               goto handle_state;
+       }
+
+       while (true) {
+               const char *ch;
+               bool only_spaces = true;
+
+               len = bt_getline(&dmesg_notif_iter->linebuf,
+                       &dmesg_notif_iter->linebuf_len, dmesg_notif_iter->fp);
+               if (len < 0) {
+                       if (errno == EINVAL) {
+                               next_ret.status =
+                                       BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
+                       } else if (errno == ENOMEM) {
+                               next_ret.status =
+                                       BT_NOTIFICATION_ITERATOR_STATUS_NOMEM;
+                       } else {
+                               if (dmesg_notif_iter->state == STATE_EMIT_STREAM_BEGINNING) {
+                                       /* Stream did not even begin */
+                                       next_ret.status =
+                                               BT_NOTIFICATION_ITERATOR_STATUS_END;
+                                       goto end;
+                               } else {
+                                       /* End current packet now */
+                                       dmesg_notif_iter->state =
+                                               STATE_EMIT_PACKET_END;
+                                       goto handle_state;
+                               }
+                       }
+
+                       goto end;
+               }
+
+               BT_ASSERT(dmesg_notif_iter->linebuf);
+
+               /* Ignore empty lines, once trimmed */
+               for (ch = dmesg_notif_iter->linebuf; *ch != '\0'; ch++) {
+                       if (!isspace(*ch)) {
+                               only_spaces = false;
+                               break;
+                       }
+               }
 
+               if (!only_spaces) {
+                       break;
+               }
+       }
+
+       dmesg_notif_iter->tmp_event_notif = create_notif_from_line(dmesg_comp,
+               dmesg_notif_iter->linebuf);
+       if (!dmesg_notif_iter->tmp_event_notif) {
+               BT_LOGE("Cannot create event notification from line: "
+                       "dmesg-comp-addr=%p, line=\"%s\"", dmesg_comp,
+                       dmesg_notif_iter->linebuf);
+               goto end;
+       }
+
+handle_state:
+       BT_ASSERT(dmesg_comp->trace);
+
+       switch (dmesg_notif_iter->state) {
+       case STATE_EMIT_STREAM_BEGINNING:
+               BT_ASSERT(dmesg_notif_iter->tmp_event_notif);
+               next_ret.notification = bt_notification_stream_begin_create(
+                       dmesg_comp->stream);
+               dmesg_notif_iter->state = STATE_EMIT_PACKET_BEGINNING;
+               break;
+       case STATE_EMIT_PACKET_BEGINNING:
+               BT_ASSERT(dmesg_notif_iter->tmp_event_notif);
+               next_ret.notification = bt_notification_packet_begin_create(
+                       dmesg_comp->packet);
+               dmesg_notif_iter->state = STATE_EMIT_EVENT;
+               break;
+       case STATE_EMIT_EVENT:
+               BT_ASSERT(dmesg_notif_iter->tmp_event_notif);
+               BT_MOVE(next_ret.notification,
+                       dmesg_notif_iter->tmp_event_notif);
+               break;
+       case STATE_EMIT_PACKET_END:
+               next_ret.notification = bt_notification_packet_end_create(
+                       dmesg_comp->packet);
+               dmesg_notif_iter->state = STATE_EMIT_STREAM_END;
+               break;
+       case STATE_EMIT_STREAM_END:
+               next_ret.notification = bt_notification_stream_end_create(
+                       dmesg_comp->stream);
+               dmesg_notif_iter->state = STATE_DONE;
+               break;
+       default:
+               break;
+       }
+
+       if (!next_ret.notification) {
+               BT_LOGE("Cannot create notification: dmesg-comp-addr=%p",
+                       dmesg_comp);
+               next_ret.status = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
+       }
+
+end:
+       return next_ret;
 }
This page took 0.034176 seconds and 4 git commands to generate.