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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
|
/* Copyright (C) 2009 David Zeuthen <zeuthen@gmail.com>
*
* 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.
*
* Author: David Zeuthen <zeuthen@gmail.com>
*/
#include "dbusidl.h"
#ifndef __DBUS_IDL_PRIVATE_H
#define __DBUS_IDL_PRIVATE_H
/* ---------------------------------------------------------------------------------------------------- */
struct _DIBase
{
DIBaseType type;
gchar *decl_filename;
guint decl_lineno;
GList *annotations;
};
struct _DIAnnotation
{
DIBase base;
gchar *name;
gchar *value;
};
struct _DIType
{
DIBase base;
gchar *name;
GList *inner_types;
gchar *signature;
gchar *complete_signature;
/* only set if type is a user supplied type */
gchar *fully_qualified_name;
};
struct _DIArg
{
DIBase base;
gchar *name;
DIType *type;
DIArgDirection direction;
};
struct _DIMethod
{
DIBase base;
gchar *name;
gchar *fully_qualified_name;
GList *args;
gchar *in_signature;
gchar *out_signature;
};
struct _DISignal
{
DIBase base;
gchar *name;
gchar *fully_qualified_name;
GList *args;
gchar *signature;
};
struct _DIProperty
{
DIBase base;
gchar *name;
gchar *fully_qualified_name;
DIType *type;
DIPropertyFlags flags;
gchar *signature;
};
struct _DIInterface
{
DIBase base;
gchar *name;
gchar *fully_qualified_name;
GList *methods;
GList *signals;
GList *properties;
};
struct _DIStructMember
{
DIBase base;
gchar *name;
DIType *type;
};
struct _DIStruct
{
DIBase base;
gchar *name;
gchar *fully_qualified_name;
GList *members;
gchar *signature;
};
struct _DIEnumMember
{
DIBase base;
gchar *name;
gchar *fully_qualified_name;
guint32 value;
gboolean unset;
};
struct _DIEnum
{
DIBase base;
gchar *name;
gchar *fully_qualified_name;
GList *members;
};
struct _DIErrorMember
{
DIBase base;
gchar *name;
gchar *fully_qualified_name;
};
struct _DIErrorDomain
{
DIBase base;
gchar *name;
gchar *fully_qualified_name;
GList *members;
};
struct _DINamespace
{
DIBase base;
gchar *name;
GList *interfaces;
GList *structs;
GList *enums;
GList *error_domains;
};
struct _DIComment
{
DIBase base;
gboolean is_multiline;
gchar *raw;
gchar *text;
GList *tags;
GHashTable *hash_tag_to_value;
/* the symbol the comment is for */
DIBase *link;
};
struct _DIParser
{
gchar *path_to_current_file;
GList *namespaces;
GList *warnings;
GList *errors;
GList *comments;
/* hash from fully-qualified name to DIBase* */
GHashTable *symbol_table;
};
/* ---------------------------------------------------------------------------------------------------- */
DIAnnotation *di_annotation_new (gchar *decl_filename,
guint decl_lineno,
gchar *name,
gchar *value);
DIType *di_type_new (gchar *decl_filename,
guint decl_lineno,
gchar *name,
GList *inner_types);
DIArg *di_arg_new (gchar *decl_filename,
guint decl_lineno,
gchar *name,
DIType *type,
DIArgDirection direction,
GList *annotations);
DIMethod *di_method_new (gchar *decl_filename,
guint decl_lineno,
gchar *name,
GList *args,
GList *annotations);
DISignal *di_signal_new (gchar *decl_filename,
guint decl_lineno,
gchar *name,
GList *args,
GList *annotations);
DIProperty *di_property_new (gchar *decl_filename,
guint decl_lineno,
gchar *name,
DIType *type,
DIPropertyFlags flags,
GList *annotations);
DIInterface *di_interface_new (gchar *decl_filename,
guint decl_lineno,
gchar *name,
GList *methods,
GList *signals,
GList *properties,
GList *annotations);
DIStructMember *di_struct_member_new (gchar *decl_filename,
guint decl_lineno,
gchar *name,
DIType *type,
GList *annotations);
DIStruct *di_struct_new (gchar *decl_filename,
guint decl_lineno,
gchar *name,
GList *members,
GList *annotations);
DIEnumMember *di_enum_member_new (gchar *decl_filename,
guint decl_lineno,
gchar *name,
guint32 value,
gboolean unset,
GList *annotations);
DIEnum *di_enum_new (gchar *decl_filename,
guint decl_lineno,
gchar *name,
GList *members,
GList *annotations);
DIErrorMember *di_error_member_new (gchar *decl_filename,
guint decl_lineno,
gchar *name,
GList *annotations);
DIErrorDomain *di_error_domain_new (gchar *decl_filename,
guint decl_lineno,
gchar *name,
GList *members,
GList *annotations);
DINamespace *di_namespace_new (gchar *decl_filename,
guint decl_lineno,
gchar *name,
GList *interfaces,
GList *structs,
GList *enums,
GList *error_domains,
GList *annotations);
DIComment *di_comment_new (gchar *decl_filename,
guint decl_lineno,
gboolean is_multiline,
gchar *raw);
void di_comment_set (DIComment *comment,
DIBase *link);
/* ---------------------------------------------------------------------------------------------------- */
void di_annotation_free (DIAnnotation *annotation);
void di_type_free (DIType *type);
void di_arg_free (DIArg *arg);
void di_signal_free (DISignal *signal);
void di_method_free (DIMethod *method);
void di_property_free (DIProperty *property);
void di_interface_free (DIInterface *interface);
void di_struct_member_free (DIStructMember *struct_member);
void di_struct_free (DIStruct *struct_);
void di_enum_member_free (DIEnumMember *enum_member);
void di_enum_free (DIEnum *enum_);
void di_error_member_free (DIErrorMember *error_member);
void di_error_domain_free (DIErrorDomain *error_domain);
void di_namespace_free (DINamespace *namespace);
void di_comment_free (DIComment *comment);
/* ---------------------------------------------------------------------------------------------------- */
void di_annotation_print (DIAnnotation *annotation, guint indent);
void di_type_print (DIType *type, guint indent);
void di_arg_print (DIArg *arg, guint indent);
void di_signal_print (DISignal *signal, guint indent);
void di_method_print (DIMethod *method, guint indent);
void di_property_print (DIProperty *property, guint indent);
void di_interface_print (DIInterface *interface, guint indent);
void di_struct_member_print (DIStructMember *struct_member, guint indent);
void di_struct_print (DIStruct *struct_, guint indent);
void di_enum_member_print (DIEnumMember *enum_member, guint indent);
void di_enum_print (DIEnum *enum_, guint indent);
void di_error_member_print (DIErrorMember *error_member, guint indent);
void di_error_domain_print (DIErrorDomain *error_domain, guint indent);
void di_namespace_print (DINamespace *namespace, guint indent);
void di_comment_print (DIComment *comment, guint indent);
/* ---------------------------------------------------------------------------------------------------- */
#endif /* __DBUS_IDL_PRIVATE_H */
|