assert-pre-internal.h: add BT_ASSERT_PRE_VALID_INDEX()
[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"
490db841 36
78bb6992
MD
37BT_HIDDEN
38extern bool ctf_fs_debug;
56a1cced
JG
39
40struct ctf_fs_file {
1a9f7075 41 /* Owned by this */
56a1cced 42 GString *path;
1a9f7075
PP
43
44 /* Owned by this */
56a1cced 45 FILE *fp;
1a9f7075 46
56a1cced
JG
47 off_t size;
48};
49
50struct ctf_fs_metadata {
1a9f7075 51 /* Owned by this */
50842bdc 52 struct bt_trace *trace;
1a9f7075
PP
53
54 /* Owned by this */
55 char *text;
56
56a1cced
JG
57 uint8_t uuid[16];
58 bool is_uuid_set;
59 int bo;
56a1cced
JG
60};
61
ea0b4b9e 62struct ctf_fs_component {
94cf822e 63 /* Weak, guaranteed to exist */
4f1f88a6 64 struct bt_private_component *priv_comp;
1a9f7075
PP
65
66 /* Array of struct ctf_fs_port_data *, owned by this */
67 GPtrArray *port_data;
68
69 /* Array of struct ctf_fs_trace *, owned by this */
70 GPtrArray *traces;
71
a2a54545 72 struct ctf_fs_metadata_config metadata_config;
1a9f7075
PP
73};
74
75struct ctf_fs_trace {
1a9f7075 76 /* Owned by this */
5b29e799 77 struct ctf_fs_metadata *metadata;
1a9f7075
PP
78
79 /* Owned by this */
599faa1c 80 struct bt_clock_class_priority_map *cc_prio_map;
4f1f88a6 81
94cf822e
PP
82 /* Array of struct ctf_fs_ds_file_group *, owned by this */
83 GPtrArray *ds_file_groups;
84
1a9f7075
PP
85 /* Owned by this */
86 GString *path;
87
88 /* Owned by this */
89 GString *name;
3dca2276
PP
90
91 /* Next automatic stream ID when not provided by packet header */
92 uint64_t next_stream_id;
1a9f7075
PP
93};
94
94cf822e
PP
95struct ctf_fs_ds_file_group {
96 /*
97 * Array of struct ctf_fs_ds_file_info, owned by this.
98 *
99 * This is an _ordered_ array of data stream file infos which
100 * belong to this group (a single stream instance).
101 *
102 * You can call ctf_fs_ds_file_create() with one of those paths
103 * and the CTF IR stream below.
104 */
105 GPtrArray *ds_file_infos;
106
547eacf1 107 /* Owned by this */
50842bdc 108 struct bt_stream_class *stream_class;
547eacf1 109
1a9f7075 110 /* Owned by this */
50842bdc 111 struct bt_stream *stream;
1a9f7075 112
547eacf1
PP
113 /* Stream (instance) ID; -1ULL means none */
114 uint64_t stream_id;
115
94cf822e 116 /* Weak, belongs to component */
1a9f7075 117 struct ctf_fs_trace *ctf_fs_trace;
ea0b4b9e
JG
118};
119
94cf822e
PP
120struct ctf_fs_port_data {
121 /* Weak, belongs to ctf_fs_trace */
122 struct ctf_fs_ds_file_group *ds_file_group;
5c563278
PP
123
124 /* Weak */
125 struct ctf_fs_component *ctf_fs;
94cf822e
PP
126};
127
128struct ctf_fs_notif_iter_data {
5c563278 129 /* Weak */
f0010051 130 struct bt_private_connection_private_notification_iterator *pc_notif_iter;
5c563278 131
94cf822e
PP
132 /* Weak, belongs to ctf_fs_trace */
133 struct ctf_fs_ds_file_group *ds_file_group;
134
135 /* Owned by this */
136 struct ctf_fs_ds_file *ds_file;
137
138 /* Which file the iterator is _currently_ operating on */
139 size_t ds_file_info_index;
6de92955
PP
140
141 /* Owned by this */
50842bdc 142 struct bt_notif_iter *notif_iter;
f42867e2
PP
143
144 /* True to skip BT_NOTIFICATION_TYPE_STREAM_BEGIN notifications */
145 bool skip_stream_begin_notifs;
94cf822e
PP
146};
147
f3bc2010 148BT_HIDDEN
890882ef 149enum bt_component_status ctf_fs_init(struct bt_private_component *source,
6358c163 150 struct bt_value *params, void *init_method_data);
490db841 151
d3e4dcd8 152BT_HIDDEN
64cadc66 153void ctf_fs_finalize(struct bt_private_component *component);
d3e4dcd8 154
55314f2a 155BT_HIDDEN
90157d89 156struct bt_component_class_query_method_return ctf_fs_query(
c7eee084
PP
157 struct bt_component_class *comp_class,
158 struct bt_query_executor *query_exec,
55314f2a
JG
159 const char *object, struct bt_value *params);
160
97ade20b
JG
161BT_HIDDEN
162struct ctf_fs_trace *ctf_fs_trace_create(const char *path, const char *name,
5c563278 163 struct ctf_fs_metadata_config *config, struct bt_graph *graph);
97ade20b
JG
164
165BT_HIDDEN
166void ctf_fs_trace_destroy(struct ctf_fs_trace *trace);
167
55314f2a
JG
168BT_HIDDEN
169int ctf_fs_find_traces(GList **trace_paths, const char *start_path);
170
171BT_HIDDEN
172GList *ctf_fs_create_trace_names(GList *trace_paths, const char *base_path);
173
97ade20b
JG
174BT_HIDDEN
175enum bt_notification_iterator_status ctf_fs_iterator_init(
90157d89 176 struct bt_private_connection_private_notification_iterator *it,
97ade20b
JG
177 struct bt_private_port *port);
178BT_HIDDEN
90157d89 179void ctf_fs_iterator_finalize(struct bt_private_connection_private_notification_iterator *it);
d3eb6e8f 180
97ade20b 181BT_HIDDEN
d4393e08
PP
182enum bt_notification_iterator_status ctf_fs_iterator_next(
183 struct bt_private_connection_private_notification_iterator *iterator,
184 bt_notification_array notifs, uint64_t capacity,
185 uint64_t *count);
d3eb6e8f 186
541b0a11 187#endif /* BABELTRACE_PLUGIN_CTF_FS_H */
This page took 0.045915 seconds and 4 git commands to generate.