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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
|
/*
* peas-plugin-loader-python.c
* This file is part of libpeas
*
* Copyright (C) 2008 - Jesse van den Kieboom
* Copyright (C) 2009 - Steve Frécinaux
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as published by
* the Free Software Foundation; either version 2 of the License, 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 Library General Public License for more details.
*
* You should have received a copy of the GNU Library 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.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "peas-extension-python.h"
#include "peas-plugin-loader-python.h"
/* _POSIX_C_SOURCE is defined in Python.h and in limits.h included by
* glib-object.h, so we unset it here to avoid a warning. Yep, that's bad. */
#undef _POSIX_C_SOURCE
#include <pygobject.h>
#include <Python.h>
#include <signal.h>
#if PY_VERSION_HEX < 0x02050000
typedef int Py_ssize_t;
#define PY_SSIZE_T_MAX INT_MAX
#define PY_SSIZE_T_MIN INT_MIN
#endif
struct _PeasPluginLoaderPythonPrivate {
GHashTable *loaded_plugins;
guint idle_gc;
guint init_failed : 1;
guint must_finalize_python : 1;
PyThreadState *py_thread_state;
};
typedef struct {
PyObject *module;
} PythonInfo;
static gboolean peas_plugin_loader_python_add_module_path (PeasPluginLoaderPython *pyloader,
const gchar *module_path);
G_DEFINE_TYPE (PeasPluginLoaderPython, peas_plugin_loader_python, PEAS_TYPE_PLUGIN_LOADER);
G_MODULE_EXPORT void
peas_register_types (PeasObjectModule *module)
{
peas_object_module_register_extension_type (module,
PEAS_TYPE_PLUGIN_LOADER,
PEAS_TYPE_PLUGIN_LOADER_PYTHON);
}
/* NOTE: This must be called with the GIL held */
static PyTypeObject *
find_python_extension_type (PeasPluginInfo *info,
GType exten_type,
PyObject *pymodule)
{
PyObject *pygtype, *pytype;
PyObject *locals, *key, *value;
Py_ssize_t pos = 0;
locals = PyModule_GetDict (pymodule);
pygtype = pyg_type_wrapper_new (exten_type);
pytype = PyObject_GetAttrString (pygtype, "pytype");
g_warn_if_fail (pytype != NULL);
if (pytype != NULL && pytype != Py_None)
{
while (PyDict_Next (locals, &pos, &key, &value))
{
if (!PyType_Check (value))
continue;
switch (PyObject_IsSubclass (value, pytype))
{
case 1:
Py_DECREF (pygtype);
return (PyTypeObject *) value;
case 0:
continue;
case -1:
default:
PyErr_Print ();
continue;
}
}
}
Py_DECREF (pygtype);
return NULL;
}
static gboolean
peas_plugin_loader_python_provides_extension (PeasPluginLoader *loader,
PeasPluginInfo *info,
GType exten_type)
{
PeasPluginLoaderPython *pyloader = PEAS_PLUGIN_LOADER_PYTHON (loader);
PythonInfo *pyinfo;
PyTypeObject *extension_type;
PyGILState_STATE state;
pyinfo = (PythonInfo *) g_hash_table_lookup (pyloader->priv->loaded_plugins, info);
state = pyg_gil_state_ensure ();
extension_type = find_python_extension_type (info, exten_type, pyinfo->module);
pyg_gil_state_release (state);
return extension_type != NULL;
}
static PeasExtension *
peas_plugin_loader_python_create_extension (PeasPluginLoader *loader,
PeasPluginInfo *info,
GType exten_type,
guint n_parameters,
GParameter *parameters)
{
PeasPluginLoaderPython *pyloader = PEAS_PLUGIN_LOADER_PYTHON (loader);
PythonInfo *pyinfo;
PyTypeObject *pytype;
GType the_type;
GObject *object;
PyObject *pyobject;
PyObject *pyplinfo;
PyGILState_STATE state;
PeasExtension *exten = NULL;
pyinfo = (PythonInfo *) g_hash_table_lookup (pyloader->priv->loaded_plugins, info);
state = pyg_gil_state_ensure ();
pytype = find_python_extension_type (info, exten_type, pyinfo->module);
if (pytype == NULL)
goto out;
the_type = pyg_type_from_object ((PyObject *) pytype);
if (the_type == G_TYPE_INVALID)
goto out;
if (!g_type_is_a (the_type, exten_type))
{
g_warn_if_fail (g_type_is_a (the_type, exten_type));
goto out;
}
object = g_object_newv (the_type, n_parameters, parameters);
if (!object)
goto out;
pyobject = pygobject_new (object);
g_object_unref (object);
/* Set the plugin info as an attribute of the instance */
pyplinfo = pyg_boxed_new (PEAS_TYPE_PLUGIN_INFO, info, TRUE, TRUE);
PyObject_SetAttrString (pyobject, "plugin_info", pyplinfo);
Py_DECREF (pyplinfo);
exten = peas_extension_python_new (exten_type,
g_type_interfaces (the_type, NULL),
pyobject);
Py_DECREF (pyobject);
out:
pyg_gil_state_release (state);
return exten;
}
/* NOTE: This must be called with the GIL held */
static void
add_python_info (PeasPluginLoaderPython *loader,
PeasPluginInfo *info,
PyObject *module)
{
PythonInfo *pyinfo;
pyinfo = g_new (PythonInfo, 1);
pyinfo->module = module;
Py_INCREF (pyinfo->module);
g_hash_table_insert (loader->priv->loaded_plugins, info, pyinfo);
}
static gboolean
peas_plugin_loader_python_load (PeasPluginLoader *loader,
PeasPluginInfo *info)
{
PeasPluginLoaderPython *pyloader = PEAS_PLUGIN_LOADER_PYTHON (loader);
PyObject *pymodule, *fromlist;
const gchar *module_name;
PyGILState_STATE state;
/* see if py definition for the plugin is already loaded */
if (g_hash_table_lookup (pyloader->priv->loaded_plugins, info))
return TRUE;
state = pyg_gil_state_ensure ();
/* If we have a special path, we register it */
peas_plugin_loader_python_add_module_path (pyloader,
peas_plugin_info_get_module_dir (info));
/* we need a fromlist to be able to import modules with a '.' in the
name. */
fromlist = PyTuple_New (0);
module_name = peas_plugin_info_get_module_name (info);
pymodule = PyImport_ImportModuleEx ((gchar *) module_name, NULL, NULL, fromlist);
Py_DECREF (fromlist);
if (!pymodule)
{
PyErr_Print ();
pyg_gil_state_release (state);
return FALSE;
}
add_python_info (pyloader, info, pymodule);
Py_DECREF (pymodule);
pyg_gil_state_release (state);
return TRUE;
}
static void
peas_plugin_loader_python_unload (PeasPluginLoader *loader,
PeasPluginInfo *info)
{
PeasPluginLoaderPython *pyloader = PEAS_PLUGIN_LOADER_PYTHON (loader);
g_hash_table_remove (pyloader->priv->loaded_plugins, info);
}
static void
run_gc_protected (void)
{
PyGILState_STATE state = pyg_gil_state_ensure ();
while (PyGC_Collect ())
;
pyg_gil_state_release (state);
}
static gboolean
run_gc (PeasPluginLoaderPython *loader)
{
run_gc_protected ();
loader->priv->idle_gc = 0;
return FALSE;
}
static void
peas_plugin_loader_python_garbage_collect (PeasPluginLoader *loader)
{
PeasPluginLoaderPython *pyloader = PEAS_PLUGIN_LOADER_PYTHON (loader);
/*
* We both run the GC right now and we schedule
* a further collection in the main loop.
*/
run_gc_protected ();
if (pyloader->priv->idle_gc == 0)
pyloader->priv->idle_gc = g_idle_add ((GSourceFunc) run_gc, pyloader);
}
/* C equivalent of
* import sys
* sys.path.insert(0, module_path)
*/
/* NOTE: This must be called with the GIL held */
static gboolean
peas_plugin_loader_python_add_module_path (PeasPluginLoaderPython *pyloader,
const gchar *module_path)
{
PyObject *pathlist, *pathstring;
g_return_val_if_fail (PEAS_IS_PLUGIN_LOADER_PYTHON (pyloader), FALSE);
g_return_val_if_fail (module_path != NULL, FALSE);
pathlist = PySys_GetObject ((char *) "path");
#if PY_VERSION_HEX < 0x03000000
pathstring = PyString_FromString (module_path);
#else
pathstring = PyUnicode_FromString (module_path);
#endif
if (PySequence_Contains (pathlist, pathstring) == 0)
PyList_Insert (pathlist, 0, pathstring);
Py_DECREF (pathstring);
return TRUE;
}
#if PY_VERSION_HEX >= 0x03000000
static wchar_t *
peas_wchar_from_str (const gchar *str)
{
wchar_t *outbuf;
gsize argsize, count;
argsize = mbstowcs (NULL, str, 0);
if (argsize == (gsize)-1)
{
g_warning ("Could not convert argument to wchar_t string.");
return NULL;
}
outbuf = g_new (wchar_t, argsize + 1);
count = mbstowcs (outbuf, str, argsize + 1);
if (count == (gsize)-1)
{
g_warning ("Could not convert argument to wchar_t string.");
return NULL;
}
return outbuf;
}
#endif
static gboolean
peas_plugin_loader_python_initialize (PeasPluginLoader *loader)
{
PeasPluginLoaderPython *pyloader = PEAS_PLUGIN_LOADER_PYTHON (loader);
PyObject *mdict, *gettext, *install, *gettext_args;
gchar *prgname;
#if PY_VERSION_HEX < 0x03000000
const char *argv[] = { "", NULL };
#else
wchar_t *argv[] = { L"", NULL };
#endif
/* We are trying to initialize Python for the first time,
set init_failed to FALSE only if the entire initialization process
ends with success */
pyloader->priv->init_failed = TRUE;
/* Python initialization */
if (!Py_IsInitialized ())
{
Py_InitializeEx (FALSE);
pyloader->priv->must_finalize_python = TRUE;
}
prgname = g_get_prgname ();
if (prgname != NULL)
{
#if PY_VERSION_HEX < 0x03000000
argv[0] = prgname;
#else
argv[0] = peas_wchar_from_str (prgname);
#endif
}
/* See http://docs.python.org/c-api/init.html#PySys_SetArgvEx */
#if PY_VERSION_HEX < 0x02060600
PySys_SetArgv (1, (char**) argv);
PyRun_SimpleString ("import sys; sys.path.pop(0)\n");
#elif PY_VERSION_HEX < 0x03000000
PySys_SetArgvEx (1, (char**) argv, 0);
#elif PY_VERSION_HEX < 0x03010300
PySys_SetArgv (1, argv);
PyRun_SimpleString ("import sys; sys.path.pop(0)\n");
g_free (argv[0]);
#else
PySys_SetArgvEx (1, argv, 0);
g_free (argv[0]);
#endif
/* Note that we don't call this with the GIL held, since we haven't initialised pygobject yet */
peas_plugin_loader_python_add_module_path (pyloader, PEAS_PYEXECDIR);
/* Initialize PyGObject */
pygobject_init (PYGOBJECT_MAJOR_VERSION, PYGOBJECT_MINOR_VERSION, PYGOBJECT_MICRO_VERSION);
if (PyErr_Occurred ())
{
g_warning ("Error initializing Python Plugin Loader:"
"PyGObject initialization failed");
PyErr_Print ();
goto python_init_error;
}
/* Initialize support for threads */
pyg_enable_threads ();
pyg_disable_warning_redirections ();
/* i18n support */
gettext = PyImport_ImportModule ("gettext");
if (gettext == NULL)
{
g_warning ("Error initializing Python Plugin Loader: "
"failed to import gettext");
goto python_init_error;
}
mdict = PyModule_GetDict (gettext);
install = PyDict_GetItemString (mdict, "install");
gettext_args = Py_BuildValue ("ss", GETTEXT_PACKAGE, PEAS_LOCALEDIR);
PyObject_CallObject (install, gettext_args);
Py_DECREF (gettext_args);
/* Python has been successfully initialized */
pyloader->priv->init_failed = FALSE;
pyloader->priv->py_thread_state = PyEval_SaveThread ();
return TRUE;
python_init_error:
g_warning ("Please check the installation of all the Python related packages "
"required by libpeas and try again");
if (PyErr_Occurred ())
PyErr_Clear ();
return FALSE;
}
static void
destroy_python_info (PythonInfo *info)
{
PyGILState_STATE state = pyg_gil_state_ensure ();
Py_DECREF (info->module);
pyg_gil_state_release (state);
g_free (info);
}
static void
peas_plugin_loader_python_init (PeasPluginLoaderPython *pyloader)
{
pyloader->priv = G_TYPE_INSTANCE_GET_PRIVATE (pyloader,
PEAS_TYPE_PLUGIN_LOADER_PYTHON,
PeasPluginLoaderPythonPrivate);
/* loaded_plugins maps PeasPluginInfo to a PythonInfo */
pyloader->priv->loaded_plugins = g_hash_table_new_full (g_direct_hash,
g_direct_equal,
NULL,
(GDestroyNotify) destroy_python_info);
}
static void
peas_plugin_loader_python_finalize (GObject *object)
{
PeasPluginLoaderPython *pyloader = PEAS_PLUGIN_LOADER_PYTHON (object);
g_hash_table_destroy (pyloader->priv->loaded_plugins);
if (Py_IsInitialized ())
{
if (pyloader->priv->py_thread_state)
{
PyEval_RestoreThread (pyloader->priv->py_thread_state);
pyloader->priv->py_thread_state = NULL;
}
if (pyloader->priv->idle_gc != 0)
{
g_source_remove (pyloader->priv->idle_gc);
pyloader->priv->idle_gc = 0;
}
if (!pyloader->priv->init_failed)
run_gc_protected ();
if (pyloader->priv->must_finalize_python)
{
if (!pyloader->priv->init_failed)
pyg_gil_state_ensure ();
Py_Finalize ();
}
}
G_OBJECT_CLASS (peas_plugin_loader_python_parent_class)->finalize (object);
}
static void
peas_plugin_loader_python_class_init (PeasPluginLoaderPythonClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
PeasPluginLoaderClass *loader_class = PEAS_PLUGIN_LOADER_CLASS (klass);
object_class->finalize = peas_plugin_loader_python_finalize;
loader_class->initialize = peas_plugin_loader_python_initialize;
loader_class->load = peas_plugin_loader_python_load;
loader_class->unload = peas_plugin_loader_python_unload;
loader_class->create_extension = peas_plugin_loader_python_create_extension;
loader_class->provides_extension = peas_plugin_loader_python_provides_extension;
loader_class->garbage_collect = peas_plugin_loader_python_garbage_collect;
g_type_class_add_private (object_class, sizeof (PeasPluginLoaderPythonPrivate));
}
|