Move print.h header to upper level dir
[babeltrace.git] / plugins / ctf / fs-src / metadata.c
1 /*
2 * Copyright 2016 - Philippe Proulx <pproulx@efficios.com>
3 * Copyright 2010-2011 - EfficiOS Inc. and Linux Foundation
4 *
5 * Some functions are based on older functions written by Mathieu Desnoyers.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
26 #include <stdio.h>
27 #include <stdint.h>
28 #include <stdlib.h>
29 #include <stdbool.h>
30 #include <assert.h>
31 #include <glib.h>
32 #include <babeltrace/compat/uuid-internal.h>
33 #include <babeltrace/compat/memstream-internal.h>
34
35 #define PRINT_ERR_STREAM ctf_fs->error_fp
36 #define PRINT_PREFIX "ctf-fs-metadata"
37 #define PRINT_DBG_CHECK ctf_fs_debug
38 #include "../print.h"
39
40 #include "fs.h"
41 #include "file.h"
42 #include "metadata.h"
43 #include "../common/metadata/decoder.h"
44
45 #define NSEC_PER_SEC 1000000000LL
46
47 BT_HIDDEN
48 FILE *ctf_fs_metadata_open_file(const char *trace_path)
49 {
50 GString *metadata_path = g_string_new(trace_path);
51 FILE *fp = NULL;
52
53 if (!metadata_path) {
54 goto error;
55 }
56
57 g_string_append(metadata_path, "/" CTF_FS_METADATA_FILENAME);
58 fp = fopen(metadata_path->str, "rb");
59 if (!fp) {
60 goto error;
61 }
62
63 goto end;
64
65 error:
66 if (fp) {
67 fclose(fp);
68 fp = NULL;
69 }
70
71 end:
72 g_string_free(metadata_path, TRUE);
73 return fp;
74 }
75
76 static struct ctf_fs_file *get_file(struct ctf_fs_component *ctf_fs,
77 const char *trace_path)
78 {
79 struct ctf_fs_file *file = ctf_fs_file_create(ctf_fs);
80
81 if (!file) {
82 goto error;
83 }
84
85 g_string_append(file->path, trace_path);
86 g_string_append(file->path, "/" CTF_FS_METADATA_FILENAME);
87
88 if (ctf_fs_file_open(ctf_fs, file, "rb")) {
89 goto error;
90 }
91
92 goto end;
93
94 error:
95 if (file) {
96 ctf_fs_file_destroy(file);
97 file = NULL;
98 }
99
100 end:
101 return file;
102 }
103
104 int ctf_fs_metadata_set_trace(struct ctf_fs_component *ctf_fs)
105 {
106 int ret = 0;
107 struct ctf_fs_file *file = NULL;
108 struct ctf_metadata_decoder *metadata_decoder = NULL;
109
110 file = get_file(ctf_fs, ctf_fs->trace_path->str);
111 if (!file) {
112 PERR("Cannot create metadata file object\n");
113 ret = -1;
114 goto end;
115 }
116
117 metadata_decoder = ctf_metadata_decoder_create(ctf_fs->error_fp,
118 ctf_fs->options.clock_offset * NSEC_PER_SEC +
119 ctf_fs->options.clock_offset_ns);
120 if (!metadata_decoder) {
121 PERR("Cannot create metadata decoder object\n");
122 ret = -1;
123 goto end;
124 }
125
126 ret = ctf_metadata_decoder_decode(metadata_decoder, file->fp);
127 if (ret) {
128 PERR("Cannot decode metadata file\n");
129 goto end;
130 }
131
132 ctf_fs->metadata->trace = ctf_metadata_decoder_get_trace(
133 metadata_decoder);
134 assert(ctf_fs->metadata->trace);
135
136 end:
137 ctf_fs_file_destroy(file);
138 ctf_metadata_decoder_destroy(metadata_decoder);
139 return ret;
140 }
141
142 int ctf_fs_metadata_init(struct ctf_fs_metadata *metadata)
143 {
144 /* Nothing to initialize for the moment. */
145 return 0;
146 }
147
148 void ctf_fs_metadata_fini(struct ctf_fs_metadata *metadata)
149 {
150 if (metadata->text) {
151 free(metadata->text);
152 }
153
154 if (metadata->trace) {
155 BT_PUT(metadata->trace);
156 }
157 }
This page took 0.032993 seconds and 4 git commands to generate.