plugins/lttng-utils/copy.c: fix uninitialized use warning
[babeltrace.git] / plugins / ctf / fs-src / fs.h
... / ...
CommitLineData
1#ifndef BABELTRACE_PLUGIN_CTF_FS_H
2#define BABELTRACE_PLUGIN_CTF_FS_H
3
4/*
5 * BabelTrace - CTF on File System Component
6 *
7 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
8 * Copyright 2016 Philippe Proulx <pproulx@efficios.com>
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
31#include <stdbool.h>
32#include <babeltrace/babeltrace-internal.h>
33#include <babeltrace/graph/component.h>
34#include <babeltrace/graph/clock-class-priority-map.h>
35#include "data-stream-file.h"
36
37BT_HIDDEN
38extern bool ctf_fs_debug;
39
40struct ctf_fs_file {
41 /* Owned by this */
42 GString *path;
43
44 /* Owned by this */
45 FILE *fp;
46
47 off_t size;
48};
49
50struct ctf_fs_metadata {
51 /* Owned by this */
52 struct bt_ctf_trace *trace;
53
54 /* Owned by this */
55 char *text;
56
57 uint8_t uuid[16];
58 bool is_uuid_set;
59 int bo;
60};
61
62struct ctf_fs_ds_file_info {
63 GString *path;
64 uint64_t begin_ns;
65};
66
67struct ctf_fs_ds_file {
68 /* Owned by this */
69 struct ctf_fs_file *file;
70
71 /* Owned by this */
72 struct bt_ctf_stream *stream;
73
74 /* Owned by this */
75 struct bt_clock_class_priority_map *cc_prio_map;
76
77 /* Owned by this */
78 struct bt_ctf_notif_iter *notif_iter;
79
80 /* A stream is assumed to be indexed. */
81 struct index index;
82 void *mmap_addr;
83 /* Max length of chunk to mmap() when updating the current mapping. */
84 size_t mmap_max_len;
85 /* Length of the current mapping. */
86 size_t mmap_len;
87 /* Length of the current mapping which *exists* in the backing file. */
88 size_t mmap_valid_len;
89 /* Offset in the file where the current mapping starts. */
90 off_t mmap_offset;
91 /*
92 * Offset, in the current mapping, of the address to return on the next
93 * request.
94 */
95 off_t request_offset;
96 bool end_reached;
97};
98
99struct ctf_fs_component_options {
100 int64_t clock_offset;
101 int64_t clock_offset_ns;
102};
103
104struct ctf_fs_component {
105 /* Weak, guaranteed to exist */
106 struct bt_private_component *priv_comp;
107
108 /* Array of struct ctf_fs_port_data *, owned by this */
109 GPtrArray *port_data;
110
111 /* Array of struct ctf_fs_trace *, owned by this */
112 GPtrArray *traces;
113
114 struct ctf_fs_component_options options;
115};
116
117struct ctf_fs_trace {
118 /* Owned by this */
119 struct ctf_fs_metadata *metadata;
120
121 /* Owned by this */
122 struct bt_clock_class_priority_map *cc_prio_map;
123
124 /* Array of struct ctf_fs_ds_file_group *, owned by this */
125 GPtrArray *ds_file_groups;
126
127 /* Owned by this */
128 GString *path;
129
130 /* Owned by this */
131 GString *name;
132};
133
134struct ctf_fs_ds_file_group {
135 /*
136 * Array of struct ctf_fs_ds_file_info, owned by this.
137 *
138 * This is an _ordered_ array of data stream file infos which
139 * belong to this group (a single stream instance).
140 *
141 * You can call ctf_fs_ds_file_create() with one of those paths
142 * and the CTF IR stream below.
143 */
144 GPtrArray *ds_file_infos;
145
146 /* Owned by this */
147 struct bt_ctf_stream *stream;
148
149 /* Weak, belongs to component */
150 struct ctf_fs_trace *ctf_fs_trace;
151};
152
153struct ctf_fs_port_data {
154 /* Weak, belongs to ctf_fs_trace */
155 struct ctf_fs_ds_file_group *ds_file_group;
156};
157
158struct ctf_fs_notif_iter_data {
159 /* Weak, belongs to ctf_fs_trace */
160 struct ctf_fs_ds_file_group *ds_file_group;
161
162 /* Owned by this */
163 struct ctf_fs_ds_file *ds_file;
164
165 /* Which file the iterator is _currently_ operating on */
166 size_t ds_file_info_index;
167};
168
169BT_HIDDEN
170enum bt_component_status ctf_fs_init(struct bt_private_component *source,
171 struct bt_value *params, void *init_method_data);
172
173BT_HIDDEN
174void ctf_fs_finalize(struct bt_private_component *component);
175
176BT_HIDDEN
177enum bt_notification_iterator_status ctf_fs_iterator_init(
178 struct bt_private_notification_iterator *it,
179 struct bt_private_port *port);
180
181BT_HIDDEN
182struct bt_value *ctf_fs_query(struct bt_component_class *comp_class,
183 const char *object, struct bt_value *params);
184
185BT_HIDDEN
186int ctf_fs_find_traces(GList **trace_paths, const char *start_path);
187
188BT_HIDDEN
189GList *ctf_fs_create_trace_names(GList *trace_paths, const char *base_path);
190
191void ctf_fs_iterator_finalize(struct bt_private_notification_iterator *it);
192
193struct bt_notification_iterator_next_return ctf_fs_iterator_next(
194 struct bt_private_notification_iterator *iterator);
195
196#endif /* BABELTRACE_PLUGIN_CTF_FS_H */
This page took 0.024378 seconds and 4 git commands to generate.