9a0e003a2fa3e5081ca331cad3c533c7223706af
[babeltrace.git] / formats / ctf / ctf.c
1 /*
2 * BabelTrace - Common Trace Format (CTF)
3 *
4 * Format registration.
5 *
6 * Copyright (c) 2010 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23 #include <babeltrace/format.h>
24 #include <babeltrace/ctf/types.h>
25
26 void __attribute__((constructor)) ctf_init(void);
27
28 static const struct format ctf_format = {
29 .uint_read = ctf_uint_read,
30 .int_read = ctf_int_read,
31 .uint_write = ctf_uint_write,
32 .int_write = ctf_int_write,
33 .bitfield_unsigned_read = ctf_bitfield_unsigned_read,
34 .bitfield_signed_read = ctf_bitfield_signed_read,
35 .bitfield_unsigned_write = ctf_bitfield_unsigned_write,
36 .bitfield_signed_write = ctf_bitfield_signed_write,
37 .double_read = ctf_double_read,
38 .double_write = ctf_double_write,
39 .float_copy = ctf_float_copy,
40 .string_copy = ctf_string_copy,
41 .string_read = ctf_string_read,
42 .string_write = ctf_string_write,
43 .string_free_temp = ctf_string_free_temp,
44 .enum_read = ctf_enum_read,
45 .enum_write = ctf_enum_write,
46 };
47
48 void ctf_init(void)
49 {
50 int ret;
51
52 ctf_format->name = g_quark_from_static_string("ctf");
53 ret = bt_register_format(&ctf_format);
54 assert(!ret);
55 }
56
57 /* TODO: finalize */
This page took 0.029781 seconds and 3 git commands to generate.