summaryrefslogtreecommitdiff
path: root/Source/FusionDale/include/fusiondale_util.h
blob: 51539dd13fa784cdda28e823f8e79c6b47496ce3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/*
   (c) Copyright 2006-2007  directfb.org

   All rights reserved.

   Written by Denis Oliver Kropp <dok@directfb.org>.

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with this library; if not, write to the
   Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   Boston, MA 02111-1307, USA.
*/

#ifndef __FUSIONDALE_UTIL_H__
#define __FUSIONDALE_UTIL_H__

#ifdef __cplusplus
extern "C"
{
#endif

#include <fusiondale.h>

#include <direct/debug.h>
#include <direct/memcpy.h>
#include <direct/messages.h>


#define COMA_GENCALL_PREPARE( coma, length )                                                   \
     do {                                                                                      \
          DirectResult ret;                                                                    \
                                                                                               \
          D_ASSERT( coma != NULL );                                                            \
          D_ASSERT( length > 0 );                                                              \
                                                                                               \
          ret = coma->GetLocal( coma, length, &ptr );                                          \
          if (ret) {                                                                           \
               D_DERROR( ret, "IComa::GetLocal( %zu ) failed!\n", length );                    \
               return ret;                                                                     \
          }                                                                                    \
     } while (0)

#define COMA_GENCALL_PREPARE_FROM( coma, from )                                                \
     do {                                                                                      \
          DirectResult ret;                                                                    \
                                                                                               \
          D_ASSERT( coma != NULL );                                                            \
          D_ASSERT( from != NULL );                                                            \
                                                                                               \
          ret = coma->GetLocal( coma, sizeof(*from), &ptr );                                   \
          if (ret) {                                                                           \
               D_DERROR( ret, "IComa::GetLocal( %zu ) failed!\n", sizeof(*from) );             \
               return ret;                                                                     \
          }                                                                                    \
                                                                                               \
          direct_memcpy( ptr, from, sizeof(*from) );                                           \
     } while (0)

#define COMA_GENCALL_EXECUTE( component, methodid )                                            \
     do {                                                                                      \
          DirectResult ret;                                                                    \
                                                                                               \
          D_ASSERT( component != NULL );                                                       \
                                                                                               \
          ret = component->Call( component, methodid, ptr, &result );                          \
          if (ret) {                                                                           \
               D_DERROR( ret, "IComaComponent::Call( %lu, %p ) failed!\n",                     \
                         (ComaMethodID) methodid, ptr );                                       \
               return ret;                                                                     \
          }                                                                                    \
     } while (0)

#define COMA_GENCALL_EXECUTE_TO( component, methodid, to )                                     \
     do {                                                                                      \
          DirectResult ret;                                                                    \
                                                                                               \
          D_ASSERT( component != NULL );                                                       \
          D_ASSERT( to != NULL );                                                              \
                                                                                               \
          ret = component->Call( component, methodid, ptr, &result );                          \
          if (ret) {                                                                           \
               D_DERROR( ret, "IComaComponent::Call( %lu, %p ) failed!\n",                     \
                         (ComaMethodID) methodid, ptr );                                       \
               return ret;                                                                     \
          }                                                                                    \
                                                                                               \
          direct_memcpy( to, ptr, sizeof(*to) );                                               \
     } while (0)

/**********************************************************************************************************************/

#define COMA_GENCALL_DEFINE___( NAME, METHOD, METHOD_ID )                                      \
     static inline DirectResult                                                                \
     NAME ## _GenCall_ ## METHOD( IComa                  *coma,                                \
                                  IComaComponent         *component )                          \
     {                                                                                         \
          void *ptr = NULL;                                                                    \
          int   result;                                                                        \
                                                                                               \
          D_ASSERT( coma != NULL );                                                            \
          D_ASSERT( component != NULL );                                                       \
                                                                                               \
          COMA_GENCALL_EXECUTE( component, METHOD_ID );                                        \
                                                                                               \
          return (DirectResult)result;                                                         \
     }

#define COMA_GENCALL_DEFINE_I_( NAME, METHOD, METHOD_ID )                                      \
     static inline DirectResult                                                                \
     NAME ## _GenCall_ ## METHOD( IComa                  *coma,                                \
                                  IComaComponent         *component,                           \
                                  NAME ## Call ## METHOD *data )                               \
     {                                                                                         \
          void *ptr;                                                                           \
          int   result;                                                                        \
                                                                                               \
          D_ASSERT( coma != NULL );                                                            \
          D_ASSERT( component != NULL );                                                       \
          D_ASSERT( data != NULL );                                                            \
                                                                                               \
          COMA_GENCALL_PREPARE_FROM( coma, data );                                             \
                                                                                               \
          COMA_GENCALL_EXECUTE( component, METHOD_ID );                                        \
                                                                                               \
          return (DirectResult)result;                                                         \
     }

#define COMA_GENCALL_DEFINE__O( NAME, METHOD, METHOD_ID )                                      \
     static inline DirectResult                                                                \
     NAME ## _GenCall_ ## METHOD( IComa                  *coma,                                \
                                  IComaComponent         *component,                           \
                                  NAME ## Call ## METHOD *data )                               \
     {                                                                                         \
          void *ptr;                                                                           \
          int   result;                                                                        \
                                                                                               \
          D_ASSERT( coma != NULL );                                                            \
          D_ASSERT( component != NULL );                                                       \
          D_ASSERT( data != NULL );                                                            \
                                                                                               \
          COMA_GENCALL_PREPARE( coma, sizeof(*data) );                                         \
                                                                                               \
          COMA_GENCALL_EXECUTE_TO( component, METHOD_ID, data );                               \
                                                                                               \
          return (DirectResult)result;                                                         \
     }

#define COMA_GENCALL_DEFINE_IO( NAME, METHOD, METHOD_ID )                                      \
     static inline DirectResult                                                                \
     NAME ## _GenCall_ ## METHOD( IComa                  *coma,                                \
                                  IComaComponent         *component,                           \
                                  NAME ## Call ## METHOD *data )                               \
     {                                                                                         \
          void *ptr;                                                                           \
          int   result;                                                                        \
                                                                                               \
          D_ASSERT( coma != NULL );                                                            \
          D_ASSERT( component != NULL );                                                       \
          D_ASSERT( data != NULL );                                                            \
                                                                                               \
          COMA_GENCALL_PREPARE_FROM( coma, data );                                             \
                                                                                               \
          COMA_GENCALL_EXECUTE_TO( component, METHOD_ID, data );                               \
                                                                                               \
          return (DirectResult)result;                                                         \
     }


#ifdef __cplusplus
}
#endif

#endif