Relicense BabelTrace library to MIT (BSD-style)
[babeltrace.git] / include / babeltrace / ctf / types.h
CommitLineData
d79865b9
MD
1#ifndef _BABELTRACE_CTF_TYPES_H
2#define _BABELTRACE_CTF_TYPES_H
6dc2ca62
MD
3
4/*
5 * Common Trace Format
6 *
7 * Type header
8 *
ccd7e1c8 9 * Copyright 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6dc2ca62 10 *
ccd7e1c8
MD
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:
de0ba614 17 *
ccd7e1c8
MD
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
6dc2ca62
MD
20 */
21
22#include <stdint.h>
23#include <glib.h>
24
25/*
de0ba614
MD
26 * IMPORTANT: All lengths (len) and offsets (start, end) are expressed in bits,
27 * *not* in bytes.
28 *
29 * All write primitives, as well as read for dynamically sized entities, can
6dc2ca62
MD
30 * receive a NULL ptr/dest parameter. In this case, no write is performed, but
31 * the size is returned.
32 */
33
bed864a7
MD
34uint64_t ctf_uint_read(struct stream_pos *pos,
35 const struct type_class_integer *int_class);
36int64_t ctf_int_read(struct stream_pos *pos,
37 const struct type_class_integer *int_class);
38void ctf_uint_write(struct stream_pos *pos,
39 const struct type_class_integer *int_class,
40 uint64_t v);
41void ctf_int_write(struct stream_pos *pos,
42 const struct type_class_integer *int_class,
43 int64_t v);
6dc2ca62 44
bed864a7
MD
45double ctf_double_read(struct stream_pos *pos,
46 const struct type_class_float *src);
47void ctf_double_write(struct stream_pos *pos,
48 const struct type_class_float *dest,
49 double v);
50long double ctf_ldouble_read(struct stream_pos *pos,
0a46062b 51 const struct type_class_float *src);
bed864a7
MD
52void ctf_ldouble_write(struct stream_pos *pos,
53 const struct type_class_float *dest,
54 long double v);
55void ctf_float_copy(struct stream_pos *destp, const struct type_class_float *dest,
56 struct stream_pos *srcp, const struct type_class_float *src);
6dc2ca62 57
bed864a7
MD
58void ctf_string_copy(struct stream_pos *dest, struct stream_pos *src,
59 const struct type_class_string *string_class);
a52d7f6a
MD
60void ctf_string_read(unsigned char **dest, struct stream_pos *src,
61 const struct type_class_string *string_class);
62void ctf_string_write(struct stream_pos *dest, const unsigned char *src,
63 const struct type_class_string *string_class);
64void ctf_string_free_temp(unsigned char *string);
6dc2ca62 65
bed864a7
MD
66GQuark ctf_enum_read(struct stream_pos *pos,
67 const struct type_class_enum *src);
68void ctf_enum_write(struct stream_pos *pos,
69 const struct type_class_enum *dest,
70 GQuark q);
11796b96
MD
71void ctf_struct_begin(struct stream_pos *pos,
72 const struct type_class_struct *struct_class);
73void ctf_struct_end(struct stream_pos *pos,
74 const struct type_class_struct *struct_class);
d06d03db
MD
75void ctf_array_begin(struct stream_pos *pos,
76 const struct type_class_array *array_class);
77void ctf_array_end(struct stream_pos *pos,
78 const struct type_class_array *array_class);
79void ctf_sequence_begin(struct stream_pos *pos,
80 const struct type_class_sequence *sequence_class);
81void ctf_sequence_end(struct stream_pos *pos,
82 const struct type_class_sequence *sequence_class);
6dc2ca62 83
d79865b9 84#endif /* _BABELTRACE_CTF_TYPES_H */
This page took 0.026138 seconds and 4 git commands to generate.