X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace%2Fgraph%2Fnotification-internal.h;h=243aac09cb1ffdfa40a8adf611060fe21128d56f;hb=3fea54f69edd1780566230255da196cb6e82df62;hp=00a8c7eeb7e9e148e0c5fd7915d916c6722cc239;hpb=5af447e5102d6226ee198e4db52b51e12075f1bb;p=babeltrace.git diff --git a/include/babeltrace/graph/notification-internal.h b/include/babeltrace/graph/notification-internal.h index 00a8c7ee..243aac09 100644 --- a/include/babeltrace/graph/notification-internal.h +++ b/include/babeltrace/graph/notification-internal.h @@ -1,5 +1,5 @@ -#ifndef BABELTRACE_COMPONENT_NOTIFICATION_NOTIFICATION_INTERNAL_H -#define BABELTRACE_COMPONENT_NOTIFICATION_NOTIFICATION_INTERNAL_H +#ifndef BABELTRACE_GRAPH_NOTIFICATION_NOTIFICATION_INTERNAL_H +#define BABELTRACE_GRAPH_NOTIFICATION_NOTIFICATION_INTERNAL_H /* * BabelTrace - Plug-in Notification internal @@ -27,43 +27,97 @@ * SOFTWARE. */ -#include #include #include +#include #include #include +#include #include -typedef struct bt_ctf_stream *(*get_stream_func)( +typedef struct bt_stream *(*get_stream_func)( struct bt_notification *notification); struct bt_notification { struct bt_object base; enum bt_notification_type type; - get_stream_func get_stream; + uint64_t seq_num; bt_bool frozen; + + /* Owned by this; keeps the graph alive while the notif. is alive */ + struct bt_graph *graph; }; +#define BT_ASSERT_PRE_NOTIF_IS_TYPE(_notif, _type) \ + BT_ASSERT_PRE((_notif)->type == (_type), \ + "Notification has the wrong type: expected-type=%s, " \ + "%![notif-]+n", bt_notification_type_string(_type), \ + (_notif)) + BT_HIDDEN void bt_notification_init(struct bt_notification *notification, enum bt_notification_type type, - bt_object_release_func release); + bt_object_release_func release, + struct bt_graph *graph); -static inline void bt_notification_freeze(struct bt_notification *notification) +static inline +void bt_notification_reset(struct bt_notification *notification) +{ + BT_ASSERT(notification); + +#ifdef BT_DEV_MODE + notification->frozen = BT_FALSE; + notification->seq_num = UINT64_C(-1); +#endif +} + +static inline +struct bt_notification *bt_notification_create_from_pool( + struct bt_object_pool *pool, struct bt_graph *graph) +{ + struct bt_notification *notif = bt_object_pool_create_object(pool); + + if (!notif) { +#ifdef BT_LIB_LOGE + BT_LIB_LOGE("Cannot allocate one notification from notification pool: " + "%![pool-]+o, %![graph-]+g", pool, graph); +#endif + goto error; + } + + if (!notif->graph) { + notif->graph = graph; + } + + goto end; + +error: + BT_PUT(notif); + +end: + return notif; +} + +static inline void _bt_notification_freeze(struct bt_notification *notification) { notification->frozen = BT_TRUE; } +BT_HIDDEN +void bt_notification_unlink_graph(struct bt_notification *notif); + +#ifdef BT_DEV_MODE +# define bt_notification_freeze _bt_notification_freeze +#else +# define bt_notification_freeze(_x) +#endif /* BT_DEV_MODE */ + static inline const char *bt_notification_type_string(enum bt_notification_type type) { switch (type) { - case BT_NOTIFICATION_TYPE_SENTINEL: - return "BT_NOTIFICATION_TYPE_SENTINEL"; case BT_NOTIFICATION_TYPE_UNKNOWN: return "BT_NOTIFICATION_TYPE_UNKNOWN"; - case BT_NOTIFICATION_TYPE_ALL: - return "BT_NOTIFICATION_TYPE_ALL"; case BT_NOTIFICATION_TYPE_EVENT: return "BT_NOTIFICATION_TYPE_EVENT"; case BT_NOTIFICATION_TYPE_INACTIVITY: @@ -76,9 +130,13 @@ const char *bt_notification_type_string(enum bt_notification_type type) return "BT_NOTIFICATION_TYPE_PACKET_BEGIN"; case BT_NOTIFICATION_TYPE_PACKET_END: return "BT_NOTIFICATION_TYPE_PACKET_END"; + case BT_NOTIFICATION_TYPE_DISCARDED_EVENTS: + return "BT_NOTIFICATION_TYPE_DISCARDED_EVENTS"; + case BT_NOTIFICATION_TYPE_DISCARDED_PACKETS: + return "BT_NOTIFICATION_TYPE_DISCARDED_PACKETS"; default: return "(unknown)"; } } -#endif /* BABELTRACE_COMPONENT_NOTIFICATION_NOTIFICATION_INTERNAL_H */ +#endif /* BABELTRACE_GRAPH_NOTIFICATION_NOTIFICATION_INTERNAL_H */