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