Fix: ctf_fs debug variable should be extern
[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
JG
31#include <babeltrace/babeltrace-internal.h>
32#include <babeltrace/plugin/component.h>
490db841 33
56a1cced 34#define CTF_FS_COMPONENT_NAME "fs"
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 40
78586d8a
JG
41struct bt_notification_heap;
42
56a1cced
JG
43struct ctf_fs_file {
44 struct ctf_fs_component *ctf_fs;
45 GString *path;
46 FILE *fp;
47 off_t size;
48};
49
50struct ctf_fs_metadata {
51 struct bt_ctf_trace *trace;
52 uint8_t uuid[16];
53 bool is_uuid_set;
54 int bo;
55 char *text;
56};
57
58struct ctf_fs_stream {
59 struct ctf_fs_file *file;
60 struct bt_ctf_stream *stream;
78586d8a 61 /* FIXME There should be many and ctf_fs_stream should not own them. */
56a1cced
JG
62 struct bt_ctf_notif_iter *notif_iter;
63 void *mmap_addr;
fc9a526c
JG
64 /* Max length of chunk to mmap() when updating the current mapping. */
65 size_t mmap_max_len;
66 /* Length of the current mapping. */
56a1cced 67 size_t mmap_len;
fc9a526c
JG
68 /* Length of the current mapping which *exists* in the backing file. */
69 size_t mmap_valid_len;
70 /* Offset in the file where the current mapping starts. */
56a1cced 71 off_t mmap_offset;
fc9a526c
JG
72 /*
73 * Offset, in the current mapping, of the address to return on the next
74 * request.
75 */
56a1cced 76 off_t request_offset;
043e2020 77 bool end_reached;
56a1cced
JG
78};
79
760051fa 80struct ctf_fs_iterator {
78586d8a 81 struct bt_notification_heap *pending_notifications;
5b29e799
JG
82 struct bt_notification *current_notification;
83 /*
84 * struct ctf_fs_data_stream* which have not yet been associated to a
85 * bt_ctf_stream. The association is performed on the first packet
86 * read by the stream (since, at that point, we have read a packet
87 * header).
88 */
89 GPtrArray *pending_streams;
90 /* bt_ctf_stream -> ctf_fs_stream */
91 GHashTable *stream_ht;
760051fa
JG
92};
93
ea0b4b9e
JG
94struct ctf_fs_component_options {
95 bool opt_dummy : 1;
96};
97
98struct ctf_fs_component {
56a1cced
JG
99 GString *trace_path;
100 FILE *error_fp;
101 size_t page_size;
ea0b4b9e 102 struct ctf_fs_component_options options;
5b29e799 103 struct ctf_fs_metadata *metadata;
ea0b4b9e
JG
104};
105
f3bc2010 106BT_HIDDEN
ea0b4b9e 107enum bt_component_status ctf_fs_init(struct bt_component *source,
f3bc2010 108 struct bt_value *params);
490db841 109
541b0a11 110#endif /* BABELTRACE_PLUGIN_CTF_FS_H */
This page took 0.030007 seconds and 4 git commands to generate.