Babeltrace: print correct version number
[babeltrace.git] / include / babeltrace / ctf-ir / metadata.h
CommitLineData
145b8090
MD
1#ifndef _BABELTRACE_CTF_IR_METADATA_H
2#define _BABELTRACE_CTF_IR_METADATA_H
3
4/*
5 * BabelTrace
6 *
7 * CTF Intermediate Representation 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 <babeltrace/format.h>
24#include <babeltrace/ctf/types.h>
25#include <sys/types.h>
26#include <dirent.h>
27#include <uuid/uuid.h>
28#include <assert.h>
29#include <glib.h>
30
31struct ctf_trace;
32struct ctf_stream_class;
33struct ctf_stream;
34struct ctf_event;
35
36struct ctf_stream {
37 struct ctf_stream_class *stream_class;
38 uint64_t timestamp; /* Current timestamp, in ns */
5e2eb0ae 39 int has_timestamp;
661c4ce8 40 uint64_t stream_id;
145b8090
MD
41
42 struct definition_struct *trace_packet_header;
43 struct definition_struct *stream_packet_context;
44 struct definition_struct *stream_event_header;
45 struct definition_struct *stream_event_context;
42dc00b7 46 GPtrArray *events_by_id; /* Array of struct ctf_stream_event pointers indexed by id */
145b8090
MD
47 struct definition_scope *parent_def_scope; /* for initialization */
48 int stream_definitions_created;
49};
50
42dc00b7 51struct ctf_stream_event {
145b8090
MD
52 struct definition_struct *event_context;
53 struct definition_struct *event_fields;
54};
55
145b8090
MD
56#define CTF_TRACE_SET_FIELD(ctf_trace, field) \
57 do { \
58 (ctf_trace)->field_mask |= CTF_TRACE_ ## field; \
59 } while (0)
60
61#define CTF_TRACE_FIELD_IS_SET(ctf_trace, field) \
62 ((ctf_trace)->field_mask & CTF_TRACE_ ## field)
63
64#define CTF_TRACE_GET_FIELD(ctf_trace, field) \
65 ({ \
66 assert(CTF_TRACE_FIELD_IS_SET(ctf_trace, field)); \
67 (ctf_trace)->(field); \
68 })
69
70
71struct ctf_trace {
72 struct trace_descriptor parent;
73 /* root scope */
74 struct declaration_scope *root_declaration_scope;
75
76 struct declaration_scope *declaration_scope;
77 /* innermost definition scope. to be used as parent of stream. */
78 struct definition_scope *definition_scope;
79 GPtrArray *streams; /* Array of struct ctf_stream_class pointers */
2d0bea29 80 struct ctf_stream *metadata;
145b8090 81
145b8090
MD
82 struct declaration_struct *packet_header_decl;
83
84 uint64_t major;
85 uint64_t minor;
86 uuid_t uuid;
87 int byte_order; /* trace BYTE_ORDER. 0 if unset. */
88
89 enum { /* Fields populated mask */
90 CTF_TRACE_major = (1U << 0),
91 CTF_TRACE_minor = (1U << 1),
92 CTF_TRACE_uuid = (1U << 2),
93 CTF_TRACE_byte_order = (1U << 3),
94 CTF_TRACE_packet_header = (1U << 4),
95 } field_mask;
96
97 /* Information about trace backing directory and files */
98 DIR *dir;
99 int dirfd;
100 int flags; /* open flags */
101
102 /* Heap of streams, ordered to always get the lowest timestam */
103 struct ptr_heap *stream_heap;
104};
105
106#define CTF_STREAM_SET_FIELD(ctf_stream, field) \
107 do { \
108 (ctf_stream)->field_mask |= CTF_STREAM_ ## field; \
109 } while (0)
110
111#define CTF_STREAM_FIELD_IS_SET(ctf_stream, field) \
112 ((ctf_stream)->field_mask & CTF_STREAM_ ## field)
113
114#define CTF_STREAM_GET_FIELD(ctf_stream, field) \
115 ({ \
116 assert(CTF_STREAM_FIELD_IS_SET(ctf_stream, field)); \
117 (ctf_stream)->(field); \
118 })
119
120struct ctf_stream_class {
121 struct ctf_trace *trace;
122 /* parent is lexical scope conaining the stream scope */
123 struct declaration_scope *declaration_scope;
124 /* innermost definition scope. to be used as parent of event. */
125 struct definition_scope *definition_scope;
126 GPtrArray *events_by_id; /* Array of struct ctf_event pointers indexed by id */
127 GHashTable *event_quark_to_id; /* GQuark to numeric id */
128
145b8090
MD
129 struct declaration_struct *packet_context_decl;
130 struct declaration_struct *event_header_decl;
131 struct declaration_struct *event_context_decl;
132
133 uint64_t stream_id;
134
135 enum { /* Fields populated mask */
136 CTF_STREAM_stream_id = (1 << 0),
137 } field_mask;
138
2d0bea29 139 GPtrArray *streams; /* Array of struct ctf_stream pointers */
145b8090
MD
140};
141
142#define CTF_EVENT_SET_FIELD(ctf_event, field) \
143 do { \
144 (ctf_event)->field_mask |= CTF_EVENT_ ## field; \
145 } while (0)
146
147#define CTF_EVENT_FIELD_IS_SET(ctf_event, field) \
148 ((ctf_event)->field_mask & CTF_EVENT_ ## field)
149
150#define CTF_EVENT_GET_FIELD(ctf_event, field) \
151 ({ \
152 assert(CTF_EVENT_FIELD_IS_SET(ctf_event, field)); \
153 (ctf_event)->(field); \
154 })
155
156struct ctf_event {
157 /* stream mapped by stream_id */
158 struct ctf_stream_class *stream;
159 /* parent is lexical scope conaining the event scope */
160 struct declaration_scope *declaration_scope;
161
145b8090
MD
162 struct declaration_struct *context_decl;
163 struct declaration_struct *fields_decl;
164
165 GQuark name;
166 uint64_t id; /* Numeric identifier within the stream */
167 uint64_t stream_id;
168
169 enum { /* Fields populated mask */
170 CTF_EVENT_name = (1 << 0),
171 CTF_EVENT_id = (1 << 1),
172 CTF_EVENT_stream_id = (1 << 2),
173 } field_mask;
174};
175
176#endif /* _BABELTRACE_CTF_IR_METADATA_H */
This page took 0.029281 seconds and 4 git commands to generate.