4a1456d6b104e4a67d57abf1fe280c5ac18514c4
[platform/upstream/pygobject2.git] / gi / pygobject-external.h
1 /* -*- Mode: C; c-basic-offset: 4 -*-
2  * vim: tabstop=4 shiftwidth=4 expandtab
3  *
4  * Copyright (C) 2009 Simon van der Linden <svdlinden@src.gnome.org>
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.1 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 Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
19  * USA
20  */
21
22 #ifndef __PYGOBJECT_EXTERN_H__
23 #define __PYGOBJECT_EXTERN_H__
24
25 #include <Python.h>
26
27 G_BEGIN_DECLS
28
29 static PyTypeObject *_PyGTypeWrapper_Type;
30
31 #define PyGTypeWrapper_Type (*_PyGTypeWrapper_Type)
32
33 __attribute__ ( (unused))
34 static int
35 _pygobject_import (void)
36 {
37     static gboolean imported = FALSE;
38     PyObject *from_list;
39     PyObject *module;
40     int retval = 0;
41
42     if (imported) {
43         return 1;
44     }
45
46     from_list = Py_BuildValue ("(s)", "GType");
47     if (from_list == NULL) {
48         return -1;
49     }
50
51     module = PyImport_ImportModuleEx ("gi._gobject", NULL, NULL, from_list);
52
53     Py_DECREF (from_list);
54
55     if (module == NULL) {
56         return -1;
57     }
58
59     _PyGTypeWrapper_Type = (PyTypeObject *) PyObject_GetAttrString (module, "GType");
60     if (_PyGTypeWrapper_Type == NULL) {
61         retval = -1;
62         goto out;
63     }
64
65     imported = TRUE;
66
67 out:
68     Py_DECREF (module);
69
70     return retval;
71 }
72
73 G_END_DECLS
74
75 #endif /* __PYGOBJECT_EXTERN_H__ */