Branch data Line data Source code
1 : : /**
2 : : * \file
3 : : * The selector implementations for the class interface.
4 : : *
5 : : * \author Georg Hopp
6 : : *
7 : : * \copyright
8 : : * Copyright © 2014 Georg Hopp
9 : : *
10 : : * This program is free software: you can redistribute it and/or modify
11 : : * it under the terms of the GNU General Public License as published by
12 : : * the Free Software Foundation, either version 3 of the License, or
13 : : * (at your option) any later version.
14 : : *
15 : : * This program is distributed in the hope that it will be useful,
16 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 : : * GNU General Public License for more details.
19 : : *
20 : : * You should have received a copy of the GNU General Public License
21 : : * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 : : */
23 : :
24 : : #include <stdarg.h>
25 : : #include <stdlib.h>
26 : : #include <assert.h>
27 : :
28 : : #include "tr/class.h"
29 : : #include "tr/interface/class.h"
30 : :
31 : : #include "tr/memory.h"
32 : :
33 : :
34 : : /**
35 : : * Create and initialize the structures for a new interface called
36 : : * class.
37 : : * Interfaces and Classes may have the same name because internally
38 : : * everything that has to do with interfaces is prefixed with an i_
39 : : */
40 : : TR_CREATE_INTERFACE(TR_Class, 3);
41 : :
42 : : /*
43 : : * SELECTOR DEFINITION
44 : : * ===================
45 : : */
46 : :
47 : : /**
48 : : * Selector for the ctor implementation. This one accepts a va_list.
49 : : *
50 : : * \cond PRIVATE
51 : : */
52 : : void *
53 : 4 : TR_classNewv(TR_class_ptr class, va_list * params)
54 : : {
55 : 4 : void * object = TR_calloc(1, class->object_size + sizeof(void*));
56 : : int ret;
57 : :
58 : 4 : * (TR_class_ptr *)object = class;
59 : 4 : object += sizeof(void*);
60 : :
61 : 4 : TR_RETCALL(object, TR_Class, ctor, ret, params);
62 : :
63 : 4 : if (-1 == ret) {
64 : 1 : TR_classDelete(&object);
65 : : }
66 : :
67 : 4 : return object;
68 : : }
69 : :
70 : : /**
71 : : * Selector for the ctor implementation. This one accepts a variable
72 : : * amount of arguments.
73 : : */
74 : : void *
75 : 4 : TR_classNew(TR_class_ptr class, ...)
76 : : {
77 : : va_list params;
78 : : void * object;
79 : :
80 : 4 : va_start(params, class);
81 : 4 : object = TR_classNewv(class, ¶ms);
82 : 4 : va_end(params);
83 : :
84 : 4 : return object;
85 : : }
86 : :
87 : : /**
88 : : * Selector for the dtor implementation. This one accepts a variable
89 : : * amount of arguments.
90 : : */
91 : : void
92 : 5 : TR_classDelete(void ** object)
93 : : {
94 : 5 : if (NULL != *object) {
95 : : void * mem;
96 : :
97 : 5 : TR_CALL(*object, TR_Class, dtor);
98 : :
99 : 5 : mem = *object - sizeof(void*);
100 : 5 : TR_MEM_FREE(mem);
101 : 5 : *object = NULL;
102 : : }
103 : 5 : }
104 : :
105 : : /**
106 : : * Selector for the clone implementation. This one accepts a variable
107 : : * amount of arguments.
108 : : */
109 : : void *
110 : 1 : TR_classClone(void * _object)
111 : : {
112 : 1 : TR_class_ptr class = TR_GET_CLASS(_object);
113 : 1 : void * object = TR_calloc(1, class->object_size + sizeof(void*));
114 : :
115 : 1 : * (TR_class_ptr *)object = class;
116 : 1 : object += sizeof(void*);
117 : :
118 : : #undef clone
119 : 1 : TR_CALL(object, TR_Class, clone, _object);
120 : :
121 : 1 : return object;
122 : : }
123 : : /** endcond */
124 : :
125 : : /**
126 : : * Interface caller function for i_class::ctor.
127 : : * Call the constructor on an existing object identified by name.
128 : : * In fact it calls first the destructor to ensure that all
129 : : * possibly previously acquired resource are cleaned.
130 : : */
131 : : int
132 : 0 : TR_objectInit(void * object, ...)
133 : : {
134 : : int ret;
135 : : va_list params;
136 : :
137 : 0 : va_start(params, object);
138 : 0 : TR_CALL(object, TR_Class, dtor);
139 : 0 : TR_RETCALL(object, TR_Class, ctor, ret, ¶ms);
140 : 0 : va_end(params);
141 : :
142 : 0 : return ret;
143 : : }
144 : :
145 : : // vim: set ts=4 sw=4:
|