ctf plugin: add bt_ctf_notif_iter_get_packet_header_context_fields()
[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>
b6c3dcb2 35#include "data-stream.h"
490db841 36
78bb6992
MD
37BT_HIDDEN
38extern bool ctf_fs_debug;
56a1cced
JG
39
40struct ctf_fs_file {
1a9f7075 41 /* Weak */
56a1cced 42 struct ctf_fs_component *ctf_fs;
1a9f7075
PP
43
44 /* Owned by this */
56a1cced 45 GString *path;
1a9f7075
PP
46
47 /* Owned by this */
56a1cced 48 FILE *fp;
1a9f7075 49
56a1cced
JG
50 off_t size;
51};
52
53struct ctf_fs_metadata {
1a9f7075 54 /* Owned by this */
56a1cced 55 struct bt_ctf_trace *trace;
1a9f7075
PP
56
57 /* Owned by this */
58 char *text;
59
56a1cced
JG
60 uint8_t uuid[16];
61 bool is_uuid_set;
62 int bo;
56a1cced
JG
63};
64
65struct ctf_fs_stream {
1a9f7075 66 /* Owned by this */
56a1cced 67 struct ctf_fs_file *file;
1a9f7075
PP
68
69 /* Owned by this */
56a1cced 70 struct bt_ctf_stream *stream;
1a9f7075
PP
71
72 /* Owned by this */
0982a26d 73 struct bt_clock_class_priority_map *cc_prio_map;
1a9f7075
PP
74
75 /* Owned by this */
56a1cced 76 struct bt_ctf_notif_iter *notif_iter;
1a9f7075 77
b6c3dcb2
JG
78 /* A stream is assumed to be indexed. */
79 struct index index;
56a1cced 80 void *mmap_addr;
fc9a526c
JG
81 /* Max length of chunk to mmap() when updating the current mapping. */
82 size_t mmap_max_len;
83 /* Length of the current mapping. */
56a1cced 84 size_t mmap_len;
fc9a526c
JG
85 /* Length of the current mapping which *exists* in the backing file. */
86 size_t mmap_valid_len;
87 /* Offset in the file where the current mapping starts. */
56a1cced 88 off_t mmap_offset;
fc9a526c
JG
89 /*
90 * Offset, in the current mapping, of the address to return on the next
91 * request.
92 */
56a1cced 93 off_t request_offset;
043e2020 94 bool end_reached;
56a1cced
JG
95};
96
4f1f88a6 97struct ctf_fs_component_options {
92540773
JD
98 uint64_t clock_offset;
99 uint64_t clock_offset_ns;
760051fa
JG
100};
101
ea0b4b9e 102struct ctf_fs_component {
1a9f7075 103 /* Weak */
4f1f88a6 104 struct bt_private_component *priv_comp;
1a9f7075
PP
105
106 /* Array of struct ctf_fs_port_data *, owned by this */
107 GPtrArray *port_data;
108
109 /* Array of struct ctf_fs_trace *, owned by this */
110 GPtrArray *traces;
111
112 struct ctf_fs_component_options options;
56a1cced
JG
113 FILE *error_fp;
114 size_t page_size;
1a9f7075
PP
115};
116
117struct ctf_fs_trace {
118 /* Weak */
119 struct ctf_fs_component *ctf_fs;
120
121 /* Owned by this */
5b29e799 122 struct ctf_fs_metadata *metadata;
1a9f7075
PP
123
124 /* Owned by this */
599faa1c 125 struct bt_clock_class_priority_map *cc_prio_map;
4f1f88a6 126
1a9f7075
PP
127 /* Owned by this */
128 GString *path;
129
130 /* Owned by this */
131 GString *name;
132};
133
134struct ctf_fs_port_data {
135 /* Owned by this */
136 GString *path;
137
138 /* Weak */
139 struct ctf_fs_trace *ctf_fs_trace;
ea0b4b9e
JG
140};
141
f3bc2010 142BT_HIDDEN
890882ef 143enum bt_component_status ctf_fs_init(struct bt_private_component *source,
6358c163 144 struct bt_value *params, void *init_method_data);
490db841 145
d3e4dcd8 146BT_HIDDEN
64cadc66 147void ctf_fs_finalize(struct bt_private_component *component);
d3e4dcd8
PP
148
149BT_HIDDEN
d3eb6e8f 150enum bt_notification_iterator_status ctf_fs_iterator_init(
91457551
PP
151 struct bt_private_notification_iterator *it,
152 struct bt_private_port *port);
d3e4dcd8 153
64cadc66 154void ctf_fs_iterator_finalize(struct bt_private_notification_iterator *it);
d3eb6e8f 155
41a2b7ae 156struct bt_notification_iterator_next_return ctf_fs_iterator_next(
890882ef 157 struct bt_private_notification_iterator *iterator);
d3eb6e8f 158
33f93973 159BT_HIDDEN
a67681c1
PP
160struct bt_value *ctf_fs_query(struct bt_component_class *comp_class,
161 const char *object, struct bt_value *params);
33f93973 162
541b0a11 163#endif /* BABELTRACE_PLUGIN_CTF_FS_H */
This page took 0.03675 seconds and 4 git commands to generate.