Fix libadd referring to text plugin
[babeltrace.git] / converter / babeltrace.c
index e563c0a4fd6b18c98d101ba5ed1d989f02739a12..e3436afa28a4272e180db25069363dd50c80e8b5 100644 (file)
@@ -203,6 +203,7 @@ int main(int argc, char **argv)
        struct bt_component *source = NULL, *sink = NULL;
        struct bt_value *source_params = NULL, *sink_params = NULL;
        struct bt_notification_iterator *it = NULL;
+       enum bt_component_status sink_status;
 
        ret = parse_options(argc, argv);
        if (ret < 0) {
@@ -255,7 +256,7 @@ int main(int argc, char **argv)
                        component_factory, "ctf", BT_COMPONENT_TYPE_SOURCE,
                        "fs");
        if (!source_class) {
-               fprintf(stderr, "Could not find ctf-fs output component class. Aborting...\n");
+               fprintf(stderr, "Could not find ctf-fs source component class. Aborting...\n");
                ret = -1;
                goto end;
        }
@@ -263,7 +264,7 @@ int main(int argc, char **argv)
        sink_class = bt_component_factory_get_component_class(component_factory,
                        "text", BT_COMPONENT_TYPE_SINK, "text");
        if (!sink_class) {
-               fprintf(stderr, "Could not find text output component class. Aborting...\n");
+               fprintf(stderr, "Could not find text sink component class. Aborting...\n");
                ret = -1;
                goto end;
        }
@@ -289,32 +290,30 @@ int main(int argc, char **argv)
                goto end;
        }
 
-       do {
-               enum bt_component_status sink_status;
-               struct bt_notification *notification =
-                               bt_notification_iterator_get_notification(it);
-
-               if (!notification) {
-                       /*
-                        * Should never happen in final code except after next
-                        * has returned BT_NOTIFICATION_ITERATOR_STATUS_END.
-                        *
-                        * Right now it happens at the first event since the
-                        * iterator is not completely initialized and we don't
-                        * have a notification "heap" in place.
-                        */
-                       continue;
-               }
+       sink_status = bt_component_sink_add_iterator(sink, it);
+       if (sink_status != BT_COMPONENT_STATUS_OK) {
+               ret = -1;
+               goto end;
+       }
 
-               sink_status = bt_component_sink_handle_notification(sink,
-                               notification);
-               BT_PUT(notification);
-               if (sink_status != BT_COMPONENT_STATUS_OK) {
-                       fprintf(stderr, "Sink component returned an error, aborting...\n");
+       while (true) {
+               sink_status = bt_component_sink_consume(sink);
+
+               switch (sink_status) {
+               case BT_COMPONENT_STATUS_AGAIN:
+                       /* Wait for an arbitraty 500 ms. */
+                       usleep(500000);
                        break;
+               case BT_COMPONENT_STATUS_OK:
+                       break;
+               case BT_COMPONENT_STATUS_END:
+                       goto end;
+               default:
+                       fprintf(stderr, "Sink component returned an error, aborting...\n");
+                       ret = -1;
+                       goto end;
                }
-       } while (bt_notification_iterator_next(it) ==
-                       BT_NOTIFICATION_ITERATOR_STATUS_OK);
+       }
        /* teardown and exit */
 end:
        BT_PUT(component_factory);
This page took 0.024834 seconds and 4 git commands to generate.