Move to kernel style SPDX license identifiers
[babeltrace.git] / src / plugins / utils / counter / counter.h
index 81329090c8cf6f0c116d808c5c19032f3c7564bd..28800909b4ede27a2668b9635b5ab3221fa4ba67 100644 (file)
@@ -1,28 +1,12 @@
-#ifndef BABELTRACE_PLUGINS_UTILS_COUNTER_H
-#define BABELTRACE_PLUGINS_UTILS_COUNTER_H
-
 /*
- * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
+ * SPDX-License-Identifier: MIT
  *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
+ * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
  */
 
+#ifndef BABELTRACE_PLUGINS_UTILS_COUNTER_H
+#define BABELTRACE_PLUGINS_UTILS_COUNTER_H
+
 #include <glib.h>
 #include <babeltrace2/babeltrace.h>
 #include <stdbool.h>
 #include "common/macros.h"
 
 struct counter {
-       bt_self_component_port_input_message_iterator *msg_iter;
+       bt_message_iterator *msg_iter;
        struct {
                uint64_t event;
                uint64_t stream_begin;
                uint64_t stream_end;
-               uint64_t stream_activity_begin;
-               uint64_t stream_activity_end;
                uint64_t packet_begin;
                uint64_t packet_end;
                uint64_t disc_events;
@@ -49,21 +31,23 @@ struct counter {
        uint64_t step;
        bool hide_zero;
        bt_logging_level log_level;
+       bt_self_component *self_comp;
 };
 
 BT_HIDDEN
-bt_self_component_status counter_init(
+bt_component_class_initialize_method_status counter_init(
                bt_self_component_sink *component,
+               bt_self_component_sink_configuration *config,
                const bt_value *params, void *init_method_data);
 
 BT_HIDDEN
 void counter_finalize(bt_self_component_sink *component);
 
 BT_HIDDEN
-bt_self_component_status counter_graph_is_configured(
+bt_component_class_sink_graph_is_configured_method_status counter_graph_is_configured(
                bt_self_component_sink *component);
 
 BT_HIDDEN
-bt_self_component_status counter_consume(bt_self_component_sink *component);
+bt_component_class_sink_consume_method_status counter_consume(bt_self_component_sink *component);
 
 #endif /* BABELTRACE_PLUGINS_UTILS_COUNTER_H */
This page took 0.023233 seconds and 4 git commands to generate.