Unify reference counting using a common bt_object base
[babeltrace.git] / formats / ctf / writer / writer.c
1 /*
2 * writer.c
3 *
4 * Babeltrace CTF Writer
5 *
6 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
7 *
8 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * SOFTWARE.
27 */
28
29 #include <babeltrace/ctf-ir/clock-internal.h>
30 #include <babeltrace/ctf-writer/writer-internal.h>
31 #include <babeltrace/ctf-ir/event-types-internal.h>
32 #include <babeltrace/ctf-ir/event-fields-internal.h>
33 #include <babeltrace/ctf-writer/functor-internal.h>
34 #include <babeltrace/ctf-ir/stream-class-internal.h>
35 #include <babeltrace/ctf-ir/stream-internal.h>
36 #include <babeltrace/ref.h>
37 #include <babeltrace/compiler.h>
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <sys/stat.h>
41 #include <errno.h>
42 #include <unistd.h>
43 #include <fcntl.h>
44 #include <inttypes.h>
45
46 static
47 void bt_ctf_writer_destroy(struct bt_object *obj);
48
49 static
50 int create_stream_file(struct bt_ctf_writer *writer,
51 struct bt_ctf_stream *stream);
52
53 struct bt_ctf_writer *bt_ctf_writer_create(const char *path)
54 {
55 struct bt_ctf_writer *writer = NULL;
56
57 if (!path) {
58 goto error;
59 }
60
61 writer = g_new0(struct bt_ctf_writer, 1);
62 if (!writer) {
63 goto error;
64 }
65
66 bt_object_init(writer, bt_ctf_writer_destroy);
67 writer->path = g_string_new(path);
68 if (!writer->path) {
69 goto error_destroy;
70 }
71
72 writer->trace = bt_ctf_trace_create();
73 if (!writer->trace) {
74 goto error_destroy;
75 }
76
77 /* Create trace directory if necessary and open a metadata file */
78 if (g_mkdir_with_parents(path, S_IRWXU | S_IRWXG)) {
79 perror("g_mkdir_with_parents");
80 goto error_destroy;
81 }
82
83 writer->trace_dir_fd = open(path, O_RDONLY, S_IRWXU | S_IRWXG);
84 if (writer->trace_dir_fd < 0) {
85 perror("open");
86 goto error_destroy;
87 }
88
89 writer->metadata_fd = openat(writer->trace_dir_fd, "metadata",
90 O_WRONLY | O_CREAT | O_TRUNC,
91 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
92
93 return writer;
94
95 error_destroy:
96 unlinkat(writer->trace_dir_fd, "metadata", 0);
97 BT_PUT(writer);
98 error:
99 return writer;
100 }
101
102 void bt_ctf_writer_destroy(struct bt_object *obj)
103 {
104 struct bt_ctf_writer *writer;
105
106 writer = container_of(obj, struct bt_ctf_writer, base);
107 bt_ctf_writer_flush_metadata(writer);
108 if (writer->path) {
109 g_string_free(writer->path, TRUE);
110 }
111
112 if (writer->trace_dir_fd > 0) {
113 if (close(writer->trace_dir_fd)) {
114 perror("close");
115 }
116 }
117
118 if (writer->metadata_fd > 0) {
119 if (close(writer->metadata_fd)) {
120 perror("close");
121 }
122 }
123
124 bt_put(writer->trace);
125 g_free(writer);
126 }
127
128 struct bt_ctf_trace *bt_ctf_writer_get_trace(struct bt_ctf_writer *writer)
129 {
130 struct bt_ctf_trace *trace = NULL;
131
132 if (!writer) {
133 goto end;
134 }
135
136 trace = writer->trace;
137 bt_get(trace);
138 end:
139 return trace;
140 }
141
142 struct bt_ctf_stream *bt_ctf_writer_create_stream(struct bt_ctf_writer *writer,
143 struct bt_ctf_stream_class *stream_class)
144 {
145 int stream_fd;
146 struct bt_ctf_stream *stream = NULL;
147
148 if (!writer || !stream_class) {
149 goto error;
150 }
151
152 stream = bt_ctf_trace_create_stream(writer->trace, stream_class);
153 if (!stream) {
154 goto error;
155 }
156
157 stream_fd = create_stream_file(writer, stream);
158 if (stream_fd < 0 || bt_ctf_stream_set_fd(stream, stream_fd)) {
159 goto error;
160 }
161
162 writer->frozen = 1;
163 return stream;
164
165 error:
166 BT_PUT(stream);
167 return stream;
168 }
169
170 int bt_ctf_writer_add_environment_field(struct bt_ctf_writer *writer,
171 const char *name,
172 const char *value)
173 {
174 int ret = -1;
175
176 if (!writer || !name || !value) {
177 goto end;
178 }
179
180 ret = bt_ctf_trace_set_environment_field_string(writer->trace,
181 name, value);
182 end:
183 return ret;
184 }
185
186 int bt_ctf_writer_add_clock(struct bt_ctf_writer *writer,
187 struct bt_ctf_clock *clock)
188 {
189 int ret = -1;
190
191 if (!writer || !clock) {
192 goto end;
193 }
194
195 ret = bt_ctf_trace_add_clock(writer->trace, clock);
196 end:
197 return ret;
198 }
199
200 char *bt_ctf_writer_get_metadata_string(struct bt_ctf_writer *writer)
201 {
202 char *metadata_string = NULL;
203
204 if (!writer) {
205 goto end;
206 }
207
208 metadata_string = bt_ctf_trace_get_metadata_string(
209 writer->trace);
210 end:
211 return metadata_string;
212 }
213
214 void bt_ctf_writer_flush_metadata(struct bt_ctf_writer *writer)
215 {
216 int ret;
217 char *metadata_string = NULL;
218
219 if (!writer) {
220 goto end;
221 }
222
223 metadata_string = bt_ctf_trace_get_metadata_string(
224 writer->trace);
225 if (!metadata_string) {
226 goto end;
227 }
228
229 if (lseek(writer->metadata_fd, 0, SEEK_SET) == (off_t)-1) {
230 perror("lseek");
231 goto end;
232 }
233
234 if (ftruncate(writer->metadata_fd, 0)) {
235 perror("ftruncate");
236 goto end;
237 }
238
239 ret = write(writer->metadata_fd, metadata_string,
240 strlen(metadata_string));
241 if (ret < 0) {
242 perror("write");
243 goto end;
244 }
245 end:
246 g_free(metadata_string);
247 }
248
249 int bt_ctf_writer_set_byte_order(struct bt_ctf_writer *writer,
250 enum bt_ctf_byte_order byte_order)
251 {
252 int ret = 0;
253
254 if (!writer || writer->frozen) {
255 ret = -1;
256 goto end;
257 }
258
259 ret = bt_ctf_trace_set_byte_order(writer->trace,
260 byte_order);
261 end:
262 return ret;
263 }
264
265 void bt_ctf_writer_get(struct bt_ctf_writer *writer)
266 {
267 bt_get(writer);
268 }
269
270 void bt_ctf_writer_put(struct bt_ctf_writer *writer)
271 {
272 bt_put(writer);
273 }
274
275 static
276 int create_stream_file(struct bt_ctf_writer *writer,
277 struct bt_ctf_stream *stream)
278 {
279 int fd;
280 GString *filename = g_string_new(stream->stream_class->name->str);
281
282 if (stream->stream_class->name->len == 0) {
283 int64_t ret;
284
285 ret = bt_ctf_stream_class_get_id(stream->stream_class);
286 if (ret < 0) {
287 fd = -1;
288 goto error;
289 }
290
291 g_string_printf(filename, "stream_%" PRId64, ret);
292 }
293
294 g_string_append_printf(filename, "_%" PRIu32, stream->id);
295 fd = openat(writer->trace_dir_fd, filename->str,
296 O_RDWR | O_CREAT | O_TRUNC,
297 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
298 error:
299 g_string_free(filename, TRUE);
300 return fd;
301 }
This page took 0.035625 seconds and 4 git commands to generate.