ctf.fs: split streams, one per port
[babeltrace.git] / plugins / ctf / fs / 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
f3bc2010 31#include <babeltrace/babeltrace-internal.h>
b2e0c907 32#include <babeltrace/graph/component.h>
b6c3dcb2 33#include "data-stream.h"
490db841 34
ea0b4b9e 35#define CTF_FS_COMPONENT_DESCRIPTION \
6a29d9fd 36 "Component used to read a CTF trace located on a file system."
490db841 37
78bb6992
MD
38BT_HIDDEN
39extern bool ctf_fs_debug;
56a1cced
JG
40
41struct ctf_fs_file {
42 struct ctf_fs_component *ctf_fs;
43 GString *path;
44 FILE *fp;
45 off_t size;
46};
47
48struct ctf_fs_metadata {
49 struct bt_ctf_trace *trace;
50 uint8_t uuid[16];
51 bool is_uuid_set;
52 int bo;
53 char *text;
54};
55
56struct ctf_fs_stream {
57 struct ctf_fs_file *file;
58 struct bt_ctf_stream *stream;
59 struct bt_ctf_notif_iter *notif_iter;
b6c3dcb2
JG
60 /* A stream is assumed to be indexed. */
61 struct index index;
56a1cced 62 void *mmap_addr;
fc9a526c
JG
63 /* Max length of chunk to mmap() when updating the current mapping. */
64 size_t mmap_max_len;
65 /* Length of the current mapping. */
56a1cced 66 size_t mmap_len;
fc9a526c
JG
67 /* Length of the current mapping which *exists* in the backing file. */
68 size_t mmap_valid_len;
69 /* Offset in the file where the current mapping starts. */
56a1cced 70 off_t mmap_offset;
fc9a526c
JG
71 /*
72 * Offset, in the current mapping, of the address to return on the next
73 * request.
74 */
56a1cced 75 off_t request_offset;
043e2020 76 bool end_reached;
56a1cced
JG
77};
78
4f1f88a6 79struct ctf_fs_component_options {
760051fa
JG
80};
81
4f1f88a6
PP
82struct ctf_fs_port_data {
83 GString *path;
ea0b4b9e
JG
84};
85
86struct ctf_fs_component {
4f1f88a6 87 struct bt_private_component *priv_comp;
56a1cced
JG
88 GString *trace_path;
89 FILE *error_fp;
90 size_t page_size;
ea0b4b9e 91 struct ctf_fs_component_options options;
5b29e799 92 struct ctf_fs_metadata *metadata;
4f1f88a6
PP
93
94 /* Array of struct ctf_fs_port_data *, owned by this */
95 GPtrArray *port_data;
ea0b4b9e
JG
96};
97
f3bc2010 98BT_HIDDEN
890882ef 99enum bt_component_status ctf_fs_init(struct bt_private_component *source,
6358c163 100 struct bt_value *params, void *init_method_data);
490db841 101
d3e4dcd8 102BT_HIDDEN
64cadc66 103void ctf_fs_finalize(struct bt_private_component *component);
d3e4dcd8
PP
104
105BT_HIDDEN
d3eb6e8f 106enum bt_notification_iterator_status ctf_fs_iterator_init(
91457551
PP
107 struct bt_private_notification_iterator *it,
108 struct bt_private_port *port);
d3e4dcd8 109
64cadc66 110void ctf_fs_iterator_finalize(struct bt_private_notification_iterator *it);
d3eb6e8f 111
41a2b7ae 112struct bt_notification_iterator_next_return ctf_fs_iterator_next(
890882ef 113 struct bt_private_notification_iterator *iterator);
d3eb6e8f 114
33f93973 115BT_HIDDEN
a67681c1
PP
116struct bt_value *ctf_fs_query(struct bt_component_class *comp_class,
117 const char *object, struct bt_value *params);
33f93973 118
541b0a11 119#endif /* BABELTRACE_PLUGIN_CTF_FS_H */
This page took 0.033448 seconds and 4 git commands to generate.