1 /* GObject introspection: scanner
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
25 #include "sourcescanner.h"
28 #define NEW_CLASS(ctype, name, cname) \
29 static PyMethodDef _Py##cname##_methods[]; \
30 PyTypeObject Py##cname##_Type = { \
31 PyObject_HEAD_INIT(NULL) \
35 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
37 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, \
42 0, 0, NULL, NULL, 0, 0, \
46 #define REGISTER_TYPE(d, name, type) \
47 type.ob_type = &PyType_Type; \
48 type.tp_alloc = PyType_GenericAlloc; \
49 type.tp_new = PyType_GenericNew; \
50 if (PyType_Ready (&type)) \
52 PyDict_SetItemString (d, name, (PyObject *)&type); \
62 GISourceSymbol *symbol;
67 GISourceScanner *scanner;
70 NEW_CLASS(PyGISourceSymbol, "SourceSymbol", GISourceSymbol);
71 NEW_CLASS(PyGISourceType, "SourceType", GISourceType);
72 NEW_CLASS(PyGISourceScanner, "SourceScanner", GISourceScanner);
78 symbol_get_type(PyGISourceSymbol *self,
81 return PyInt_FromLong(self->symbol->type);
85 symbol_get_ident(PyGISourceSymbol *self,
88 return PyString_FromString(self->symbol->ident);
92 symbol_get_base_type(PyGISourceSymbol *self,
96 item = (PyGISourceType *)PyObject_GC_New(PyGISourceType,
97 &PyGISourceType_Type);
98 item->type = self->symbol->base_type;
99 return (PyObject*)item;
102 static PyGetSetDef _PyGISourceSymbol_getsets[] = {
104 { "type", (getter)symbol_get_type, NULL, NULL},
106 { "ident", (getter)symbol_get_ident, NULL, NULL},
107 { "base_type", (getter)symbol_get_base_type, NULL, NULL},
108 /* gboolean const_int_set; */
110 /* char *const_string; */
111 /* GSList *directives; */
120 type_get_type(PyGISourceType *self,
123 return PyInt_FromLong(self->type->type);
127 type_get_storage_class_specifier(PyGISourceType *self,
130 return PyInt_FromLong(self->type->storage_class_specifier);
134 type_get_type_qualifier(PyGISourceType *self,
137 return PyInt_FromLong(self->type->type_qualifier);
141 type_get_function_specifier(PyGISourceType *self,
144 return PyInt_FromLong(self->type->function_specifier);
148 type_get_name(PyGISourceType *self,
151 if (!self->type->name)
157 return PyString_FromString(self->type->name);
161 type_get_base_type(PyGISourceType *self,
164 PyGISourceType *item;
165 item = (PyGISourceType *)PyObject_GC_New(PyGISourceType,
166 &PyGISourceType_Type);
167 item->type = self->type->base_type;
168 return (PyObject*)item;
171 static PyGetSetDef _PyGISourceType_getsets[] = {
172 { "type", (getter)type_get_type, NULL, NULL},
173 { "storage_class_specifier", (getter)type_get_storage_class_specifier, NULL, NULL},
174 { "type_qualifier", (getter)type_get_type_qualifier, NULL, NULL},
175 { "function_specifier", (getter)type_get_function_specifier, NULL, NULL},
176 { "name", (getter)type_get_name, NULL, NULL},
177 { "base_type", (getter)type_get_base_type, NULL, NULL},
178 /* { "child_list", (getter)type_get_child_list, NULL, NULL}, */
187 pygi_source_scanner_init (PyGISourceScanner *self,
191 if (!PyArg_ParseTuple (args, ":SourceScanner.__init__"))
194 self->scanner = gi_source_scanner_new ();
200 pygi_source_scanner_parse_file (PyGISourceScanner *self,
207 if (!PyArg_ParseTuple (args, "is:SourceScanner.__init__", &fd, &filename))
210 fp = fdopen (fd, "r");
213 PyErr_SetFromErrnoWithFilename (PyExc_OSError, filename);
217 self->scanner->filenames =
218 g_list_append (self->scanner->filenames, g_strdup (filename));
219 self->scanner->current_filename = g_strdup (filename);
221 if (!gi_source_scanner_parse_file (self->scanner, fp))
223 g_print ("Something went wrong..\n");
232 pygi_source_scanner_set_macro_scan (PyGISourceScanner *self,
237 if (!PyArg_ParseTuple (args, "b:SourceScanner.set_macro_scan", ¯o_scan))
240 gi_source_scanner_set_macro_scan (self->scanner, macro_scan);
247 pygi_source_scanner_get_symbols (PyGISourceScanner *self)
253 symbols = gi_source_scanner_get_symbols (self->scanner);
254 list = PyList_New (g_slist_length (symbols));
256 for (l = symbols; l; l = l->next)
258 PyGISourceSymbol *item;
259 item = (PyGISourceSymbol *)PyObject_GC_New(PyGISourceSymbol,
260 &PyGISourceSymbol_Type);
261 item->symbol = l->data;
262 PyList_SetItem(list, i++, (PyObject*)item);
268 static PyMethodDef _PyGISourceScanner_methods[] = {
269 { "get_symbols", (PyCFunction) pygi_source_scanner_get_symbols, METH_NOARGS },
270 { "parse_file", (PyCFunction) pygi_source_scanner_parse_file, METH_VARARGS },
271 { "set_macro_scan", (PyCFunction) pygi_source_scanner_set_macro_scan, METH_VARARGS },
278 PyMethodDef pyscanner_functions[] = {
279 { NULL, NULL, 0, NULL }
287 m = Py_InitModule ("giscanner._giscanner", pyscanner_functions);
288 d = PyModule_GetDict (m);
290 PyGISourceScanner_Type.tp_init = (initproc)pygi_source_scanner_init;
291 PyGISourceScanner_Type.tp_methods = _PyGISourceScanner_methods;
292 REGISTER_TYPE (d, "SourceScanner", PyGISourceScanner_Type);
294 PyGISourceSymbol_Type.tp_getset = _PyGISourceSymbol_getsets;
295 REGISTER_TYPE (d, "SourceSymbol", PyGISourceSymbol_Type);
297 PyGISourceType_Type.tp_getset = _PyGISourceType_getsets;
298 REGISTER_TYPE (d, "SourceType", PyGISourceType_Type);