Rename: type_class, type -> type, declaration
[babeltrace.git] / types / float.c
CommitLineData
0a46062b 1/*
ccd7e1c8 2 * float.c
0a46062b 3 *
ccd7e1c8 4 * BabelTrace - Float Type Converter
0a46062b 5 *
c054553d 6 * Copyright 2010, 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
0a46062b 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:
0a46062b 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.
0a46062b
MD
17 */
18
19#include <babeltrace/compiler.h>
4c8bfb7e 20#include <babeltrace/format.h>
0a46062b 21
c054553d 22static
e19c3d69 23struct declaration *_float_declaration_new(struct type *type,
c054553d
MD
24 struct declaration_scope *parent_scope);
25static
e19c3d69 26void _float_declaration_free(struct declaration *declaration);
c054553d 27
4c8bfb7e
MD
28void float_copy(struct stream_pos *destp,
29 const struct format *fdest,
30 struct stream_pos *srcp,
31 const struct format *fsrc,
e19c3d69 32 struct declaration *declaration)
0a46062b 33{
e19c3d69
MD
34 struct declaration_float *_float =
35 container_of(declaration, struct declaration_float, p);
36 struct type_float *float_type = _float->type;
0a46062b
MD
37
38 if (fsrc->float_copy == fdest->float_copy) {
e19c3d69 39 fsrc->float_copy(destp, srcp, float_type);
0a46062b
MD
40 } else {
41 double v;
42
e19c3d69
MD
43 v = fsrc->double_read(srcp, float_type);
44 fdest->double_write(destp, float_type, v);
0a46062b
MD
45 }
46}
47
c054553d 48static
e19c3d69 49void _float_type_free(struct type *type)
90b676d7 50{
e19c3d69
MD
51 struct type_float *float_type =
52 container_of(type, struct type_float, p);
c054553d 53
e19c3d69
MD
54 type_unref(&float_type->exp->p);
55 type_unref(&float_type->mantissa->p);
56 type_unref(&float_type->sign->p);
57 g_free(float_type);
90b676d7
MD
58}
59
e19c3d69
MD
60struct type_float *
61 float_type_new(const char *name, size_t mantissa_len,
62 size_t exp_len, int byte_order, size_t alignment)
0a46062b 63{
e19c3d69
MD
64 struct type_float *float_type;
65 struct type *type;
0a46062b
MD
66 int ret;
67
e19c3d69
MD
68 float_type = g_new(struct type_float, 1);
69 type = &float_type->p;
70 type->name = g_quark_from_string(name);
71 type->alignment = alignment;
72 type->copy = float_copy;
73 type->type_free = _float_type_free;
74 type->declaration_new = _float_declaration_new;
75 type->declaration_free = _float_declaration_free;
76 type->ref = 1;
77 float_type->byte_order = byte_order;
78
79 float_type->sign = integer_type_new(NULL, 1,
80 byte_order, false, 1);
81 if (!float_type->mantissa)
11d43b90 82 goto error_sign;
e19c3d69
MD
83 float_type->mantissa = integer_type_new(NULL, mantissa_len - 1,
84 byte_order, false, 1);
85 if (!float_type->mantissa)
bed864a7 86 goto error_mantissa;
e19c3d69
MD
87 float_type->exp = integer_type_new(NULL, exp_len,
88 byte_order, true, 1);
89 if (!float_type->exp)
bed864a7
MD
90 goto error_exp;
91
e19c3d69
MD
92 if (float_type->p.name) {
93 ret = register_type(&float_type->p);
bed864a7
MD
94 if (ret)
95 goto error_register;
0a46062b 96 }
e19c3d69 97 return float_type;
bed864a7
MD
98
99error_register:
e19c3d69 100 type_unref(&float_type->exp->p);
bed864a7 101error_exp:
e19c3d69 102 type_unref(&float_type->mantissa->p);
bed864a7 103error_mantissa:
e19c3d69 104 type_unref(&float_type->sign->p);
11d43b90 105error_sign:
e19c3d69 106 g_free(float_type);
bed864a7 107 return NULL;
0a46062b 108}
c054553d
MD
109
110static
e19c3d69
MD
111struct declaration *
112 _float_declaration_new(struct type *type,
113 struct declaration_scope *parent_scope)
c054553d 114{
e19c3d69
MD
115 struct type_float *float_type =
116 container_of(type, struct type_float, p);
117 struct declaration_float *_float;
c054553d 118
e19c3d69
MD
119 _float = g_new(struct declaration_float, 1);
120 type_ref(&_float_type->p);
121 _float->p.type= _float_type;
c054553d
MD
122 _float->p.ref = 1;
123 _float->value = 0.0;
124 return &_float->p;
125}
126
127static
e19c3d69 128void _float_declaration_free(struct declaration *declaration)
c054553d 129{
e19c3d69
MD
130 struct declaration_float *_float =
131 container_of(declaration, struct declaration_float, p);
c054553d 132
e19c3d69 133 type_unref(_float->p.type);
c054553d
MD
134 g_free(_float);
135}
This page took 0.028551 seconds and 4 git commands to generate.