Free the callbacks on iter_destroy
[babeltrace.git] / include / babeltrace / ctf / types.h
... / ...
CommitLineData
1#ifndef _BABELTRACE_CTF_TYPES_H
2#define _BABELTRACE_CTF_TYPES_H
3
4/*
5 * Common Trace Format
6 *
7 * Type header
8 *
9 * Copyright 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 */
21
22#include <babeltrace/types.h>
23#include <babeltrace/babeltrace-internal.h>
24#include <sys/types.h>
25#include <sys/stat.h>
26#include <fcntl.h>
27#include <sys/mman.h>
28#include <errno.h>
29#include <stdint.h>
30#include <unistd.h>
31#include <glib.h>
32#include <stdio.h>
33
34struct bt_stream_callbacks;
35
36struct packet_index {
37 off_t offset; /* offset of the packet in the file, in bytes */
38 off_t data_offset; /* offset of data within the packet, in bits */
39 size_t packet_size; /* packet size, in bits */
40 size_t content_size; /* content size, in bits */
41 uint64_t timestamp_begin;
42 uint64_t timestamp_end;
43};
44
45/*
46 * Always update ctf_stream_pos with ctf_move_pos and ctf_init_pos.
47 */
48struct ctf_stream_pos {
49 struct stream_pos parent;
50 int fd; /* backing file fd. -1 if unset. */
51 GArray *packet_index; /* contains struct packet_index */
52 int prot; /* mmap protection */
53 int flags; /* mmap flags */
54
55 /* Current position */
56 off_t mmap_offset; /* mmap offset in the file, in bytes */
57 size_t packet_size; /* current packet size, in bits */
58 size_t content_size; /* current content size, in bits */
59 uint32_t *content_size_loc; /* pointer to current content size */
60 char *base; /* mmap base address */
61 ssize_t offset; /* offset from base, in bits. EOF for end of file. */
62 size_t cur_index; /* current index in packet index */
63
64 int dummy; /* dummy position, for length calculation */
65 struct bt_stream_callbacks *cb; /* Callbacks registered for iterator. */
66};
67
68static inline
69struct ctf_stream_pos *ctf_pos(struct stream_pos *pos)
70{
71 return container_of(pos, struct ctf_stream_pos, parent);
72}
73
74int ctf_integer_read(struct stream_pos *pos, struct definition *definition);
75int ctf_integer_write(struct stream_pos *pos, struct definition *definition);
76int ctf_float_read(struct stream_pos *pos, struct definition *definition);
77int ctf_float_write(struct stream_pos *pos, struct definition *definition);
78int ctf_string_read(struct stream_pos *pos, struct definition *definition);
79int ctf_string_write(struct stream_pos *pos, struct definition *definition);
80int ctf_enum_read(struct stream_pos *pos, struct definition *definition);
81int ctf_enum_write(struct stream_pos *pos, struct definition *definition);
82int ctf_struct_rw(struct stream_pos *pos, struct definition *definition);
83int ctf_variant_rw(struct stream_pos *pos, struct definition *definition);
84int ctf_array_read(struct stream_pos *pos, struct definition *definition);
85int ctf_array_write(struct stream_pos *pos, struct definition *definition);
86int ctf_sequence_read(struct stream_pos *pos, struct definition *definition);
87int ctf_sequence_write(struct stream_pos *pos, struct definition *definition);
88
89void ctf_move_pos_slow(struct ctf_stream_pos *pos, size_t offset, int whence);
90
91void ctf_init_pos(struct ctf_stream_pos *pos, int fd, int open_flags);
92void ctf_fini_pos(struct ctf_stream_pos *pos);
93
94/*
95 * move_pos - move position of a relative bit offset
96 *
97 * TODO: allow larger files by updating base too.
98 */
99static inline
100void ctf_move_pos(struct ctf_stream_pos *pos, size_t bit_offset)
101{
102 printf_debug("ctf_move_pos test EOF: %zd\n", pos->offset);
103 if (unlikely(pos->offset == EOF))
104 return;
105
106 if (pos->fd >= 0) {
107 /*
108 * PROT_READ ctf_move_pos_slow is called from within
109 * ctf_pos_get_event so end of packet does not change
110 * the packet context on for the last event of the
111 * packet.
112 */
113 if ((pos->prot == PROT_WRITE)
114 && (unlikely(pos->offset + bit_offset >= pos->packet_size))) {
115 printf_debug("ctf_move_pos_slow (before call): %zd\n",
116 pos->offset);
117 ctf_move_pos_slow(pos, bit_offset, SEEK_CUR);
118 printf_debug("ctf_move_pos_slow (after call): %zd\n",
119 pos->offset);
120 return;
121 }
122 }
123 pos->offset += bit_offset;
124 printf_debug("ctf_move_pos after increment: %zd\n", pos->offset);
125}
126
127/*
128 * align_pos - align position on a bit offset (> 0)
129 *
130 * TODO: allow larger files by updating base too.
131 */
132static inline
133void ctf_align_pos(struct ctf_stream_pos *pos, size_t bit_offset)
134{
135 ctf_move_pos(pos, offset_align(pos->offset, bit_offset));
136}
137
138static inline
139char *ctf_get_pos_addr(struct ctf_stream_pos *pos)
140{
141 /* Only makes sense to get the address after aligning on CHAR_BIT */
142 assert(!(pos->offset % CHAR_BIT));
143 return pos->base + (pos->offset / CHAR_BIT);
144}
145
146static inline
147void ctf_dummy_pos(struct ctf_stream_pos *pos, struct ctf_stream_pos *dummy)
148{
149 memcpy(dummy, pos, sizeof(struct ctf_stream_pos));
150 dummy->dummy = 1;
151 dummy->fd = -1;
152}
153
154/*
155 * Check if current packet can hold data.
156 * Returns 0 for success, negative error otherwise.
157 */
158static inline
159int ctf_pos_packet(struct ctf_stream_pos *dummy)
160{
161 if (unlikely(dummy->offset > dummy->packet_size))
162 return -ENOSPC;
163 return 0;
164}
165
166static inline
167void ctf_pos_pad_packet(struct ctf_stream_pos *pos)
168{
169 ctf_move_pos(pos, pos->packet_size - pos->offset);
170}
171
172static inline
173int ctf_pos_access_ok(struct ctf_stream_pos *pos, size_t bit_len)
174{
175 if (unlikely(pos->offset == EOF))
176 return 0;
177 if (unlikely(pos->offset + bit_len > pos->packet_size))
178 return 0;
179 return 1;
180}
181
182/*
183 * Update the stream position for to the current event. This moves to
184 * the next packet if we are located at the end of the current packet.
185 */
186static inline
187void ctf_pos_get_event(struct ctf_stream_pos *pos)
188{
189 assert(pos->offset <= pos->content_size);
190 if (pos->offset == pos->content_size) {
191 printf_debug("ctf_move_pos_slow (before call): %zd\n",
192 pos->offset);
193 ctf_move_pos_slow(pos, 0, SEEK_CUR);
194 printf_debug("ctf_move_pos_slow (after call): %zd\n",
195 pos->offset);
196 }
197}
198
199#endif /* _BABELTRACE_CTF_TYPES_H */
This page took 0.023731 seconds and 4 git commands to generate.