Trivial cleanup
[babeltrace.git] / include / babeltrace / ctf / metadata.h
CommitLineData
c054553d
MD
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>
dd2544fd 23#include <babeltrace/ctf/types.h>
bbefb8dd
MD
24#include <sys/types.h>
25#include <dirent.h>
96513a7f
MD
26#include <uuid/uuid.h>
27#include <assert.h>
c054553d
MD
28#include <glib.h>
29
30struct ctf_trace;
31struct ctf_stream;
32struct ctf_event;
33
a0720417 34#define CTF_TRACE_SET_FIELD(ctf_trace, field) \
96513a7f 35 do { \
96513a7f
MD
36 (ctf_trace)->field_mask |= CTF_TRACE_ ## field; \
37 } while (0)
38
39#define CTF_TRACE_FIELD_IS_SET(ctf_trace, field) \
40 ((ctf_trace)->field_mask & CTF_TRACE_ ## field)
41
42#define CTF_TRACE_GET_FIELD(ctf_trace, field) \
43 ({ \
44 assert(CTF_TRACE_FIELD_IS_SET(ctf_trace, field)); \
45 (ctf_trace)->(field); \
46 })
47
05628561 48
c054553d 49struct ctf_trace {
05628561 50 /* root scope */
f6625916 51 struct declaration_scope *root_declaration_scope;
05628561 52
f6625916 53 struct declaration_scope *declaration_scope;
05628561 54 GPtrArray *streams; /* Array of struct ctf_stream pointers*/
fe21b943
MD
55
56 uint64_t major;
57 uint64_t minor;
96513a7f 58 uuid_t uuid;
ab4cf058 59 int byte_order;
96513a7f
MD
60
61 enum { /* Fields populated mask */
62 CTF_TRACE_major = (1U << 0),
63 CTF_TRACE_minor = (1U << 1),
64 CTF_TRACE_uuid = (1U << 2),
96513a7f 65 } field_mask;
bbefb8dd
MD
66
67 /* Information about trace backing directory and files */
68 DIR *dir;
69 int flags; /* open flags */
c054553d
MD
70};
71
a0720417 72#define CTF_STREAM_SET_FIELD(ctf_stream, field) \
96513a7f 73 do { \
96513a7f
MD
74 (ctf_stream)->field_mask |= CTF_STREAM_ ## field; \
75 } while (0)
76
77#define CTF_STREAM_FIELD_IS_SET(ctf_stream, field) \
78 ((ctf_stream)->field_mask & CTF_STREAM_ ## field)
79
80#define CTF_STREAM_GET_FIELD(ctf_stream, field) \
81 ({ \
82 assert(CTF_STREAM_FIELD_IS_SET(ctf_stream, field)); \
83 (ctf_stream)->(field); \
84 })
85
c054553d 86struct ctf_stream {
96513a7f 87 struct ctf_trace *trace;
05628561 88 /* parent is lexical scope conaining the stream scope */
f6625916 89 struct declaration_scope *declaration_scope;
41253107 90 /* innermost definition scope. to be used as parent of event. */
e1151715 91 struct definition_scope *definition_scope;
05628561 92 GPtrArray *events_by_id; /* Array of struct ctf_event pointers indexed by id */
96513a7f 93 GHashTable *event_quark_to_id; /* GQuark to numeric id */
fe21b943 94
9e29e16e
MD
95 /* Declarations only used when parsing */
96 struct declaration_struct *packet_context_decl;
97 struct declaration_struct *event_header_decl;
98 struct declaration_struct *event_context_decl;
99
100 /* Definitions used afterward */
101 struct definition_struct *packet_context;
e1151715
MD
102 struct definition_struct *event_header;
103 struct definition_struct *event_context;
96513a7f
MD
104
105 uint64_t stream_id;
106
107 enum { /* Fields populated mask */
108 CTF_STREAM_stream_id = (1 << 0),
109 } field_mask;
bbefb8dd
MD
110
111 /* Information about stream backing file */
112 int fd;
113 char *mmap; /* current stream mmap */
114 struct stream_pos pos; /* current stream position */
c054553d
MD
115};
116
05628561 117#define CTF_EVENT_SET_FIELD(ctf_event, field) \
96513a7f 118 do { \
96513a7f
MD
119 (ctf_event)->field_mask |= CTF_EVENT_ ## field; \
120 } while (0)
121
122#define CTF_EVENT_FIELD_IS_SET(ctf_event, field) \
123 ((ctf_event)->field_mask & CTF_EVENT_ ## field)
124
125#define CTF_EVENT_GET_FIELD(ctf_event, field) \
126 ({ \
127 assert(CTF_EVENT_FIELD_IS_SET(ctf_event, field)); \
128 (ctf_event)->(field); \
129 })
130
c054553d 131struct ctf_event {
05628561
MD
132 /* stream mapped by stream_id */
133 struct ctf_stream *stream;
134 /* parent is lexical scope conaining the event scope */
f6625916 135 struct declaration_scope *declaration_scope;
9e29e16e
MD
136
137 /* Declarations only used when parsing */
138 struct declaration_struct *context_decl;
139 struct declaration_struct *fields_decl;
140
141 /* Definitions used afterward */
e1151715
MD
142 struct definition_struct *context;
143 struct definition_struct *fields;
96513a7f
MD
144
145 GQuark name;
146 uint64_t id; /* Numeric identifier within the stream */
147 uint64_t stream_id;
148
149 enum { /* Fields populated mask */
150 CTF_EVENT_name = (1 << 0),
151 CTF_EVENT_id = (1 << 1),
152 CTF_EVENT_stream_id = (1 << 2),
153 } field_mask;
c054553d
MD
154};
155
156#endif /* _BABELTRACE_CTF_METADATA_H */
This page took 0.029733 seconds and 4 git commands to generate.