Add unused attribute to lttng_to_index_major param
[lttng-tools.git] / src / common / index / ctf-index.h
CommitLineData
309167d2
JD
1/*
2 * Copyright (C) 2013 - Julien Desfossez <jdesfossez@efficios.com>
c404302f 3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
309167d2
JD
4 * David Goulet <dgoulet@efficios.com>
5 *
c404302f
JD
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
309167d2 12 *
c404302f
JD
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
309167d2 15 *
c404302f
JD
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
309167d2
JD
23 */
24
25#ifndef LTTNG_INDEX_H
26#define LTTNG_INDEX_H
27
28#include <limits.h>
29
50adc264
JD
30#define CTF_INDEX_MAGIC 0xC1F1DCC1
31#define CTF_INDEX_MAJOR 1
234cd636 32#define CTF_INDEX_MINOR 1
309167d2
JD
33
34/*
35 * Header at the beginning of each index file.
36 * All integer fields are stored in big endian.
37 */
50adc264
JD
38struct ctf_packet_index_file_hdr {
39 uint32_t magic;
309167d2
JD
40 uint32_t index_major;
41 uint32_t index_minor;
50adc264
JD
42 /* struct packet_index_len, in bytes */
43 uint32_t packet_index_len;
309167d2
JD
44} __attribute__((__packed__));
45
46/*
7591bab1 47 * Packet index generated for each trace packet stored in a trace file.
309167d2
JD
48 * All integer fields are stored in big endian.
49 */
50adc264 50struct ctf_packet_index {
309167d2
JD
51 uint64_t offset; /* offset of the packet in the file, in bytes */
52 uint64_t packet_size; /* packet size, in bits */
53 uint64_t content_size; /* content size, in bits */
54 uint64_t timestamp_begin;
55 uint64_t timestamp_end;
56 uint64_t events_discarded;
234cd636
JD
57 uint64_t stream_id; /* ID of the channel */
58 /* CTF_INDEX 1.0 limit */
59 uint64_t stream_instance_id; /* ID of the channel instance */
60 uint64_t packet_seq_num; /* packet sequence number */
309167d2
JD
61} __attribute__((__packed__));
62
f8f3885c
MD
63static inline size_t ctf_packet_index_len(uint32_t major, uint32_t minor)
64{
65 if (major == 1) {
66 switch (minor) {
67 case 0:
68 return offsetof(struct ctf_packet_index, stream_id)
69 + member_sizeof(struct ctf_packet_index,
70 stream_id);
71 case 1:
72 return offsetof(struct ctf_packet_index, packet_seq_num)
73 + member_sizeof(struct ctf_packet_index,
74 packet_seq_num);
75 default:
76 abort();
77 }
78 }
79 abort();
80}
81
82static inline uint32_t lttng_to_index_major(uint32_t lttng_major,
5e943e75 83 uint32_t lttng_minor __attribute__((unused)))
f8f3885c
MD
84{
85 if (lttng_major == 2) {
86 return 1;
87 }
88 abort();
89}
90
91static inline uint32_t lttng_to_index_minor(uint32_t lttng_major,
92 uint32_t lttng_minor)
93{
94 if (lttng_major == 2) {
95 if (lttng_minor < 8) {
96 return 0;
97 } else {
98 return 1;
99 }
100 }
101 abort();
102}
103
309167d2 104#endif /* LTTNG_INDEX_H */
This page took 0.049273 seconds and 5 git commands to generate.