lib: make public reference count functions have strict types
[babeltrace.git] / plugins / ctf / fs-src / fs.h
CommitLineData
541b0a11
JG
1#ifndef BABELTRACE_PLUGIN_CTF_FS_H
2#define BABELTRACE_PLUGIN_CTF_FS_H
490db841
JG
3
4/*
6a29d9fd 5 * BabelTrace - CTF on File System Component
490db841 6 *
f3bc2010 7 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
56a1cced 8 * Copyright 2016 Philippe Proulx <pproulx@efficios.com>
490db841
JG
9 *
10 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a copy
13 * of this software and associated documentation files (the "Software"), to deal
14 * in the Software without restriction, including without limitation the rights
15 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16 * copies of the Software, and to permit persons to whom the Software is
17 * furnished to do so, subject to the following conditions:
18 *
19 * The above copyright notice and this permission notice shall be included in
20 * all copies or substantial portions of the Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28 * SOFTWARE.
29 */
30
c55a9f58 31#include <stdbool.h>
f3bc2010 32#include <babeltrace/babeltrace-internal.h>
9d408fca 33#include <babeltrace/babeltrace.h>
94cf822e 34#include "data-stream-file.h"
97ade20b 35#include "metadata.h"
44c440bc 36#include "../common/metadata/decoder.h"
490db841 37
78bb6992
MD
38BT_HIDDEN
39extern bool ctf_fs_debug;
56a1cced
JG
40
41struct ctf_fs_file {
1a9f7075 42 /* Owned by this */
56a1cced 43 GString *path;
1a9f7075
PP
44
45 /* Owned by this */
56a1cced 46 FILE *fp;
1a9f7075 47
56a1cced
JG
48 off_t size;
49};
50
51struct ctf_fs_metadata {
44c440bc
PP
52 /* Owned by this */
53 struct ctf_metadata_decoder *decoder;
54
1a9f7075 55 /* Owned by this */
862ca4ed 56 struct bt_trace_class *trace_class;
1a9f7075 57
44c440bc
PP
58 /* Weak (owned by `decoder` above) */
59 struct ctf_trace_class *tc;
60
61 /* Owned by this */
62
1a9f7075
PP
63 /* Owned by this */
64 char *text;
65
56a1cced
JG
66 uint8_t uuid[16];
67 bool is_uuid_set;
68 int bo;
56a1cced
JG
69};
70
ea0b4b9e 71struct ctf_fs_component {
94cf822e 72 /* Weak, guaranteed to exist */
d94d92ac 73 struct bt_self_component_source *self_comp;
1a9f7075
PP
74
75 /* Array of struct ctf_fs_port_data *, owned by this */
76 GPtrArray *port_data;
77
78 /* Array of struct ctf_fs_trace *, owned by this */
79 GPtrArray *traces;
80
a2a54545 81 struct ctf_fs_metadata_config metadata_config;
1a9f7075
PP
82};
83
84struct ctf_fs_trace {
1a9f7075 85 /* Owned by this */
5b29e799 86 struct ctf_fs_metadata *metadata;
1a9f7075 87
862ca4ed
PP
88 /* Owned by this */
89 struct bt_trace *trace;
90
94cf822e
PP
91 /* Array of struct ctf_fs_ds_file_group *, owned by this */
92 GPtrArray *ds_file_groups;
93
1a9f7075
PP
94 /* Owned by this */
95 GString *path;
96
97 /* Owned by this */
98 GString *name;
3dca2276
PP
99
100 /* Next automatic stream ID when not provided by packet header */
101 uint64_t next_stream_id;
1a9f7075
PP
102};
103
94cf822e
PP
104struct ctf_fs_ds_file_group {
105 /*
106 * Array of struct ctf_fs_ds_file_info, owned by this.
107 *
108 * This is an _ordered_ array of data stream file infos which
109 * belong to this group (a single stream instance).
110 *
111 * You can call ctf_fs_ds_file_create() with one of those paths
56e18c4c 112 * and the trace IR stream below.
94cf822e
PP
113 */
114 GPtrArray *ds_file_infos;
115
547eacf1 116 /* Owned by this */
40f4ba76 117 struct bt_stream_class *stream_class;
547eacf1 118
1a9f7075 119 /* Owned by this */
40f4ba76 120 struct bt_stream *stream;
1a9f7075 121
547eacf1
PP
122 /* Stream (instance) ID; -1ULL means none */
123 uint64_t stream_id;
124
94cf822e 125 /* Weak, belongs to component */
1a9f7075 126 struct ctf_fs_trace *ctf_fs_trace;
ea0b4b9e
JG
127};
128
94cf822e
PP
129struct ctf_fs_port_data {
130 /* Weak, belongs to ctf_fs_trace */
131 struct ctf_fs_ds_file_group *ds_file_group;
5c563278
PP
132
133 /* Weak */
134 struct ctf_fs_component *ctf_fs;
94cf822e
PP
135};
136
137struct ctf_fs_notif_iter_data {
5c563278 138 /* Weak */
d94d92ac 139 struct bt_self_notification_iterator *pc_notif_iter;
5c563278 140
94cf822e
PP
141 /* Weak, belongs to ctf_fs_trace */
142 struct ctf_fs_ds_file_group *ds_file_group;
143
144 /* Owned by this */
145 struct ctf_fs_ds_file *ds_file;
146
147 /* Which file the iterator is _currently_ operating on */
148 size_t ds_file_info_index;
6de92955
PP
149
150 /* Owned by this */
50842bdc 151 struct bt_notif_iter *notif_iter;
f42867e2 152
bb5bb160 153 /* True to skip BT_NOTIFICATION_TYPE_STREAM_BEGINNING notifications */
f42867e2 154 bool skip_stream_begin_notifs;
94cf822e
PP
155};
156
f3bc2010 157BT_HIDDEN
d94d92ac
PP
158enum bt_self_component_status ctf_fs_init(
159 struct bt_self_component_source *source,
05e21286 160 const struct bt_value *params, void *init_method_data);
490db841 161
d3e4dcd8 162BT_HIDDEN
d94d92ac 163void ctf_fs_finalize(struct bt_self_component_source *component);
d3e4dcd8 164
55314f2a 165BT_HIDDEN
d94d92ac
PP
166enum bt_query_status ctf_fs_query(
167 struct bt_self_component_class_source *comp_class,
0d72b8c3 168 const struct bt_query_executor *query_exec,
05e21286
PP
169 const char *object, const struct bt_value *params,
170 const struct bt_value **result);
55314f2a 171
97ade20b
JG
172BT_HIDDEN
173struct ctf_fs_trace *ctf_fs_trace_create(const char *path, const char *name,
e5be10ef 174 struct ctf_fs_metadata_config *config);
97ade20b
JG
175
176BT_HIDDEN
177void ctf_fs_trace_destroy(struct ctf_fs_trace *trace);
178
55314f2a
JG
179BT_HIDDEN
180int ctf_fs_find_traces(GList **trace_paths, const char *start_path);
181
182BT_HIDDEN
183GList *ctf_fs_create_trace_names(GList *trace_paths, const char *base_path);
184
97ade20b 185BT_HIDDEN
d94d92ac
PP
186enum bt_self_notification_iterator_status ctf_fs_iterator_init(
187 struct bt_self_notification_iterator *self_notif_iter,
188 struct bt_self_component_source *self_comp,
189 struct bt_self_component_port_output *self_port);
190
97ade20b 191BT_HIDDEN
d94d92ac 192void ctf_fs_iterator_finalize(struct bt_self_notification_iterator *it);
d3eb6e8f 193
97ade20b 194BT_HIDDEN
d94d92ac
PP
195enum bt_self_notification_iterator_status ctf_fs_iterator_next(
196 struct bt_self_notification_iterator *iterator,
0d72b8c3 197 bt_notification_array_const notifs, uint64_t capacity,
d4393e08 198 uint64_t *count);
d3eb6e8f 199
541b0a11 200#endif /* BABELTRACE_PLUGIN_CTF_FS_H */
This page took 0.048566 seconds and 4 git commands to generate.