Fix: src.ctf.lttng-live: emitting stream end msg with no stream
[babeltrace.git] / include / babeltrace2 / trace-ir / trace-const.h
index 98e7b526a3015fc1c29088477e75ca483d569296..d4410a2dd1db59977c7ed5e98b9a94fbbe0009e6 100644 (file)
@@ -1,9 +1,8 @@
-#ifndef BABELTRACE_TRACE_IR_TRACE_CONST_H
-#define BABELTRACE_TRACE_IR_TRACE_CONST_H
+#ifndef BABELTRACE2_TRACE_IR_TRACE_CONST_H
+#define BABELTRACE2_TRACE_IR_TRACE_CONST_H
 
 /*
- * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
- * Copyright 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
+ * Copyright (c) 2010-2019 EfficiOS Inc. and Linux Foundation
  *
  * Permission is hereby granted, free of charge, to any person obtaining a copy
  * of this software and associated documentation files (the "Software"), to deal
  * 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.
- *
- * The Common Trace Format (CTF) Specification is available at
- * http://www.efficios.com/ctf
  */
 
-/*
- * For bt_bool, bt_uuid, bt_trace, bt_stream, bt_stream_class,
- * bt_field_class, bt_value
- */
-#include <babeltrace2/types.h>
+#ifndef __BT_IN_BABELTRACE_H
+# error "Please include <babeltrace2/babeltrace.h> instead."
+#endif
 
 #include <stdint.h>
 
+#include <babeltrace2/types.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif
 
-typedef enum bt_trace_status {
-       BT_TRACE_STATUS_OK = 0,
-       BT_TRACE_STATUS_NOMEM = -12,
-} bt_trace_status;
-
 typedef void (* bt_trace_destruction_listener_func)(
                const bt_trace *trace, void *data);
 
+extern const bt_value *bt_trace_borrow_user_attributes_const(
+               const bt_trace *trace);
+
 extern const bt_trace_class *bt_trace_borrow_class_const(
                const bt_trace *trace);
 
 extern const char *bt_trace_get_name(const bt_trace *trace);
 
+extern bt_uuid bt_trace_get_uuid(const bt_trace *trace);
+
+extern uint64_t bt_trace_get_environment_entry_count(const bt_trace *trace);
+
+extern void bt_trace_borrow_environment_entry_by_index_const(
+               const bt_trace *trace, uint64_t index,
+               const char **name, const bt_value **value);
+
+extern const bt_value *bt_trace_borrow_environment_entry_value_by_name_const(
+               const bt_trace *trace, const char *name);
+
 extern uint64_t bt_trace_get_stream_count(const bt_trace *trace);
 
 extern const bt_stream *bt_trace_borrow_stream_by_index_const(
@@ -60,13 +65,23 @@ extern const bt_stream *bt_trace_borrow_stream_by_index_const(
 extern const bt_stream *bt_trace_borrow_stream_by_id_const(
                const bt_trace *trace, uint64_t id);
 
-extern bt_trace_status bt_trace_add_destruction_listener(
+typedef enum bt_trace_add_listener_status {
+       BT_TRACE_ADD_LISTENER_STATUS_MEMORY_ERROR       = __BT_FUNC_STATUS_MEMORY_ERROR,
+       BT_TRACE_ADD_LISTENER_STATUS_OK                 = __BT_FUNC_STATUS_OK,
+} bt_trace_add_listener_status;
+
+extern bt_trace_add_listener_status bt_trace_add_destruction_listener(
                const bt_trace *trace,
                bt_trace_destruction_listener_func listener,
-               void *data, uint64_t *listener_id);
+               void *data, bt_listener_id *listener_id);
+
+typedef enum bt_trace_remove_listener_status {
+       BT_TRACE_REMOVE_LISTENER_STATUS_MEMORY_ERROR    = __BT_FUNC_STATUS_MEMORY_ERROR,
+       BT_TRACE_REMOVE_LISTENER_STATUS_OK              = __BT_FUNC_STATUS_OK,
+} bt_trace_remove_listener_status;
 
-extern bt_trace_status bt_trace_remove_destruction_listener(
-               const bt_trace *trace, uint64_t listener_id);
+extern bt_trace_remove_listener_status bt_trace_remove_destruction_listener(
+               const bt_trace *trace, bt_listener_id listener_id);
 
 extern void bt_trace_get_ref(const bt_trace *trace);
 
@@ -89,4 +104,4 @@ extern void bt_trace_put_ref(const bt_trace *trace);
 }
 #endif
 
-#endif /* BABELTRACE_TRACE_IR_TRACE_CONST_H */
+#endif /* BABELTRACE2_TRACE_IR_TRACE_CONST_H */
This page took 0.024289 seconds and 4 git commands to generate.