Implement ctf fs iterator functions
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Mon, 5 Sep 2016 21:16:57 +0000 (17:16 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Sat, 27 May 2017 18:09:06 +0000 (14:09 -0400)
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
include/babeltrace/plugin/notification/iterator.h
plugins/ctf/fs/fs.c
plugins/ctf/fs/fs.h

index 5558aa7f74c2dbde62831649b7f42222e601ba13..55de0ea07f30eed1ff4202a7dc6b972cd4083086 100644 (file)
@@ -40,21 +40,15 @@ struct bt_notification_iterator;
  * Status code. Errors are always negative.
  */
 enum bt_notification_iterator_status {
+       /** No error, okay. */
+       BT_NOTIFICATION_ITERATOR_STATUS_OK = 0,
        /** Invalid arguments. */
-       /* -22 for compatibility with -EINVAL */
-       BT_NOTIFICATION_ITERATOR_STATUS_INVAL = -22,
-
-       /** End of trace. */
-       BT_NOTIFICATION_ITERATOR_STATUS_EOT = -3,
-
+       BT_NOTIFICATION_ITERATOR_STATUS_INVAL = -1,
        /** General error. */
        BT_NOTIFICATION_ITERATOR_STATUS_ERROR = -2,
-
        /** Unsupported iterator feature. */
-       BT_NOTIFICATION_ITERATOR_STATUS_UNSUPPORTED = -1,
+       BT_NOTIFICATION_ITERATOR_STATUS_UNSUPPORTED = -3,
 
-       /** No error, okay. */
-       BT_NOTIFICATION_ITERATOR_STATUS_OK = 0,
 };
 
 /**
index adc1b30d105c7cb278aea0b0097b164c0d3b3d65..2c0ca58e067c867d26a092899c9a56214af3192b 100644 (file)
@@ -41,14 +41,71 @@ static
 struct bt_notification *ctf_fs_iterator_get(
                struct bt_notification_iterator *iterator)
 {
-       return NULL;
+       struct bt_notification *notification = NULL;
+       struct ctf_fs_component *ctf_fs;
+       struct bt_component *component = bt_notification_iterator_get_component(
+                       iterator);
+
+       if (!component) {
+               goto end;
+       }
+
+       ctf_fs = bt_component_get_private_data(component);
+       if (!ctf_fs) {
+               goto end;
+       }
+
+       notification = bt_get(ctf_fs->current_notification);
+end:
+       return notification;
 }
 
 static
 enum bt_notification_iterator_status ctf_fs_iterator_next(
                struct bt_notification_iterator *iterator)
 {
-       return BT_NOTIFICATION_ITERATOR_STATUS_UNSUPPORTED;
+       enum bt_notification_iterator_status ret;
+       struct bt_ctf_notif_iter_notif *notification;
+//     struct bt_notification *notification = NULL;
+       struct ctf_fs_component *ctf_fs;
+       struct bt_component *component = bt_notification_iterator_get_component(
+                       iterator);
+
+       if (!component) {
+               ret = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
+               goto end;
+       }
+
+       ret = ctf_fs_data_stream_get_next_notification(ctf_fs, &notification);
+       if (ret || !notification) {
+               goto end;
+       }
+
+       switch (notification->type) {
+       case BT_CTF_NOTIF_ITER_NOTIF_NEW_PACKET:
+       {
+               struct bt_ctf_notif_iter_notif_new_packet *notif =
+                       (struct bt_ctf_notif_iter_notif_new_packet *) notification;
+               break;
+       }
+       case BT_CTF_NOTIF_ITER_NOTIF_EVENT:
+       {
+               struct bt_ctf_notif_iter_notif_event *notif =
+                       (struct bt_ctf_notif_iter_notif_event *) notification;
+               break;
+       }
+       case BT_CTF_NOTIF_ITER_NOTIF_END_OF_PACKET:
+       {
+               struct bt_ctf_notif_iter_notif_end_of_packet *notif =
+                       (struct bt_ctf_notif_iter_notif_end_of_packet *) notification;
+               break;
+       }
+       default:
+               break;
+       }
+
+end:
+       return ret;
 }
 
 static
@@ -116,6 +173,7 @@ void ctf_fs_destroy_data(struct ctf_fs_component *component)
 
        ctf_fs_metadata_fini(&component->metadata);
        ctf_fs_data_stream_fini(&component->data_stream);
+       BT_PUT(component->current_notification);
        g_free(component);
 }
 
index 7a67b48abddc021436168254a316098221a72d47..e568ddd5d0f277464b9919a1856542aaf8b23b2b 100644 (file)
@@ -78,7 +78,7 @@ struct ctf_fs_component {
        GString *trace_path;
        FILE *error_fp;
        size_t page_size;
-       struct bt_notification *last_notif;
+       struct bt_notification *current_notification;
        struct ctf_fs_metadata metadata;
        struct ctf_fs_data_stream data_stream;
        struct ctf_fs_component_options options;
This page took 0.026138 seconds and 4 git commands to generate.