Bug 563794 - Redo annotation parsing & applying
[platform/upstream/gobject-introspection.git] / giscanner / sourcescanner.c
1 /* GObject introspection: public scanner api
2  *
3  * Copyright (C) 2007 Jürg Billeter
4  * Copyright (C) 2008 Johan Dahlin
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  *
21  */
22
23 #include "sourcescanner.h"
24 #include <string.h>
25
26 GISourceSymbol *
27 gi_source_symbol_new (GISourceSymbolType type)
28 {
29   GISourceSymbol *s = g_slice_new0 (GISourceSymbol);
30   s->ref_count = 1;
31   s->type = type;
32   return s;
33 }
34
35 void
36 ctype_free (GISourceType * type)
37 {
38   g_free (type->name);
39   g_list_foreach (type->child_list, (GFunc)gi_source_symbol_unref, NULL);
40   g_list_free (type->child_list);
41   g_slice_free (GISourceType, type);
42 }
43
44 GISourceSymbol *
45 gi_source_symbol_ref (GISourceSymbol * symbol)
46 {
47   symbol->ref_count++;
48   return symbol;
49 }
50
51 void
52 gi_source_symbol_unref (GISourceSymbol * symbol)
53 {
54   if (!symbol)
55     return;
56   symbol->ref_count--;
57   if (symbol->ref_count == 0)
58     {
59       g_free (symbol->ident);
60       if (symbol->base_type)
61         ctype_free (symbol->base_type);
62       g_free (symbol->const_string);
63       g_slice_free (GISourceSymbol, symbol);
64     }
65 }
66  
67 gboolean
68 gi_source_symbol_get_const_boolean (GISourceSymbol * symbol)
69 {
70   return (symbol->const_int_set && symbol->const_int) || symbol->const_string;
71 }
72
73 /* use specified type as base type of symbol */
74 void
75 gi_source_symbol_merge_type (GISourceSymbol *symbol,
76                              GISourceType   *type)
77 {
78   GISourceType **foundation_type = &(symbol->base_type);
79
80   while (*foundation_type != NULL)
81     {
82       foundation_type = &((*foundation_type)->base_type);
83     }
84   *foundation_type = type;
85 }
86
87
88 GISourceType *
89 gi_source_type_new (GISourceTypeType type)
90 {
91   GISourceType *t = g_slice_new0 (GISourceType);
92   t->type = type;
93   return t;
94 }
95
96 GISourceType *
97 gi_source_type_copy (GISourceType * type)
98 {
99   GList *l;
100   GISourceType *result = g_slice_new0 (GISourceType);
101   result->type = type->type;
102   result->storage_class_specifier = type->storage_class_specifier;
103   result->type_qualifier = type->type_qualifier;
104   result->function_specifier = type->function_specifier;
105   if (type->name)
106     result->name = g_strdup (type->name);
107   if (type->base_type)
108     result->base_type = gi_source_type_copy (type->base_type);
109   for (l = type->child_list; l; l = l->next)
110     result->child_list = g_list_append (result->child_list, gi_source_symbol_ref (l->data));
111   return result;
112 }
113
114 GISourceType *
115 gi_source_basic_type_new (const char *name)
116 {
117   GISourceType *basic_type = gi_source_type_new (CTYPE_BASIC_TYPE);
118   basic_type->name = g_strdup (name);
119   return basic_type;
120 }
121
122 GISourceType *
123 gi_source_typedef_new (const char *name)
124 {
125   GISourceType *typedef_ = gi_source_type_new (CTYPE_TYPEDEF);
126   typedef_->name = g_strdup (name);
127   return typedef_;
128 }
129
130 GISourceType *
131 gi_source_struct_new (const char *name)
132 {
133   GISourceType *struct_ = gi_source_type_new (CTYPE_STRUCT);
134   struct_->name = g_strdup (name);
135   return struct_;
136 }
137
138 GISourceType *
139 gi_source_union_new (const char *name)
140 {
141   GISourceType *union_ = gi_source_type_new (CTYPE_UNION);
142   union_->name = g_strdup (name);
143   return union_;
144 }
145
146 GISourceType *
147 gi_source_enum_new (const char *name)
148 {
149   GISourceType *enum_ = gi_source_type_new (CTYPE_ENUM);
150   enum_->name = g_strdup (name);
151   return enum_;
152 }
153
154 GISourceType *
155 gi_source_pointer_new (GISourceType * base_type)
156 {
157   GISourceType *pointer = gi_source_type_new (CTYPE_POINTER);
158   if (base_type != NULL)
159     pointer->base_type = gi_source_type_copy (base_type);
160   return pointer;
161 }
162
163 GISourceType *
164 gi_source_array_new (GISourceSymbol *size)
165 {
166   GISourceType *array = gi_source_type_new (CTYPE_ARRAY);
167   if (size != NULL && size->type == CSYMBOL_TYPE_CONST && size->const_int_set)
168       array->child_list = g_list_append (array->child_list, size);
169   return array;
170 }
171
172 GISourceType *
173 gi_source_function_new (void)
174 {
175   GISourceType *func = gi_source_type_new (CTYPE_FUNCTION);
176   return func;
177 }
178
179 GISourceScanner *
180 gi_source_scanner_new (void)
181 {
182   GISourceScanner * scanner;
183
184   scanner = g_slice_new0 (GISourceScanner);
185   scanner->typedef_table = g_hash_table_new_full (g_str_hash, g_str_equal,
186                                                   g_free, NULL);
187   scanner->struct_or_union_or_enum_table =
188     g_hash_table_new_full (g_str_hash, g_str_equal,
189                            g_free, (GDestroyNotify)gi_source_symbol_unref);
190
191   return scanner;
192 }
193
194 void
195 gi_source_scanner_free (GISourceScanner *scanner)
196 {
197   g_free (scanner->current_filename);
198
199   g_hash_table_destroy (scanner->typedef_table);
200   g_hash_table_destroy (scanner->struct_or_union_or_enum_table);
201
202   g_slist_foreach (scanner->comments, (GFunc)g_free, NULL);
203   g_slist_free (scanner->comments);
204   g_slist_foreach (scanner->symbols, (GFunc)gi_source_symbol_unref, NULL);
205   g_slist_free (scanner->symbols);
206
207   g_list_foreach (scanner->filenames, (GFunc)g_free, NULL);
208   g_list_free (scanner->filenames);
209
210 }
211
212 gboolean
213 gi_source_scanner_is_typedef (GISourceScanner *scanner,
214                               const char      *name)
215 {
216   gboolean b = g_hash_table_lookup (scanner->typedef_table, name) != NULL;
217   return b;
218 }
219
220 void
221 gi_source_scanner_set_macro_scan (GISourceScanner  *scanner,
222                                   gboolean          macro_scan)
223 {
224   scanner->macro_scan = macro_scan;
225 }
226
227 void
228 gi_source_scanner_add_symbol (GISourceScanner  *scanner,
229                               GISourceSymbol   *symbol)
230 {
231   gboolean found_filename = FALSE;
232   GList *l;
233
234   g_assert (scanner->current_filename);
235   for (l = scanner->filenames; l != NULL; l = l->next)
236     {
237       if (strcmp (l->data, scanner->current_filename) == 0)
238         {
239           found_filename = TRUE;
240           break;
241         }
242     }
243
244   if (found_filename || scanner->macro_scan)
245     scanner->symbols = g_slist_prepend (scanner->symbols,
246                                         gi_source_symbol_ref (symbol));
247
248   switch (symbol->type)
249     {
250     case CSYMBOL_TYPE_TYPEDEF:
251       g_hash_table_insert (scanner->typedef_table,
252                            g_strdup (symbol->ident),
253                            GINT_TO_POINTER (TRUE));
254       break;
255     case CSYMBOL_TYPE_STRUCT:
256     case CSYMBOL_TYPE_UNION:
257     case CSYMBOL_TYPE_ENUM:
258       g_hash_table_insert (scanner->struct_or_union_or_enum_table,
259                            g_strdup (symbol->ident),
260                            gi_source_symbol_ref (symbol));
261       break;
262     default:
263       break;
264     }
265 }
266
267 GSList *
268 gi_source_scanner_get_symbols (GISourceScanner  *scanner)
269 {
270   return g_slist_reverse (scanner->symbols);
271 }
272
273 GSList *
274 gi_source_scanner_get_comments(GISourceScanner  *scanner)
275 {
276   return g_slist_reverse (scanner->comments);
277 }