cpp-common/bt2c/fmt.hpp: use `wise_enum::string_type` in `EnableIfIsWiseEnum` definition
[babeltrace.git] / src / plugins / ctf / fs-src / metadata.cpp
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2016 Philippe Proulx <pproulx@efficios.com>
5 * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation
6 */
7
8 #include "common/assert.h"
9 #include "cpp-common/bt2s/make-unique.hpp"
10
11 #include "../common/src/metadata/tsdl/decoder.hpp"
12 #include "file.hpp"
13 #include "fs.hpp"
14 #include "metadata.hpp"
15
16 FILE *ctf_fs_metadata_open_file(const char *trace_path, const bt2c::Logger& logger)
17 {
18 GString *metadata_path;
19 FILE *fp = NULL;
20
21 metadata_path = g_string_new(trace_path);
22 if (!metadata_path) {
23 goto end;
24 }
25
26 g_string_append(metadata_path, G_DIR_SEPARATOR_S CTF_FS_METADATA_FILENAME);
27 fp = fopen(metadata_path->str, "rb");
28 if (!fp) {
29 BT_CPPLOGE_ERRNO_APPEND_CAUSE_SPEC(logger, "Failed to open metadata file", ": path=\"{}\"",
30 metadata_path->str);
31 }
32
33 g_string_free(metadata_path, TRUE);
34
35 end:
36 return fp;
37 }
38
39 static ctf_fs_file::UP get_file(const bt2c::CStringView trace_path, const bt2c::Logger& logger)
40 {
41 auto file = bt2s::make_unique<ctf_fs_file>(logger);
42
43 if (!file) {
44 goto error;
45 }
46
47 file->path = fmt::format("{}" G_DIR_SEPARATOR_S CTF_FS_METADATA_FILENAME, trace_path);
48
49 if (ctf_fs_file_open(file.get(), "rb")) {
50 goto error;
51 }
52
53 goto end;
54
55 error:
56 file.reset();
57
58 end:
59 return file;
60 }
61
62 int ctf_fs_metadata_set_trace_class(bt_self_component *self_comp, struct ctf_fs_trace *ctf_fs_trace,
63 const ctf::src::ClkClsCfg& clkClsCfg)
64 {
65 int ret = 0;
66 ctf_metadata_decoder_config decoder_config {ctf_fs_trace->logger};
67
68 decoder_config.self_comp = self_comp;
69 decoder_config.clkClsCfg = clkClsCfg;
70 decoder_config.create_trace_class = true;
71
72 const auto file = get_file(ctf_fs_trace->path, ctf_fs_trace->logger);
73 if (!file) {
74 BT_CPPLOGE_SPEC(ctf_fs_trace->logger, "Cannot create metadata file object.");
75 ret = -1;
76 goto end;
77 }
78
79 ctf_fs_trace->metadata->decoder = ctf_metadata_decoder_create(&decoder_config);
80 if (!ctf_fs_trace->metadata->decoder) {
81 BT_CPPLOGE_SPEC(ctf_fs_trace->logger, "Cannot create metadata decoder object.");
82 ret = -1;
83 goto end;
84 }
85
86 ret =
87 ctf_metadata_decoder_append_content(ctf_fs_trace->metadata->decoder.get(), file->fp.get());
88 if (ret) {
89 BT_CPPLOGE_SPEC(ctf_fs_trace->logger, "Cannot update metadata decoder's content.");
90 goto end;
91 }
92
93 ctf_fs_trace->metadata->trace_class =
94 ctf_metadata_decoder_get_ir_trace_class(ctf_fs_trace->metadata->decoder.get());
95 BT_ASSERT(!self_comp || ctf_fs_trace->metadata->trace_class);
96
97 ctf_fs_trace->metadata->tc =
98 ctf_metadata_decoder_borrow_ctf_trace_class(ctf_fs_trace->metadata->decoder.get());
99 BT_ASSERT(ctf_fs_trace->metadata->tc);
100
101 end:
102 return ret;
103 }
This page took 0.03085 seconds and 4 git commands to generate.