49313a5100f5a9f6de9e611fcc121e65312b314c
[platform/upstream/python-gobject.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, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef __PYGOBJECT_EXTERN_H__
21 #define __PYGOBJECT_EXTERN_H__
22
23 #include <Python.h>
24
25 G_BEGIN_DECLS
26
27 static PyTypeObject *_PyGTypeWrapper_Type;
28
29 #define PyGTypeWrapper_Type (*_PyGTypeWrapper_Type)
30
31 G_GNUC_UNUSED
32 static int
33 _pygobject_import (void)
34 {
35     static gboolean imported = FALSE;
36     PyObject *from_list;
37     PyObject *module;
38     int retval = 0;
39
40     if (imported) {
41         return 1;
42     }
43
44     from_list = Py_BuildValue ("(s)", "GType");
45     if (from_list == NULL) {
46         return -1;
47     }
48
49     module = PyImport_ImportModuleEx ("gi._gobject", NULL, NULL, from_list);
50
51     Py_DECREF (from_list);
52
53     if (module == NULL) {
54         return -1;
55     }
56
57     _PyGTypeWrapper_Type = (PyTypeObject *) PyObject_GetAttrString (module, "GType");
58     if (_PyGTypeWrapper_Type == NULL) {
59         retval = -1;
60         goto out;
61     }
62
63     imported = TRUE;
64
65 out:
66     Py_DECREF (module);
67
68     return retval;
69 }
70
71 G_END_DECLS
72
73 #endif /* __PYGOBJECT_EXTERN_H__ */