56397dff46d31c351be035119ad14967706b9049
[babeltrace.git] / 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 <babeltrace/babeltrace-internal.h>
30 #include <babeltrace/ctf-ir/trace.h>
31
32 #include "../common/notif-iter/notif-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_index_entry {
41 /* Position, in bytes, of the packet from the beginning of the file. */
42 uint64_t offset;
43
44 /* Size of the packet, in bytes. */
45 uint64_t packet_size;
46
47 /*
48 * Extracted from the packet context, relative to the respective fields'
49 * mapped clock classes (in cycles).
50 */
51 uint64_t timestamp_begin, timestamp_end;
52
53 /*
54 * Converted from the packet context, relative to the trace's EPOCH
55 * (in ns since EPOCH).
56 */
57 int64_t timestamp_begin_ns, timestamp_end_ns;
58 };
59
60 struct ctf_fs_ds_index {
61 /* Array of struct ctf_fs_fd_index_entry. */
62 GArray *entries;
63 };
64
65 struct ctf_fs_ds_file_info {
66 /*
67 * Owned by this. May be NULL.
68 *
69 * A stream cannot be assumed to be indexed as the indexing might have
70 * been skipped. Moreover, the index's fields may not all be available
71 * depending on the producer (e.g. timestamp_begin/end are not
72 * mandatory).
73 *
74 * FIXME In such cases (missing fields), the indexing is aborted as
75 * no the index entries don't have a concept of fields being present
76 * or not.
77 */
78 struct ctf_fs_ds_index *index;
79
80 /* Owned by this. */
81 GString *path;
82
83 /* Guaranteed to be set, as opposed to the index. */
84 uint64_t begin_ns;
85 };
86
87 struct ctf_fs_ds_file {
88 /* Owned by this */
89 struct ctf_fs_file *file;
90
91 /* Owned by this */
92 struct bt_ctf_stream *stream;
93
94 /* Owned by this */
95 struct bt_clock_class_priority_map *cc_prio_map;
96
97 /* Weak */
98 struct bt_ctf_notif_iter *notif_iter;
99
100 void *mmap_addr;
101
102 /*
103 * Max length of chunk to mmap() when updating the current mapping.
104 * This value must be page-aligned.
105 */
106 size_t mmap_max_len;
107
108 /* Length of the current mapping. */
109 size_t mmap_len;
110
111 /* Length of the current mapping which *exists* in the backing file. */
112 size_t mmap_valid_len;
113
114 /* Offset in the file where the current mapping starts. */
115 off_t mmap_offset;
116
117 /*
118 * Offset, in the current mapping, of the address to return on the next
119 * request.
120 */
121 off_t request_offset;
122
123 bool end_reached;
124 };
125
126 BT_HIDDEN
127 struct ctf_fs_ds_file *ctf_fs_ds_file_create(
128 struct ctf_fs_trace *ctf_fs_trace,
129 struct bt_ctf_notif_iter *notif_iter,
130 struct bt_ctf_stream *stream, const char *path);
131
132 BT_HIDDEN
133 int ctf_fs_ds_file_get_packet_header_context_fields(
134 struct ctf_fs_ds_file *ds_file,
135 struct bt_ctf_field **packet_header_field,
136 struct bt_ctf_field **packet_context_field);
137
138 BT_HIDDEN
139 void ctf_fs_ds_file_destroy(struct ctf_fs_ds_file *stream);
140
141 BT_HIDDEN
142 struct bt_notification_iterator_next_return ctf_fs_ds_file_next(
143 struct ctf_fs_ds_file *stream);
144
145 BT_HIDDEN
146 struct ctf_fs_ds_index *ctf_fs_ds_file_build_index(
147 struct ctf_fs_ds_file *ds_file);
148
149 BT_HIDDEN
150 void ctf_fs_ds_index_destroy(struct ctf_fs_ds_index *index);
151
152 extern struct bt_ctf_notif_iter_medium_ops ctf_fs_ds_file_medops;
153
154 #endif /* CTF_FS_DS_FILE_H */
This page took 0.031509 seconds and 3 git commands to generate.