lib: strictly type function return status enumerations
[babeltrace.git] / src / plugins / ctf / fs-src / data-stream-file.h
CommitLineData
94cf822e
PP
1#ifndef CTF_FS_DS_FILE_H
2#define CTF_FS_DS_FILE_H
e98a2d6e
PP
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>
94cf822e 27#include <stdbool.h>
e98a2d6e 28#include <glib.h>
91d81473 29#include "common/macros.h"
3fadfbc0 30#include <babeltrace2/babeltrace.h>
e98a2d6e 31
d6e69534 32#include "../common/msg-iter/msg-iter.h"
b6c3dcb2
JG
33#include "lttng-index.h"
34
35struct ctf_fs_component;
36struct ctf_fs_file;
1a9f7075 37struct ctf_fs_trace;
94cf822e 38struct ctf_fs_ds_file;
b6c3dcb2 39
97ade20b 40struct ctf_fs_ds_file_info {
97ade20b
JG
41 /* Owned by this. */
42 GString *path;
43
44 /* Guaranteed to be set, as opposed to the index. */
44c440bc 45 int64_t begin_ns;
97ade20b
JG
46};
47
44c440bc
PP
48struct ctf_fs_metadata;
49
97ade20b 50struct ctf_fs_ds_file {
98903a3e
PP
51 bt_logging_level log_level;
52
4c65a157
PP
53 /* Weak */
54 bt_self_component *self_comp;
55
44c440bc
PP
56 /* Weak */
57 struct ctf_fs_metadata *metadata;
58
5c563278 59 /* Weak */
d6e69534 60 bt_self_message_iterator *pc_msg_iter;
5c563278 61
97ade20b
JG
62 /* Owned by this */
63 struct ctf_fs_file *file;
64
65 /* Owned by this */
b19ff26f 66 bt_stream *stream;
97ade20b 67
6de92955 68 /* Weak */
d6e69534 69 struct bt_msg_iter *msg_iter;
97ade20b
JG
70
71 void *mmap_addr;
72
2f5a009b
JG
73 /*
74 * Max length of chunk to mmap() when updating the current mapping.
75 * This value must be page-aligned.
76 */
97ade20b
JG
77 size_t mmap_max_len;
78
2c701ca6 79 /* Length of the current mapping. Never exceeds the file's length. */
97ade20b
JG
80 size_t mmap_len;
81
97ade20b
JG
82 /* Offset in the file where the current mapping starts. */
83 off_t mmap_offset;
84
85 /*
86 * Offset, in the current mapping, of the address to return on the next
87 * request.
88 */
89 off_t request_offset;
90
91 bool end_reached;
b6c3dcb2 92};
e98a2d6e
PP
93
94BT_HIDDEN
94cf822e
PP
95struct ctf_fs_ds_file *ctf_fs_ds_file_create(
96 struct ctf_fs_trace *ctf_fs_trace,
d6e69534
PP
97 bt_self_message_iterator *pc_msg_iter,
98 struct bt_msg_iter *msg_iter,
98903a3e
PP
99 bt_stream *stream, const char *path,
100 bt_logging_level log_level);
e98a2d6e 101
e98a2d6e 102BT_HIDDEN
94cf822e 103void ctf_fs_ds_file_destroy(struct ctf_fs_ds_file *stream);
e98a2d6e 104
4f1f88a6 105BT_HIDDEN
d24d5663 106bt_component_class_message_iterator_next_method_status ctf_fs_ds_file_next(
d4393e08 107 struct ctf_fs_ds_file *ds_file,
d6e69534 108 bt_message **msg);
4f1f88a6 109
97ade20b
JG
110BT_HIDDEN
111struct ctf_fs_ds_index *ctf_fs_ds_file_build_index(
112 struct ctf_fs_ds_file *ds_file);
113
7ed5243a 114BT_HIDDEN
4c65a157
PP
115struct ctf_fs_ds_index *ctf_fs_ds_index_create(bt_logging_level log_level,
116 bt_self_component *self_comp);
7ed5243a 117
97ade20b
JG
118BT_HIDDEN
119void ctf_fs_ds_index_destroy(struct ctf_fs_ds_index *index);
120
d6e69534 121extern struct bt_msg_iter_medium_ops ctf_fs_ds_file_medops;
6de92955 122
94cf822e 123#endif /* CTF_FS_DS_FILE_H */
This page took 0.049674 seconds and 4 git commands to generate.