aea04e8c76acbe2ef6c4a97f4a914765d320ea0b
[babeltrace.git] / include / babeltrace / ctf / metadata.h
1 #ifndef _BABELTRACE_CTF_METADATA_H
2 #define _BABELTRACE_CTF_METADATA_H
3
4 /*
5 * BabelTrace
6 *
7 * CTF Metadata Header
8 *
9 * Copyright 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 */
21
22 #include <babeltrace/types.h>
23 #include <uuid/uuid.h>
24 #include <assert.h>
25 #include <glib.h>
26
27 struct ctf_trace;
28 struct ctf_stream;
29 struct ctf_event;
30
31 #define CTF_TRACE_SET_FIELD(ctf_trace, field, value) \
32 do { \
33 (ctf_trace)->(field) = (value); \
34 (ctf_trace)->field_mask |= CTF_TRACE_ ## field; \
35 } while (0)
36
37 #define CTF_TRACE_FIELD_IS_SET(ctf_trace, field) \
38 ((ctf_trace)->field_mask & CTF_TRACE_ ## field)
39
40 #define CTF_TRACE_GET_FIELD(ctf_trace, field) \
41 ({ \
42 assert(CTF_TRACE_FIELD_IS_SET(ctf_trace, field)); \
43 (ctf_trace)->(field); \
44 })
45
46 struct ctf_trace {
47 struct declaration_scope *scope; /* root scope */
48 GArray *streams; /* Array of struct ctf_stream */
49
50 uint64_t major;
51 uint64_t minor;
52 uuid_t uuid;
53 uint64_t word_size;
54
55 enum { /* Fields populated mask */
56 CTF_TRACE_major = (1U << 0),
57 CTF_TRACE_minor = (1U << 1),
58 CTF_TRACE_uuid = (1U << 2),
59 CTF_TRACE_word_size = (1U << 3),
60 } field_mask;
61 };
62
63 #define CTF_STREAM_SET_FIELD(ctf_stream, field, value) \
64 do { \
65 (ctf_stream)->(field) = (value); \
66 (ctf_stream)->field_mask |= CTF_STREAM_ ## field; \
67 } while (0)
68
69 #define CTF_STREAM_FIELD_IS_SET(ctf_stream, field) \
70 ((ctf_stream)->field_mask & CTF_STREAM_ ## field)
71
72 #define CTF_STREAM_GET_FIELD(ctf_stream, field) \
73 ({ \
74 assert(CTF_STREAM_FIELD_IS_SET(ctf_stream, field)); \
75 (ctf_stream)->(field); \
76 })
77
78 struct ctf_stream {
79 struct ctf_trace *trace;
80 struct declaration_scope *scope; /* parent is trace scope */
81 GArray *events_by_id; /* Array of struct ctf_event indexed by id */
82 GHashTable *event_quark_to_id; /* GQuark to numeric id */
83
84 struct declaration_struct *event_header;
85 struct declaration_struct *event_context;
86 struct declaration_struct *packet_context;
87
88 uint64_t stream_id;
89
90 enum { /* Fields populated mask */
91 CTF_STREAM_stream_id = (1 << 0),
92 } field_mask;
93 };
94
95 #define CTF_EVENT_SET_FIELD(ctf_event, field, value) \
96 do { \
97 (ctf_event)->(field) = (value); \
98 (ctf_event)->field_mask |= CTF_EVENT_ ## field; \
99 } while (0)
100
101 #define CTF_EVENT_FIELD_IS_SET(ctf_event, field) \
102 ((ctf_event)->field_mask & CTF_EVENT_ ## field)
103
104 #define CTF_EVENT_GET_FIELD(ctf_event, field) \
105 ({ \
106 assert(CTF_EVENT_FIELD_IS_SET(ctf_event, field)); \
107 (ctf_event)->(field); \
108 })
109
110 struct ctf_event {
111 struct ctf_stream *stream; /* stream mapped by stream_id */
112 struct declaration_scope *scope; /* parent is stream scope */
113 struct declaration_struct *context;
114 struct declaration_struct *fields;
115
116 GQuark name;
117 uint64_t id; /* Numeric identifier within the stream */
118 uint64_t stream_id;
119
120 enum { /* Fields populated mask */
121 CTF_EVENT_name = (1 << 0),
122 CTF_EVENT_id = (1 << 1),
123 CTF_EVENT_stream_id = (1 << 2),
124 } field_mask;
125 };
126
127 #endif /* _BABELTRACE_CTF_METADATA_H */
This page took 0.030639 seconds and 3 git commands to generate.