e42890b43a224cdb57701a1cfd02cd014cddf67a
[babeltrace.git] / src / plugins / ctf / fs-src / data-stream-file.h
1 #ifndef CTF_FS_DS_FILE_H
2 #define CTF_FS_DS_FILE_H
3
4 /*
5 * Copyright 2016 - Philippe Proulx <pproulx@efficios.com>
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
26 #include <stdio.h>
27 #include <stdbool.h>
28 #include <glib.h>
29 #include "common/macros.h"
30 #include <babeltrace2/babeltrace.h>
31
32 #include "../common/msg-iter/msg-iter.h"
33 #include "lttng-index.h"
34
35 struct ctf_fs_component;
36 struct ctf_fs_file;
37 struct ctf_fs_trace;
38 struct ctf_fs_ds_file;
39
40 struct ctf_fs_ds_file_info {
41 /* Owned by this. */
42 GString *path;
43
44 /* Guaranteed to be set, as opposed to the index. */
45 int64_t begin_ns;
46 };
47
48 struct ctf_fs_metadata;
49
50 struct ctf_fs_ds_file {
51 bt_logging_level log_level;
52
53 /* Weak */
54 bt_self_component *self_comp;
55
56 /* Weak */
57 bt_self_message_iterator *self_msg_iter;
58
59 /* Weak */
60 struct ctf_fs_metadata *metadata;
61
62 /* Owned by this */
63 struct ctf_fs_file *file;
64
65 /* Owned by this */
66 bt_stream *stream;
67
68 void *mmap_addr;
69
70 /*
71 * Max length of chunk to mmap() when updating the current mapping.
72 * This value must be page-aligned.
73 */
74 size_t mmap_max_len;
75
76 /* Length of the current mapping. Never exceeds the file's length. */
77 size_t mmap_len;
78
79 /* Offset in the file where the current mapping starts. */
80 off_t mmap_offset_in_file;
81
82 /*
83 * Offset, in the current mapping, of the address to return on the next
84 * request.
85 */
86 off_t request_offset_in_mapping;
87 };
88
89 BT_HIDDEN
90 struct ctf_fs_ds_file *ctf_fs_ds_file_create(
91 struct ctf_fs_trace *ctf_fs_trace,
92 bt_self_message_iterator *self_msg_iter,
93 bt_stream *stream, const char *path,
94 bt_logging_level log_level);
95
96 BT_HIDDEN
97 void ctf_fs_ds_file_destroy(struct ctf_fs_ds_file *stream);
98
99 BT_HIDDEN
100 struct ctf_fs_ds_index *ctf_fs_ds_file_build_index(
101 struct ctf_fs_ds_file *ds_file,
102 struct ctf_fs_ds_file_info *ds_file_info,
103 struct ctf_msg_iter *msg_iter);
104
105 BT_HIDDEN
106 struct ctf_fs_ds_index *ctf_fs_ds_index_create(bt_logging_level log_level,
107 bt_self_component *self_comp);
108
109 BT_HIDDEN
110 void ctf_fs_ds_index_destroy(struct ctf_fs_ds_index *index);
111
112 extern struct ctf_msg_iter_medium_ops ctf_fs_ds_file_medops;
113
114 #endif /* CTF_FS_DS_FILE_H */
This page took 0.031075 seconds and 3 git commands to generate.