Re-format new C++ files
[babeltrace.git] / src / plugins / ctf / fs-src / data-stream-file.hpp
CommitLineData
e98a2d6e 1/*
0235b0db 2 * SPDX-License-Identifier: MIT
e98a2d6e 3 *
0235b0db 4 * Copyright (C) 2016 Philippe Proulx <pproulx@efficios.com>
e98a2d6e
PP
5 */
6
0235b0db
MJ
7#ifndef CTF_FS_DS_FILE_H
8#define CTF_FS_DS_FILE_H
9
e98a2d6e 10#include <stdio.h>
94cf822e 11#include <stdbool.h>
e98a2d6e 12#include <glib.h>
91d81473 13#include "common/macros.h"
3fadfbc0 14#include <babeltrace2/babeltrace.h>
e98a2d6e 15
087cd0f5
SM
16#include "../common/msg-iter/msg-iter.hpp"
17#include "lttng-index.hpp"
b6c3dcb2
JG
18
19struct ctf_fs_component;
20struct ctf_fs_file;
1a9f7075 21struct ctf_fs_trace;
94cf822e 22struct ctf_fs_ds_file;
f6e68e70
SM
23struct ctf_fs_ds_file_group;
24struct ctf_fs_ds_group_medops_data;
b6c3dcb2 25
4164020e
SM
26struct ctf_fs_ds_file_info
27{
28 /* Owned by this. */
29 GString *path;
97ade20b 30
4164020e
SM
31 /* Guaranteed to be set, as opposed to the index. */
32 int64_t begin_ns;
97ade20b
JG
33};
34
44c440bc
PP
35struct ctf_fs_metadata;
36
4164020e
SM
37struct ctf_fs_ds_file
38{
39 bt_logging_level log_level;
98903a3e 40
4164020e
SM
41 /* Weak */
42 bt_self_component *self_comp;
4c65a157 43
4164020e
SM
44 /* Weak */
45 bt_self_message_iterator *self_msg_iter;
44c440bc 46
4164020e
SM
47 /* Weak */
48 struct ctf_fs_metadata *metadata;
5c563278 49
4164020e
SM
50 /* Owned by this */
51 struct ctf_fs_file *file;
97ade20b 52
4164020e
SM
53 /* Owned by this */
54 bt_stream *stream;
97ade20b 55
4164020e 56 void *mmap_addr;
97ade20b 57
4164020e
SM
58 /*
59 * Max length of chunk to mmap() when updating the current mapping.
60 * This value must be page-aligned.
61 */
62 size_t mmap_max_len;
97ade20b 63
4164020e
SM
64 /* Length of the current mapping. Never exceeds the file's length. */
65 size_t mmap_len;
97ade20b 66
4164020e
SM
67 /* Offset in the file where the current mapping starts. */
68 off_t mmap_offset_in_file;
97ade20b 69
4164020e
SM
70 /*
71 * Offset, in the current mapping, of the address to return on the next
72 * request.
73 */
74 off_t request_offset_in_mapping;
b6c3dcb2 75};
e98a2d6e
PP
76
77BT_HIDDEN
4164020e
SM
78struct ctf_fs_ds_file *ctf_fs_ds_file_create(struct ctf_fs_trace *ctf_fs_trace,
79 bt_self_message_iterator *self_msg_iter,
80 bt_stream *stream, const char *path,
81 bt_logging_level log_level);
e98a2d6e 82
e98a2d6e 83BT_HIDDEN
94cf822e 84void ctf_fs_ds_file_destroy(struct ctf_fs_ds_file *stream);
e98a2d6e 85
97ade20b 86BT_HIDDEN
4164020e
SM
87struct ctf_fs_ds_index *ctf_fs_ds_file_build_index(struct ctf_fs_ds_file *ds_file,
88 struct ctf_fs_ds_file_info *ds_file_info,
89 struct ctf_msg_iter *msg_iter);
97ade20b 90
7ed5243a 91BT_HIDDEN
4c65a157 92struct ctf_fs_ds_index *ctf_fs_ds_index_create(bt_logging_level log_level,
4164020e 93 bt_self_component *self_comp);
7ed5243a 94
97ade20b
JG
95BT_HIDDEN
96void ctf_fs_ds_index_destroy(struct ctf_fs_ds_index *index);
97
f6e68e70
SM
98/*
99 * Medium operations to iterate on a single ctf_fs_ds_file.
100 *
101 * The data pointer when using this must be a pointer to the ctf_fs_ds_file.
102 */
18a1979b 103extern struct ctf_msg_iter_medium_ops ctf_fs_ds_file_medops;
6de92955 104
f6e68e70
SM
105/*
106 * Medium operations to iterate on the packet of a ctf_fs_ds_group.
107 *
108 * The iteration is done based on the index of the group.
109 *
110 * The data pointer when using these medops must be a pointer to a ctf_fs_ds
111 * group_medops_data structure.
112 */
dfcb42a6 113BT_HIDDEN
f6e68e70
SM
114extern struct ctf_msg_iter_medium_ops ctf_fs_ds_group_medops;
115
116BT_HIDDEN
117enum ctf_msg_iter_medium_status ctf_fs_ds_group_medops_data_create(
4164020e
SM
118 struct ctf_fs_ds_file_group *ds_file_group, bt_self_message_iterator *self_msg_iter,
119 bt_logging_level log_level, struct ctf_fs_ds_group_medops_data **out);
f6e68e70
SM
120
121BT_HIDDEN
122void ctf_fs_ds_group_medops_data_reset(struct ctf_fs_ds_group_medops_data *data);
123
124BT_HIDDEN
4164020e 125void ctf_fs_ds_group_medops_data_destroy(struct ctf_fs_ds_group_medops_data *data);
f6e68e70 126
94cf822e 127#endif /* CTF_FS_DS_FILE_H */
This page took 0.08087 seconds and 4 git commands to generate.