X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace%2Fctf-ir%2Fstream-class-internal.h;h=a7c98266154852267bd0390a7e962a4f50b076a6;hb=e011d2c1930972adc9b85f2c4067c62c207fc4ff;hp=8301fea019cdd7353c0421afe95102552c583eda;hpb=5ca83563b477b7e35d96631dedcdff9e050e2a38;p=babeltrace.git diff --git a/include/babeltrace/ctf-ir/stream-class-internal.h b/include/babeltrace/ctf-ir/stream-class-internal.h index 8301fea0..a7c98266 100644 --- a/include/babeltrace/ctf-ir/stream-class-internal.h +++ b/include/babeltrace/ctf-ir/stream-class-internal.h @@ -27,28 +27,38 @@ * SOFTWARE. */ -#include #include #include #include +#include +#include #include -#include +#include +#include #include struct bt_ctf_stream_class { - struct bt_ctf_ref ref_count; + struct bt_object base; GString *name; struct bt_ctf_clock *clock; GPtrArray *event_classes; /* Array of pointers to bt_ctf_event_class */ + /* event class id (int64_t) to event class */ + GHashTable *event_classes_ht; int id_set; - uint32_t id; - uint32_t next_event_id; - uint32_t next_stream_id; + int64_t id; + int64_t next_event_id; + int64_t next_stream_id; struct bt_ctf_field_type *packet_context_type; struct bt_ctf_field_type *event_header_type; struct bt_ctf_field_type *event_context_type; int frozen; int byte_order; + + /* + * This flag indicates if the stream class is valid. A valid + * stream class is _always_ frozen. + */ + int valid; }; BT_HIDDEN @@ -59,12 +69,30 @@ int bt_ctf_stream_class_serialize(struct bt_ctf_stream_class *stream_class, struct metadata_context *context); BT_HIDDEN -int bt_ctf_stream_class_set_byte_order(struct bt_ctf_stream_class *stream_class, - enum bt_ctf_byte_order byte_order); +void bt_ctf_stream_class_set_byte_order( + struct bt_ctf_stream_class *stream_class, int byte_order); /* Set stream_class id without checking if the stream class is frozen */ BT_HIDDEN -int _bt_ctf_stream_class_set_id(struct bt_ctf_stream_class *stream_class, - uint32_t id); +void _bt_ctf_stream_class_set_id(struct bt_ctf_stream_class *stream_class, + int64_t id); + +BT_HIDDEN +int bt_ctf_stream_class_set_id_no_check( + struct bt_ctf_stream_class *stream_class, int64_t id); + +BT_HIDDEN +int bt_ctf_stream_class_map_clock_class( + struct bt_ctf_stream_class *stream_class, + struct bt_ctf_field_type *packet_context_type, + struct bt_ctf_field_type *event_header_type); + +static inline +struct bt_ctf_trace *bt_ctf_stream_class_borrow_trace( + struct bt_ctf_stream_class *stream_class) +{ + assert(stream_class); + return (void *) bt_object_borrow_parent(stream_class); +} #endif /* BABELTRACE_CTF_IR_STREAM_CLASS_INTERNAL_H */