source.ctf.fs: remove ctf_fs_debug symbol
[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>
b2e0c907 33#include <babeltrace/graph/component.h>
599faa1c 34#include <babeltrace/graph/clock-class-priority-map.h>
94cf822e 35#include "data-stream-file.h"
97ade20b 36#include "metadata.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 {
1a9f7075 52 /* Owned by this */
56a1cced 53 struct bt_ctf_trace *trace;
1a9f7075
PP
54
55 /* Owned by this */
56 char *text;
57
56a1cced
JG
58 uint8_t uuid[16];
59 bool is_uuid_set;
60 int bo;
56a1cced
JG
61};
62
4f1f88a6 63struct ctf_fs_component_options {
55314f2a
JG
64 int64_t clock_offset;
65 int64_t clock_offset_ns;
760051fa
JG
66};
67
ea0b4b9e 68struct ctf_fs_component {
94cf822e 69 /* Weak, guaranteed to exist */
4f1f88a6 70 struct bt_private_component *priv_comp;
1a9f7075
PP
71
72 /* Array of struct ctf_fs_port_data *, owned by this */
73 GPtrArray *port_data;
74
75 /* Array of struct ctf_fs_trace *, owned by this */
76 GPtrArray *traces;
77
78 struct ctf_fs_component_options options;
1a9f7075
PP
79};
80
81struct ctf_fs_trace {
1a9f7075 82 /* Owned by this */
5b29e799 83 struct ctf_fs_metadata *metadata;
1a9f7075
PP
84
85 /* Owned by this */
599faa1c 86 struct bt_clock_class_priority_map *cc_prio_map;
4f1f88a6 87
94cf822e
PP
88 /* Array of struct ctf_fs_ds_file_group *, owned by this */
89 GPtrArray *ds_file_groups;
90
1a9f7075
PP
91 /* Owned by this */
92 GString *path;
93
94 /* Owned by this */
95 GString *name;
96};
97
94cf822e
PP
98struct ctf_fs_ds_file_group {
99 /*
100 * Array of struct ctf_fs_ds_file_info, owned by this.
101 *
102 * This is an _ordered_ array of data stream file infos which
103 * belong to this group (a single stream instance).
104 *
105 * You can call ctf_fs_ds_file_create() with one of those paths
106 * and the CTF IR stream below.
107 */
108 GPtrArray *ds_file_infos;
109
1a9f7075 110 /* Owned by this */
94cf822e 111 struct bt_ctf_stream *stream;
1a9f7075 112
94cf822e 113 /* Weak, belongs to component */
1a9f7075 114 struct ctf_fs_trace *ctf_fs_trace;
ea0b4b9e
JG
115};
116
94cf822e
PP
117struct ctf_fs_port_data {
118 /* Weak, belongs to ctf_fs_trace */
119 struct ctf_fs_ds_file_group *ds_file_group;
120};
121
122struct ctf_fs_notif_iter_data {
123 /* Weak, belongs to ctf_fs_trace */
124 struct ctf_fs_ds_file_group *ds_file_group;
125
126 /* Owned by this */
127 struct ctf_fs_ds_file *ds_file;
128
129 /* Which file the iterator is _currently_ operating on */
130 size_t ds_file_info_index;
131};
132
f3bc2010 133BT_HIDDEN
890882ef 134enum bt_component_status ctf_fs_init(struct bt_private_component *source,
6358c163 135 struct bt_value *params, void *init_method_data);
490db841 136
d3e4dcd8 137BT_HIDDEN
64cadc66 138void ctf_fs_finalize(struct bt_private_component *component);
d3e4dcd8 139
55314f2a
JG
140BT_HIDDEN
141struct bt_value *ctf_fs_query(struct bt_component_class *comp_class,
142 const char *object, struct bt_value *params);
143
97ade20b
JG
144BT_HIDDEN
145struct ctf_fs_trace *ctf_fs_trace_create(const char *path, const char *name,
146 struct metadata_overrides *overrides);
147
148BT_HIDDEN
149void ctf_fs_trace_destroy(struct ctf_fs_trace *trace);
150
55314f2a
JG
151BT_HIDDEN
152int ctf_fs_find_traces(GList **trace_paths, const char *start_path);
153
154BT_HIDDEN
155GList *ctf_fs_create_trace_names(GList *trace_paths, const char *base_path);
156
97ade20b
JG
157BT_HIDDEN
158enum bt_notification_iterator_status ctf_fs_iterator_init(
159 struct bt_private_notification_iterator *it,
160 struct bt_private_port *port);
161BT_HIDDEN
64cadc66 162void ctf_fs_iterator_finalize(struct bt_private_notification_iterator *it);
d3eb6e8f 163
97ade20b 164BT_HIDDEN
41a2b7ae 165struct bt_notification_iterator_next_return ctf_fs_iterator_next(
890882ef 166 struct bt_private_notification_iterator *iterator);
d3eb6e8f 167
541b0a11 168#endif /* BABELTRACE_PLUGIN_CTF_FS_H */
This page took 0.039001 seconds and 4 git commands to generate.