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
|
/*
* hosting_python.c
*
* $Id: hosting_python.c,v 1.2.2.2 2011/01/25 14:29:06 source Exp $
*
* Virtuoso Python hosting plugin
*
* This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
* project.
*
* Copyright (C) 1998-2006 OpenLink Software
*
* This project 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; only version 2 of the License, dated June 1991.
*
* 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 St, Fifth Floor, Boston, MA 02110-1301 USA
*
*
*/
#include <stdio.h>
#include <stdarg.h>
#ifdef _POSIX_C_SOURCE
#undef _POSIX_C_SOURCE
#endif
#ifdef _XOPEN_SOURCE
#undef _XOPEN_SOURCE
#endif
#if defined (_DEBUG) && defined (WIN32)
/* ActiveState Python has some weird "feature"
* that will automatically include refs to
* wrong lib if that _DEBUG is defined
*/
#undef _DEBUG
#endif
#include <Python.h>
#if (PY_MAJOR_VERSION > 2) || (PY_MAJOR_VERSION == 2 && PY_MINOR_VERSION > 2)
#undef PACKAGE_NAME
#undef PACKAGE_STRING
#undef PACKAGE_TARNAME
#undef PACKAGE_VERSION
#endif
#include <hosting.h>
#include <sqlver.h>
#ifndef WITH_THREAD
#error Python should be compiled to use threads. Check that WITH_THREAD is defined
#endif
#define SET_ERR(str) \
{ \
if (err && max_len > 0) \
{ \
strncpy (err, str, max_len); \
err[max_len] = 0; \
} \
}
static int
log_debug (char *format, ...)
{
va_list ap;
int rc;
va_start (ap, format);
fprintf (stderr, "HOSTING_PYTHON:");
rc = vfprintf (stderr, format, ap);
fprintf (stderr, "\n");
va_end (ap);
return rc;
}
#define VIRT_HANDLER_NAME "__virt_handler"
#include "virt_handler.c"
#include "import_gate_virtuoso.h"
static void
define_virtuoso_module (PyInterpreterState *interp)
{
PyObject *modules = interp->modules;
PyObject *builtin_module;
PyObject *code_obj;
builtin_module = PyDict_GetItemString(modules, "__builtin__");
code_obj = PyObject_CallMethod (builtin_module, "compile", "sss", virt_handler, "<string>", "exec");
PyImport_ExecCodeModule (VIRT_HANDLER_NAME, code_obj);
Py_DECREF (code_obj);
}
static PyInterpreterState *
start_python_interpreter (char *err, int max_len)
{
PyInterpreterState *interp = NULL;
PyThreadState *tstate;
/*log_debug ("start_python_interpreter");*/
PyEval_AcquireLock();
tstate = Py_NewInterpreter ();
if (!tstate)
{
SET_ERR ("Unable to start the Python interpreter");
}
interp = tstate->interp;
define_virtuoso_module (interp);
PyThreadState_Clear (tstate);
PyEval_ReleaseThread(tstate);
PyThreadState_Delete (tstate);
return interp;
}
static PyThreadState *
init_python_thread (PyInterpreterState *istate, char *err, int max_len)
{
PyThreadState * tstate = PyThreadState_New(istate);
if (!tstate)
{
SET_ERR ("Unable to make a thread state");
return NULL;
}
PyEval_AcquireThread(tstate);
return tstate;
}
static void
done_python_thread (void)
{
PyThreadState *tstate = PyThreadState_Get();
PyThreadState_Clear (tstate);
PyEval_ReleaseThread(tstate);
PyThreadState_Delete (tstate);
}
static void
stop_python_interpreter (PyInterpreterState *interp)
{
PyThreadState * tstate;
if (NULL != (tstate = init_python_thread (interp, NULL, 0)))
{
Py_EndInterpreter (tstate);
PyEval_ReleaseLock ();
}
}
static caddr_t
bif_python_exec (caddr_t *qst, caddr_t *err, state_slot_t **args)
{
caddr_t in_string = bif_string_arg (qst, args, 0, "python_exec");
caddr_t func_name = bif_string_arg (qst, args, 1, "python_exec");
char * ret = NULL;
caddr_t box = NULL;
PyObject *po_module, *func, *stringarg, *po_args, *rslt, *global_dict, *local_dict, *result;
PyThreadState * tstate;
PyObject *code_obj;
PyInterpreterState * istate = NULL;
sec_check_dba (qst, "python_exec");
PyEval_AcquireLock ();
tstate = Py_NewInterpreter ();
istate = tstate->interp;
/*
PyThreadState_Clear (tstate);
PyEval_ReleaseThread(tstate);
PyThreadState_Delete (tstate);
tstate = PyThreadState_New(istate);
if (!tstate)
{
goto err_ret;
}
PyEval_AcquireThread(tstate);
*/
#if 0
po_module = PyDict_GetItemString(istate->modules, "__builtin__");
code_obj = PyObject_CallMethod (po_module, "compile", "sss", in_string, "<string>", "exec");
PyImport_ExecCodeModule (func_name, code_obj);
Py_DECREF (code_obj);
po_module = PyDict_GetItemString (istate->modules, func_name);
#else
po_module = PyDict_GetItemString (istate->modules, "__main__");
global_dict = PyModule_GetDict (po_module);
result = PyRun_String (in_string, Py_file_input, global_dict, global_dict);
if (!result)
{
if (PyErr_Occurred ())
{
PyErr_Print ();
}
goto err_ret_thr;
}
else
{
Py_DECREF (result);
}
#endif
func = PyObject_GetAttrString(po_module, func_name);
if (func)
{
if (PyCallable_Check(func))
{
int i, n_pars = BOX_ELEMENTS(args);
po_args = PyTuple_New (n_pars - 2);
for (i = 2; i < n_pars; i ++)
{
caddr_t par = bif_string_arg (qst, args, i, "python_exec");
stringarg = PyString_FromString (par);
PyTuple_SetItem (po_args, i - 2, stringarg);
}
rslt = PyObject_CallObject(func, po_args);
/*
no need PyTuple_SetItem steal the reference
for (i = 2; i < n_pars; i ++)
{
stringarg = PyTuple_GetItem (po_args, i - 2);
Py_XDECREF(stringarg);
}
*/
if (rslt)
{
ret = PyString_AsString (rslt);
box = ret ? box_dv_short_string (ret) : NULL;
Py_XDECREF(rslt);
}
Py_XDECREF(po_args);
}
Py_XDECREF(func);
}
if (PyErr_Occurred ())
{
PyErr_Print ();
}
err_ret_thr:
/*
PyThreadState_Clear (tstate);
PyEval_ReleaseThread(tstate);
PyThreadState_Delete (tstate);
*/
err_ret:
/*
tstate = PyThreadState_New(istate);
PyEval_AcquireThread(tstate);
*/
Py_EndInterpreter (tstate);
PyEval_ReleaseLock ();
return box;
}
static void
hosting_python_connect (void *x)
{
/*log_debug ("hosting_python_connect");*/
bif_define ("python_exec", bif_python_exec);
}
static hosting_version_t
hosting_python_version = {
{
HOSTING_TITLE, /*!< Title of unit, filled by unit */
DBMS_SRV_GEN_MAJOR DBMS_SRV_GEN_MINOR,/*!< Version number, filled by unit */
"OpenLink Software", /*!< Plugin's developer, filled by unit */
"Python " PY_VERSION " hosting plugin", /*!< Any additional info, filled by unit */
NULL, /*!< Error message, filled by unit loader */
NULL, /*!< Name of file with unit's code, filled by unit loader */
hosting_python_connect, /*!< Pointer to connection function, cannot be NULL */
NULL, /*!< Pointer to disconnection function, or NULL */
NULL, /*!< Pointer to activation function, or NULL */
NULL, /*!< Pointer to deactivation function, or NULL */
&_gate,
},
NULL, NULL, NULL, NULL, NULL,
NULL
};
void *
virtm_client_attach (char *err, int max_err_len)
{
PyInterpreterState *interp = start_python_interpreter (err, max_err_len);
/*log_debug ("virtm_client_attach");*/
return interp;
}
unit_version_t*
hosting_python_check (unit_version_t *in, void *appdata)
{
static char *args[2];
void *dll;
args[0] = "py";
args[1] = NULL;
hosting_python_version.hv_extensions = args;
Py_Initialize ();
PyEval_InitThreads();
PyEval_SaveThread();
/*log_debug ("hosting_python_check");*/
return &hosting_python_version.hv_pversion;
}
void
virtm_client_detach (void *cli)
{
PyInterpreterState *interp = (PyInterpreterState *) cli;
/*log_debug ("virtm_client_detach");*/
if (interp)
{
stop_python_interpreter (interp);
}
}
void *
virtm_client_clone (void *cli, char *err, int max_err_len)
{
return NULL;
}
void
virtm_client_free (void *cli)
{
free (cli);
}
static PyObject *
virtm_make_python_dict (const char **options, int n_options)
{
PyObject *dict = PyDict_New ();
int inx;
if (options)
{
for (inx = 0; inx < n_options; inx += 2)
PyDict_SetItemString (dict, (char *) options [inx], PyString_FromString (options [inx + 1]));
}
return dict;
}
char *
virtm_http_handler (void *cli, char *err, int max_len,
const char *base_uri, const char *content,
const char *params, const char **lines, int n_lines,
char **head_ret, const char **options, int n_options, char **diag_ret, int compile_only)
{
PyInterpreterState *interp = (PyInterpreterState *) cli;
char *retval = NULL;
PyObject *virt_handler_module, *py_retval = NULL;
/*log_debug ("virtm_http_handler");*/
if (diag_ret)
*diag_ret = NULL;
if (compile_only)
return NULL;
if (!interp)
{
SET_ERR ("client not attached to the interface");
return NULL;
}
if (!init_python_thread (interp, err, max_len))
return NULL;
/* get the virt handler module */
virt_handler_module = PyDict_GetItemString (interp->modules, VIRT_HANDLER_NAME);
if (virt_handler_module)
{
if (content)
{
PyObject *obj[6];
int inx;
py_retval = PyObject_CallMethodObjArgs (virt_handler_module,
obj[0] = PyString_FromString ("call_string"),
obj[1] = PyString_FromString (base_uri),
obj[2] = PyString_FromString (content),
obj[3] = virtm_make_python_dict (options, n_options),
obj[4] = PyString_FromString (params),
obj[5] = PyString_FromString (""),
NULL);
for (inx = 0; inx < (sizeof (obj) / sizeof (PyObject *)); inx++)
{
Py_XDECREF (obj[inx]);
}
}
else
{
PyObject *obj[5];
int inx;
memset (obj, 0, sizeof (obj));
py_retval = PyObject_CallMethodObjArgs (virt_handler_module,
obj[0] = PyString_FromString ("call_file"),
obj[1] = PyString_FromString (base_uri),
obj[2] = virtm_make_python_dict (options, n_options),
params ? (obj[3] = PyString_FromString (params)) : Py_None,
obj[4] = PyString_FromString (""),
NULL);
for (inx = 0; inx < (sizeof (obj) / sizeof (PyObject *)); inx++)
{
Py_XDECREF (obj[inx]);
}
}
}
else
{
SET_ERR ("No __virt_handler module defined");
}
if (py_retval && PyTuple_Check (py_retval) && PyTuple_Size (py_retval) >= 3)
{
PyObject *item;
char *sitem;
int size;
item = PyTuple_GetItem (py_retval, 2);
if (item && diag_ret && PyString_Check (item) && 0 == PyString_AsStringAndSize (item, &sitem, &size))
{
if (size && sitem)
{
/*log_debug ("ret[2]=diag_ret=[%s]\n", sitem);*/
*diag_ret = malloc (size + 1);
strncpy (*diag_ret, sitem, size);
(*diag_ret)[size] = 0;
}
else
*diag_ret = NULL;
}
item = PyTuple_GetItem (py_retval, 1);
if (item && head_ret && PyString_Check (item) && 0 == PyString_AsStringAndSize (item, &sitem, &size))
{
if (size && sitem)
{
/*log_debug ("ret[1]=head_ret=[%s]\n", sitem);*/
*head_ret = malloc (size + 1);
strncpy (*head_ret, sitem, size);
(*head_ret)[size] = 0;
}
else
*head_ret = NULL;
}
item = PyTuple_GetItem (py_retval, 0);
if (item && PyString_Check (item) && 0 == PyString_AsStringAndSize (item, &sitem, &size))
{
if (size && sitem)
{
/*log_debug ("ret[0]=retval=[%s]\n", sitem);*/
retval = malloc (size + 1);
strncpy (retval, sitem, size);
retval[size] = 0;
}
}
if (PyTuple_Size (py_retval) > 3)
{
char buffer[512];
strcpy (buffer, "python runtime exception ");
item = PyTuple_GetItem (py_retval, 3);
if (item && PyString_Check (item) && 0 == PyString_AsStringAndSize (item, &sitem, &size))
{
/*log_debug ("arr[3]=[%s]\n", sitem);*/
strncat (buffer, sitem, sizeof (buffer) - strlen (buffer) - 1);
}
SET_ERR (buffer);
}
}
Py_XDECREF (py_retval);
if (PyErr_Occurred ())
{
SET_ERR ("Unknown python error occurred");
PyErr_Print ();
}
done_python_thread ();
return retval;
}
|