Restructure objects around generic_rw() accessor
[babeltrace.git] / formats / ctf / types / enum.c
CommitLineData
6dc2ca62
MD
1/*
2 * Common Trace Format
3 *
4 * Enumeration mapping strings (quarks) from/to integers.
5 *
c054553d 6 * Copyright 2010, 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6dc2ca62 7 *
ccd7e1c8
MD
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:
de0ba614 14 *
ccd7e1c8
MD
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
6dc2ca62
MD
17 */
18
d79865b9 19#include <babeltrace/ctf/types.h>
6dc2ca62
MD
20#include <stdint.h>
21#include <glib.h>
22
d11e9c49 23void ctf_enum_read(struct stream_pos *ppos, struct definition *definition)
448d3cc7 24{
d11e9c49
MD
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;
448d3cc7
MD
47}
48
d11e9c49 49void ctf_enum_write(struct stream_pos *pos, struct definition *definition)
448d3cc7 50{
d11e9c49
MD
51 struct definition_enum *enum_definition =
52 container_of(definition, struct definition_enum, p);
53 struct definition_integer *integer_definition =
54 enum_definition->integer;
448d3cc7 55
d11e9c49 56 ctf_integer_write(pos, &integer_definition->p);
6dc2ca62 57}
This page took 0.024878 seconds and 4 git commands to generate.