153c82bd1f7e406770439f24634354211626a72f
[babeltrace.git] / formats / ctf / types / enum.c
1 /*
2 * Common Trace Format
3 *
4 * Enumeration mapping strings (quarks) from/to integers.
5 *
6 * Copyright 2010, 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 */
18
19 #include <babeltrace/ctf/types.h>
20 #include <stdint.h>
21 #include <glib.h>
22
23 void ctf_enum_read(struct stream_pos *ppos, struct definition *definition)
24 {
25 struct definition_enum *enum_definition =
26 container_of(definition, struct definition_enum, p);
27 const struct declaration_enum *enum_declaration =
28 enum_definition->declaration;
29 struct definition_integer *integer_definition =
30 enum_definition->integer;
31 const struct declaration_integer *integer_declaration =
32 integer_definition->declaration;
33 GArray *qs;
34
35 ctf_integer_read(ppos, &integer_definition->p);
36 if (!integer_declaration->signedness)
37 qs = enum_uint_to_quark_set(enum_declaration,
38 integer_definition->value._unsigned);
39 else
40 qs = enum_int_to_quark_set(enum_declaration,
41 integer_definition->value._signed);
42 assert(qs);
43 /* unref previous quark set */
44 if (enum_definition->value)
45 g_array_unref(enum_definition->value);
46 enum_definition->value = qs;
47 }
48
49 void ctf_enum_write(struct stream_pos *pos, struct definition *definition)
50 {
51 struct definition_enum *enum_definition =
52 container_of(definition, struct definition_enum, p);
53 struct definition_integer *integer_definition =
54 enum_definition->integer;
55
56 ctf_integer_write(pos, &integer_definition->p);
57 }
This page took 0.029491 seconds and 3 git commands to generate.