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
|
/*
* Copyright © 2003 Marco Pesenti Gritti
* Copyright © 2003, 2004, 2005 Christian Persch
* Copyright © 2004, 2005 Jean-François Rameau
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "config.h"
#include "ephy-python-loader.h"
#include "ephy-loader.h"
#include "ephy-python.h"
#include "ephy-python-extension.h"
#include "ephy-debug.h"
#define EPHY_PYTHON_LOADER_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), EPHY_TYPE_PYTHON_LOADER, EphyPythonLoaderPrivate))
struct _EphyPythonLoaderPrivate
{
gpointer dummy;
};
static GObject *
impl_get_object (EphyLoader *eloader,
GKeyFile *keyfile)
{
char *filename;
GObject *object;
g_return_val_if_fail (keyfile != NULL, NULL);
filename = g_key_file_get_string (keyfile, "Loader", "Module", NULL);
if (filename == NULL)
{
g_warning ("NULL module name!\n");
return NULL;
}
object = g_object_new (EPHY_TYPE_PYTHON_EXTENSION,
"filename", filename,
NULL);
g_free (filename);
/* we own one ref */
return g_object_ref (object);
}
static void
impl_release_object (EphyLoader *eloader,
GObject *object)
{
g_return_if_fail (object != NULL);
g_object_unref (object);
}
static void
ephy_python_loader_iface_init (EphyLoaderIface *iface)
{
iface->type = "python";
iface->get_object = impl_get_object;
iface->release_object = impl_release_object;
}
G_DEFINE_TYPE_WITH_CODE (EphyPythonLoader, ephy_python_loader, G_TYPE_OBJECT,
G_IMPLEMENT_INTERFACE (EPHY_TYPE_LOADER, ephy_python_loader_iface_init))
static void
ephy_python_loader_init (EphyPythonLoader *loader)
{
loader->priv = EPHY_PYTHON_LOADER_GET_PRIVATE (loader);
LOG ("EphyPythonLoader initialising");
/* Initialize Python engine */
ephy_python_init ();
}
static void
ephy_python_loader_finalize (GObject *object)
{
LOG ("EphyPythonLoader finalising");
G_OBJECT_CLASS (ephy_python_loader_parent_class)->finalize (object);
ephy_python_shutdown ();
}
static void
ephy_python_loader_class_init (EphyPythonLoaderClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
object_class->finalize = ephy_python_loader_finalize;
g_type_class_add_private (object_class, sizeof (EphyPythonLoaderPrivate));
}
|