src.ctf.fs: make ctf_fs_file::fp a FileUP
[babeltrace.git] / src / plugins / ctf / fs-src / metadata.cpp
CommitLineData
e98a2d6e 1/*
0235b0db 2 * SPDX-License-Identifier: MIT
e98a2d6e 3 *
0235b0db
MJ
4 * Copyright 2016 Philippe Proulx <pproulx@efficios.com>
5 * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation
e98a2d6e
PP
6 */
7
578e048b 8#include "common/assert.h"
e98a2d6e 9
5656cea5 10#include "../common/src/metadata/tsdl/decoder.hpp"
087cd0f5 11#include "file.hpp"
c802cacb 12#include "fs.hpp"
087cd0f5 13#include "metadata.hpp"
e98a2d6e 14
0f5c5d5c 15FILE *ctf_fs_metadata_open_file(const char *trace_path, const bt2c::Logger& logger)
33f93973 16{
4164020e
SM
17 GString *metadata_path;
18 FILE *fp = NULL;
33f93973 19
4164020e
SM
20 metadata_path = g_string_new(trace_path);
21 if (!metadata_path) {
22 goto end;
23 }
33f93973 24
4164020e
SM
25 g_string_append(metadata_path, G_DIR_SEPARATOR_S CTF_FS_METADATA_FILENAME);
26 fp = fopen(metadata_path->str, "rb");
0ac40cd4 27 if (!fp) {
0f5c5d5c
SM
28 BT_CPPLOGE_ERRNO_APPEND_CAUSE_SPEC(logger, "Failed to open metadata file", ": path=\"{}\"",
29 metadata_path->str);
0ac40cd4
SM
30 }
31
4164020e 32 g_string_free(metadata_path, TRUE);
0ac40cd4 33
4dd8c9bf 34end:
4164020e 35 return fp;
33f93973
PP
36}
37
b4dec6b2 38static ctf_fs_file::UP get_file(const char *trace_path, const bt2c::Logger& logger)
e98a2d6e 39{
b4dec6b2 40 auto file = ctf_fs_file_create(logger);
e98a2d6e 41
4164020e
SM
42 if (!file) {
43 goto error;
44 }
e98a2d6e 45
4164020e
SM
46 g_string_append(file->path, trace_path);
47 g_string_append(file->path, G_DIR_SEPARATOR_S CTF_FS_METADATA_FILENAME);
e98a2d6e 48
b4dec6b2 49 if (ctf_fs_file_open(file.get(), "rb")) {
4164020e
SM
50 goto error;
51 }
e98a2d6e 52
4164020e 53 goto end;
e98a2d6e
PP
54
55error:
b4dec6b2 56 file.reset();
e98a2d6e
PP
57
58end:
4164020e 59 return file;
e98a2d6e
PP
60}
61
4164020e 62int ctf_fs_metadata_set_trace_class(bt_self_component *self_comp, struct ctf_fs_trace *ctf_fs_trace,
c942e7a2 63 const ctf::src::ClkClsCfg& clkClsCfg)
e98a2d6e 64{
4164020e 65 int ret = 0;
0f5c5d5c 66 ctf_metadata_decoder_config decoder_config {ctf_fs_trace->logger};
4164020e 67
afb0f12b 68 decoder_config.self_comp = self_comp;
c942e7a2 69 decoder_config.clkClsCfg = clkClsCfg;
afb0f12b 70 decoder_config.create_trace_class = true;
4164020e 71
b4dec6b2 72 const auto file = get_file(ctf_fs_trace->path->str, ctf_fs_trace->logger);
4164020e 73 if (!file) {
0f5c5d5c 74 BT_CPPLOGE_SPEC(ctf_fs_trace->logger, "Cannot create metadata file object.");
4164020e
SM
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) {
0f5c5d5c 81 BT_CPPLOGE_SPEC(ctf_fs_trace->logger, "Cannot create metadata decoder object.");
4164020e
SM
82 ret = -1;
83 goto end;
84 }
85
85a25425
SM
86 ret =
87 ctf_metadata_decoder_append_content(ctf_fs_trace->metadata->decoder.get(), file->fp.get());
4164020e 88 if (ret) {
0f5c5d5c 89 BT_CPPLOGE_SPEC(ctf_fs_trace->logger, "Cannot update metadata decoder's content.");
4164020e
SM
90 goto end;
91 }
92
93 ctf_fs_trace->metadata->trace_class =
1fa280c9 94 ctf_metadata_decoder_get_ir_trace_class(ctf_fs_trace->metadata->decoder.get());
4164020e
SM
95 BT_ASSERT(!self_comp || ctf_fs_trace->metadata->trace_class);
96 ctf_fs_trace->metadata->tc =
1fa280c9 97 ctf_metadata_decoder_borrow_ctf_trace_class(ctf_fs_trace->metadata->decoder.get());
4164020e 98 BT_ASSERT(ctf_fs_trace->metadata->tc);
4f1f88a6 99
e98a2d6e 100end:
4164020e 101 return ret;
e98a2d6e
PP
102}
103
ecd7492f 104int ctf_fs_metadata_init(struct ctf_fs_metadata *)
e98a2d6e 105{
4164020e
SM
106 /* Nothing to initialize for the moment. */
107 return 0;
e98a2d6e
PP
108}
109
413bc2c4 110void ctf_fs_metadata_fini(struct ctf_fs_metadata *metadata)
e98a2d6e 111{
4164020e 112 free(metadata->text);
e98a2d6e 113
4164020e
SM
114 if (metadata->trace_class) {
115 BT_TRACE_CLASS_PUT_REF_AND_RESET(metadata->trace_class);
116 }
44c440bc 117
1fa280c9 118 metadata->decoder.reset();
e98a2d6e 119}
This page took 0.126874 seconds and 4 git commands to generate.