2006-09-10 23:20:44 +00:00
|
|
|
/*
|
|
|
|
* FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
|
|
|
|
* Copyright (C) 2005/2006, Anthony Minessale II <anthmct@yahoo.com>
|
|
|
|
*
|
|
|
|
* Version: MPL 1.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Anthony Minessale II <anthmct@yahoo.com>
|
|
|
|
* Portions created by the Initial Developer are Copyright (C)
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Brian Fertig <brian.fertig@convergencetek.com>
|
2006-12-21 17:11:43 +00:00
|
|
|
* Johny Kadarisman <jkr888@gmail.com>
|
2007-05-10 18:51:47 +00:00
|
|
|
* Traun Leyden <tleyden@branchcut.com>
|
2006-09-10 23:20:44 +00:00
|
|
|
*
|
|
|
|
* mod_python.c -- Python Module
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-09-17 21:28:31 +00:00
|
|
|
#include <Python.h>
|
|
|
|
|
2006-09-10 23:20:44 +00:00
|
|
|
#ifndef _REENTRANT
|
|
|
|
#define _REENTRANT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _GNU_SOURCE
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <switch.h>
|
2008-07-11 19:42:52 +00:00
|
|
|
#include "mod_python_extra.h"
|
2007-05-07 21:27:42 +00:00
|
|
|
|
2007-06-01 18:50:34 +00:00
|
|
|
PyThreadState *mainThreadState = NULL;
|
2007-05-07 21:27:42 +00:00
|
|
|
|
2006-11-14 06:13:04 +00:00
|
|
|
void init_freeswitch(void);
|
2008-07-17 21:02:24 +00:00
|
|
|
int py_thread(const char *text);
|
2006-12-21 17:11:43 +00:00
|
|
|
static switch_api_interface_t python_run_interface;
|
2006-09-10 23:20:44 +00:00
|
|
|
|
2007-06-13 17:48:49 +00:00
|
|
|
SWITCH_MODULE_LOAD_FUNCTION(mod_python_load);
|
|
|
|
SWITCH_MODULE_SHUTDOWN_FUNCTION(mod_python_shutdown);
|
|
|
|
SWITCH_MODULE_DEFINITION(mod_python, mod_python_load, mod_python_shutdown, NULL);
|
2006-09-10 23:20:44 +00:00
|
|
|
|
2008-07-11 21:41:19 +00:00
|
|
|
static struct {
|
|
|
|
switch_memory_pool_t *pool;
|
|
|
|
char *xml_handler;
|
|
|
|
switch_event_node_t *node;
|
|
|
|
} globals;
|
|
|
|
|
2008-07-16 14:58:00 +00:00
|
|
|
static void eval_some_python(const char *funcname, char *args, switch_core_session_t *session, switch_stream_handle_t *stream, switch_event_t *params, char **str)
|
2007-05-07 21:27:42 +00:00
|
|
|
{
|
2007-05-10 18:51:47 +00:00
|
|
|
PyThreadState *tstate = NULL;
|
2007-05-07 21:27:42 +00:00
|
|
|
char *dupargs = NULL;
|
2008-07-16 14:58:00 +00:00
|
|
|
char *argv[2] = { 0 };
|
2007-05-07 21:27:42 +00:00
|
|
|
int argc;
|
|
|
|
int lead = 0;
|
2007-06-15 17:25:41 +00:00
|
|
|
char *script = NULL;
|
2008-07-11 20:58:42 +00:00
|
|
|
PyObject *module = NULL, *sp = NULL, *stp = NULL, *eve = NULL;
|
2007-06-15 17:25:41 +00:00
|
|
|
PyObject *function = NULL;
|
|
|
|
PyObject *arg = NULL;
|
|
|
|
PyObject *result = NULL;
|
2008-07-16 14:58:00 +00:00
|
|
|
switch_channel_t *channel = NULL;
|
|
|
|
char *p;
|
2007-05-07 21:27:42 +00:00
|
|
|
|
2008-07-11 21:41:19 +00:00
|
|
|
if (str) {
|
|
|
|
*str = NULL;
|
|
|
|
}
|
|
|
|
|
2007-05-07 21:27:42 +00:00
|
|
|
if (args) {
|
2008-05-27 04:54:52 +00:00
|
|
|
dupargs = strdup(args);
|
2007-05-07 21:27:42 +00:00
|
|
|
} else {
|
2008-05-27 04:54:52 +00:00
|
|
|
return;
|
2007-05-07 21:27:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
assert(dupargs != NULL);
|
2008-05-27 04:54:52 +00:00
|
|
|
|
2007-05-07 21:27:42 +00:00
|
|
|
if (!(argc = switch_separate_string(dupargs, ' ', argv, (sizeof(argv) / sizeof(argv[0]))))) {
|
2008-05-27 04:54:52 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "No module name specified!\n");
|
|
|
|
goto done;
|
2007-05-07 21:27:42 +00:00
|
|
|
}
|
|
|
|
|
2008-07-16 14:58:00 +00:00
|
|
|
script = strdup(switch_str_nil(argv[0]));
|
|
|
|
|
2007-05-08 16:08:48 +00:00
|
|
|
lead = 1;
|
2007-05-07 21:27:42 +00:00
|
|
|
|
2008-07-16 14:58:00 +00:00
|
|
|
if ((p = strstr(script, "::"))) {
|
|
|
|
*p = '\0';
|
|
|
|
p += 2;
|
|
|
|
if (p) {
|
|
|
|
funcname = p;
|
|
|
|
}
|
|
|
|
}
|
2007-06-15 17:25:41 +00:00
|
|
|
|
2008-07-16 14:58:00 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "Invoking py module: %s\n", script);
|
|
|
|
|
2007-06-15 17:25:41 +00:00
|
|
|
tstate = PyThreadState_New(mainThreadState->interp);
|
|
|
|
if (!tstate) {
|
2008-05-27 04:54:52 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "error acquiring tstate\n");
|
|
|
|
goto done;
|
2007-06-15 17:25:41 +00:00
|
|
|
}
|
|
|
|
// swap in thread state
|
|
|
|
PyEval_AcquireThread(tstate);
|
2008-05-27 04:54:52 +00:00
|
|
|
init_freeswitch();
|
2007-06-15 17:25:41 +00:00
|
|
|
|
|
|
|
// import the module
|
2008-05-27 04:54:52 +00:00
|
|
|
module = PyImport_ImportModule((char *) script);
|
2007-06-15 17:25:41 +00:00
|
|
|
if (!module) {
|
2008-05-27 04:54:52 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error importing module\n");
|
|
|
|
PyErr_Print();
|
|
|
|
PyErr_Clear();
|
|
|
|
goto done_swap_out;
|
|
|
|
}
|
2007-06-15 17:25:41 +00:00
|
|
|
// reload the module
|
|
|
|
module = PyImport_ReloadModule(module);
|
|
|
|
if (!module) {
|
2008-05-27 04:54:52 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error reloading module\n");
|
|
|
|
PyErr_Print();
|
|
|
|
PyErr_Clear();
|
|
|
|
goto done_swap_out;
|
|
|
|
}
|
2008-07-11 20:58:42 +00:00
|
|
|
|
2007-06-15 17:25:41 +00:00
|
|
|
// get the handler function to be called
|
2008-07-16 14:58:00 +00:00
|
|
|
function = PyObject_GetAttrString(module, (char *)funcname);
|
2007-06-15 17:25:41 +00:00
|
|
|
if (!function) {
|
2008-07-16 14:58:00 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Module does not define %s\n", funcname);
|
2007-06-15 17:25:41 +00:00
|
|
|
PyErr_Print();
|
|
|
|
PyErr_Clear();
|
|
|
|
goto done_swap_out;
|
2007-05-08 15:44:44 +00:00
|
|
|
}
|
2008-05-27 04:54:52 +00:00
|
|
|
|
2008-07-16 14:58:00 +00:00
|
|
|
if (session) {
|
|
|
|
channel = switch_core_session_get_channel(session);
|
|
|
|
sp = mod_python_conjure_session(module, session);
|
2007-05-08 15:44:44 +00:00
|
|
|
}
|
2007-05-07 21:27:42 +00:00
|
|
|
|
2008-07-16 14:58:00 +00:00
|
|
|
if (params) {
|
|
|
|
eve = mod_python_conjure_event(params);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stream) {
|
|
|
|
stp = mod_python_conjure_stream(stream);
|
|
|
|
if (stream->param_event) {
|
|
|
|
eve = mod_python_conjure_event(stream->param_event);
|
|
|
|
}
|
2008-07-11 19:42:52 +00:00
|
|
|
}
|
|
|
|
|
2008-07-16 14:58:00 +00:00
|
|
|
if (sp && eve && stp) {
|
|
|
|
arg = Py_BuildValue("(OOOs)", sp, stp, eve, switch_str_nil(argv[1]));
|
|
|
|
} else if (eve && stp) {
|
|
|
|
arg = Py_BuildValue("(sOOs)", "na", stp, eve, switch_str_nil(argv[1]));
|
|
|
|
} else if (eve) {
|
|
|
|
arg = Py_BuildValue("(Os)", eve, switch_str_nil(argv[1]));
|
|
|
|
} else if (sp) {
|
|
|
|
arg = Py_BuildValue("(Os)", sp, switch_str_nil(argv[1]));
|
|
|
|
} else {
|
|
|
|
arg = Py_BuildValue("(s)", switch_str_nil(argv[1]));
|
|
|
|
}
|
|
|
|
|
2007-06-15 17:25:41 +00:00
|
|
|
// invoke the handler
|
2007-06-22 19:14:53 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Call python script \n");
|
2008-05-27 04:54:52 +00:00
|
|
|
result = PyEval_CallObjectWithKeywords(function, arg, (PyObject *) NULL);
|
2007-06-22 19:14:53 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Finished calling python script \n");
|
2008-07-16 14:58:00 +00:00
|
|
|
|
2007-06-15 17:25:41 +00:00
|
|
|
// check the result and print out any errors
|
2008-07-11 21:41:19 +00:00
|
|
|
if (result) {
|
|
|
|
if (str) {
|
|
|
|
*str = strdup((char *) PyString_AsString(result));
|
|
|
|
}
|
|
|
|
} else {
|
2008-05-27 04:54:52 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error calling python script\n");
|
|
|
|
PyErr_Print();
|
|
|
|
PyErr_Clear();
|
2008-07-16 14:58:00 +00:00
|
|
|
PyRun_SimpleString("python_makes_sense");
|
|
|
|
PyGC_Collect();
|
2007-05-07 21:27:42 +00:00
|
|
|
}
|
2008-07-16 14:58:00 +00:00
|
|
|
|
2008-07-11 21:41:19 +00:00
|
|
|
done_swap_out:
|
2008-07-16 14:58:00 +00:00
|
|
|
|
|
|
|
if (arg) {
|
|
|
|
Py_DECREF(arg);
|
|
|
|
}
|
2008-07-11 21:41:19 +00:00
|
|
|
|
2008-07-11 19:42:52 +00:00
|
|
|
if (sp) {
|
2008-07-16 14:58:00 +00:00
|
|
|
Py_DECREF(sp);
|
2008-07-11 19:42:52 +00:00
|
|
|
}
|
|
|
|
|
2008-07-16 14:58:00 +00:00
|
|
|
if (tstate) {
|
|
|
|
PyEval_ReleaseThread(tstate);
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
|
|
|
|
2007-05-07 21:27:42 +00:00
|
|
|
switch_safe_free(dupargs);
|
2008-07-17 14:39:28 +00:00
|
|
|
switch_safe_free(script);
|
2007-06-15 17:25:41 +00:00
|
|
|
|
|
|
|
|
2007-05-07 21:27:42 +00:00
|
|
|
}
|
|
|
|
|
2008-07-11 21:41:19 +00:00
|
|
|
|
|
|
|
static switch_xml_t python_fetch(const char *section,
|
|
|
|
const char *tag_name, const char *key_name, const char *key_value, switch_event_t *params, void *user_data)
|
|
|
|
{
|
|
|
|
|
|
|
|
switch_xml_t xml = NULL;
|
|
|
|
char *str = NULL;
|
|
|
|
|
|
|
|
if (!switch_strlen_zero(globals.xml_handler)) {
|
|
|
|
char *mycmd = strdup(globals.xml_handler);
|
|
|
|
|
|
|
|
switch_assert(mycmd);
|
|
|
|
|
2008-07-16 14:58:00 +00:00
|
|
|
eval_some_python("xml_fetch", mycmd, NULL, NULL, params, &str);
|
2008-07-11 21:41:19 +00:00
|
|
|
|
|
|
|
if (str) {
|
|
|
|
if (switch_strlen_zero(str)) {
|
|
|
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "No Result\n");
|
|
|
|
} else if (!(xml = switch_xml_parse_str((char *) str, strlen(str)))) {
|
|
|
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error Parsing XML Result!\n");
|
|
|
|
}
|
|
|
|
switch_safe_free(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(mycmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
return xml;
|
|
|
|
}
|
|
|
|
|
|
|
|
static switch_status_t do_config(void)
|
|
|
|
{
|
|
|
|
char *cf = "python.conf";
|
|
|
|
switch_xml_t cfg, xml, settings, param;
|
|
|
|
|
|
|
|
if (!(xml = switch_xml_open_cfg(cf, &cfg, NULL))) {
|
|
|
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "open of %s failed\n", cf);
|
|
|
|
return SWITCH_STATUS_TERM;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((settings = switch_xml_child(cfg, "settings"))) {
|
|
|
|
for (param = switch_xml_child(settings, "param"); param; param = param->next) {
|
|
|
|
char *var = (char *) switch_xml_attr_soft(param, "name");
|
|
|
|
char *val = (char *) switch_xml_attr_soft(param, "value");
|
|
|
|
|
|
|
|
if (!strcmp(var, "xml-handler-script")) {
|
|
|
|
globals.xml_handler = switch_core_strdup(globals.pool, val);
|
|
|
|
} else if (!strcmp(var, "xml-handler-bindings")) {
|
|
|
|
if (!switch_strlen_zero(globals.xml_handler)) {
|
|
|
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "binding '%s' to '%s'\n", globals.xml_handler, val);
|
|
|
|
switch_xml_bind_search_function(python_fetch, switch_xml_parse_section_string(val), NULL);
|
|
|
|
}
|
2008-07-17 21:02:24 +00:00
|
|
|
} else if (!strcmp(var, "startup-script")) {
|
|
|
|
if (val) {
|
|
|
|
py_thread(val);
|
|
|
|
}
|
2008-07-11 21:41:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch_xml_free(xml);
|
|
|
|
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2007-11-01 12:25:00 +00:00
|
|
|
SWITCH_STANDARD_APP(python_function)
|
2006-09-10 23:20:44 +00:00
|
|
|
{
|
2008-07-16 14:58:00 +00:00
|
|
|
eval_some_python("handler", (char *) data, session, NULL, NULL, NULL);
|
2008-05-27 04:54:52 +00:00
|
|
|
|
2007-05-07 21:27:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct switch_py_thread {
|
|
|
|
char *args;
|
|
|
|
switch_memory_pool_t *pool;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void *SWITCH_THREAD_FUNC py_thread_run(switch_thread_t *thread, void *obj)
|
|
|
|
{
|
|
|
|
switch_memory_pool_t *pool;
|
|
|
|
struct switch_py_thread *pt = (struct switch_py_thread *) obj;
|
|
|
|
|
2008-07-16 14:58:00 +00:00
|
|
|
eval_some_python("runtime", pt->args, NULL, NULL, NULL, NULL);
|
2006-09-10 23:20:44 +00:00
|
|
|
|
2007-05-07 21:27:42 +00:00
|
|
|
pool = pt->pool;
|
|
|
|
switch_core_destroy_memory_pool(&pool);
|
2006-09-10 23:20:44 +00:00
|
|
|
|
2007-05-07 21:27:42 +00:00
|
|
|
return NULL;
|
2006-09-10 23:20:44 +00:00
|
|
|
}
|
|
|
|
|
2008-07-11 20:58:42 +00:00
|
|
|
SWITCH_STANDARD_API(api_python)
|
|
|
|
{
|
|
|
|
|
2008-07-16 14:58:00 +00:00
|
|
|
eval_some_python("fsapi", (char *) cmd, session, stream, NULL, NULL);
|
2008-07-11 20:58:42 +00:00
|
|
|
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2008-07-17 21:02:24 +00:00
|
|
|
int py_thread(const char *text)
|
2006-12-21 17:11:43 +00:00
|
|
|
{
|
2007-05-07 21:27:42 +00:00
|
|
|
switch_thread_t *thread;
|
2008-05-27 04:54:52 +00:00
|
|
|
switch_threadattr_t *thd_attr = NULL;
|
2007-05-07 21:27:42 +00:00
|
|
|
switch_memory_pool_t *pool;
|
|
|
|
struct switch_py_thread *pt;
|
2006-12-21 17:11:43 +00:00
|
|
|
|
2007-05-07 21:27:42 +00:00
|
|
|
switch_core_new_memory_pool(&pool);
|
|
|
|
assert(pool != NULL);
|
2006-12-21 17:11:43 +00:00
|
|
|
|
2007-05-07 21:27:42 +00:00
|
|
|
pt = switch_core_alloc(pool, sizeof(*pt));
|
|
|
|
assert(pt != NULL);
|
2006-12-21 17:11:43 +00:00
|
|
|
|
2007-05-07 21:27:42 +00:00
|
|
|
pt->pool = pool;
|
2008-07-17 21:02:24 +00:00
|
|
|
pt->args = switch_core_strdup(pt->pool, text);
|
2008-05-27 04:54:52 +00:00
|
|
|
|
|
|
|
switch_threadattr_create(&thd_attr, pt->pool);
|
|
|
|
switch_threadattr_detach_set(thd_attr, 1);
|
|
|
|
switch_threadattr_stacksize_set(thd_attr, SWITCH_THREAD_STACKSIZE);
|
|
|
|
switch_thread_create(&thread, thd_attr, py_thread_run, pt, pt->pool);
|
2006-12-21 17:11:43 +00:00
|
|
|
|
2008-07-17 21:02:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void message_query_handler(switch_event_t *event)
|
|
|
|
{
|
|
|
|
char *account = switch_event_get_header(event, "message-account");
|
|
|
|
|
|
|
|
if (account) {
|
|
|
|
char *path, *cmd;
|
|
|
|
|
|
|
|
path = switch_mprintf("%s%smwi.py", SWITCH_GLOBAL_dirs.script_dir, SWITCH_PATH_SEPARATOR);
|
|
|
|
switch_assert(path != NULL);
|
|
|
|
|
|
|
|
if (switch_file_exists(path, NULL) == SWITCH_STATUS_SUCCESS) {
|
|
|
|
cmd = switch_mprintf("%s %s", path, account);
|
|
|
|
switch_assert(cmd != NULL);
|
|
|
|
py_thread(cmd);
|
|
|
|
switch_safe_free(cmd);
|
|
|
|
}
|
|
|
|
switch_safe_free(path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SWITCH_STANDARD_API(launch_python)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (switch_strlen_zero(cmd)) {
|
|
|
|
stream->write_function(stream, "USAGE: %s\n", python_run_interface.syntax);
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
py_thread(cmd);
|
2007-03-29 22:31:56 +00:00
|
|
|
stream->write_function(stream, "OK\n");
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
2006-12-21 17:11:43 +00:00
|
|
|
}
|
|
|
|
|
2007-06-13 17:48:49 +00:00
|
|
|
SWITCH_MODULE_LOAD_FUNCTION(mod_python_load)
|
2006-09-10 23:20:44 +00:00
|
|
|
{
|
2008-07-08 06:59:02 +00:00
|
|
|
switch_api_interface_t *api_interface;
|
|
|
|
switch_application_interface_t *app_interface;
|
2008-07-16 14:58:00 +00:00
|
|
|
char *pp = getenv("PYTHONPATH");
|
|
|
|
|
2008-07-17 21:02:24 +00:00
|
|
|
if (switch_event_bind_removable(modname, SWITCH_EVENT_MESSAGE_QUERY, SWITCH_EVENT_SUBCLASS_ANY, message_query_handler, NULL, &globals.node)
|
|
|
|
!= SWITCH_STATUS_SUCCESS) {
|
|
|
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Couldn't bind!\n");
|
|
|
|
return SWITCH_STATUS_GENERR;
|
|
|
|
}
|
|
|
|
|
2008-07-16 14:58:00 +00:00
|
|
|
if (pp) {
|
|
|
|
char *path = switch_mprintf("%s:%s", pp, SWITCH_GLOBAL_dirs.script_dir);
|
|
|
|
setenv("PYTHONPATH", path, 1);
|
|
|
|
free(path);
|
|
|
|
} else {
|
|
|
|
setenv("PYTHONPATH", SWITCH_GLOBAL_dirs.script_dir, 1);
|
|
|
|
}
|
2008-07-08 06:59:02 +00:00
|
|
|
|
2006-09-10 23:20:44 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "Python Framework Loading...\n");
|
2008-05-27 04:54:52 +00:00
|
|
|
|
2008-07-11 21:41:19 +00:00
|
|
|
globals.pool = pool;
|
|
|
|
do_config();
|
|
|
|
|
2007-06-15 17:25:41 +00:00
|
|
|
if (!Py_IsInitialized()) {
|
2007-05-07 21:27:42 +00:00
|
|
|
|
2008-04-24 17:58:38 +00:00
|
|
|
// initialize python system
|
|
|
|
Py_Initialize();
|
2008-07-16 14:58:00 +00:00
|
|
|
|
2008-04-24 17:58:38 +00:00
|
|
|
// create GIL and a threadstate
|
|
|
|
PyEval_InitThreads();
|
2006-09-10 23:20:44 +00:00
|
|
|
|
2008-04-24 17:58:38 +00:00
|
|
|
// save threadstate since it's interp field will be needed
|
|
|
|
// to create new threadstates, and will be needed for shutdown
|
|
|
|
mainThreadState = PyThreadState_Get();
|
2008-05-27 04:54:52 +00:00
|
|
|
|
2008-04-24 17:58:38 +00:00
|
|
|
// swap out threadstate since the call threads will create
|
|
|
|
// their own and swap in their threadstate
|
2008-05-27 04:54:52 +00:00
|
|
|
PyThreadState_Swap(NULL);
|
2007-06-15 17:25:41 +00:00
|
|
|
|
2008-04-24 17:58:38 +00:00
|
|
|
// release GIL
|
2008-05-27 04:54:52 +00:00
|
|
|
PyEval_ReleaseLock();
|
2007-06-15 17:25:41 +00:00
|
|
|
}
|
2007-05-08 15:44:44 +00:00
|
|
|
|
2008-07-08 06:59:02 +00:00
|
|
|
|
|
|
|
/* connect my internal structure to the blank pointer passed to me */
|
|
|
|
*module_interface = switch_loadable_module_create_module_interface(pool, modname);
|
2008-07-11 20:58:42 +00:00
|
|
|
SWITCH_ADD_API(api_interface, "pyrun", "run a python script", launch_python, "python </path/to/script>");
|
|
|
|
SWITCH_ADD_API(api_interface, "python", "run a python script", api_python, "python </path/to/script>");
|
2008-07-08 06:59:02 +00:00
|
|
|
SWITCH_ADD_APP(app_interface, "python", "Launch python ivr", "Run a python ivr on a channel", python_function, "<script> [additional_vars [...]]",
|
|
|
|
SAF_SUPPORT_NOMEDIA);
|
|
|
|
|
2006-09-10 23:20:44 +00:00
|
|
|
/* indicate that the module should continue to be loaded */
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2007-05-07 21:27:42 +00:00
|
|
|
Called when the system shuts down*/
|
2007-06-13 17:48:49 +00:00
|
|
|
SWITCH_MODULE_SHUTDOWN_FUNCTION(mod_python_shutdown)
|
2007-05-07 21:27:42 +00:00
|
|
|
{
|
2008-05-27 04:54:52 +00:00
|
|
|
PyInterpreterState *mainInterpreterState;
|
|
|
|
PyThreadState *myThreadState;
|
|
|
|
|
|
|
|
PyEval_AcquireLock();
|
|
|
|
mainInterpreterState = mainThreadState->interp;
|
|
|
|
myThreadState = PyThreadState_New(mainInterpreterState);
|
|
|
|
PyThreadState_Swap(myThreadState);
|
|
|
|
PyEval_ReleaseLock();
|
|
|
|
|
|
|
|
Py_Finalize();
|
|
|
|
PyEval_ReleaseLock();
|
2008-07-11 21:41:19 +00:00
|
|
|
switch_event_unbind(&globals.node);
|
|
|
|
return SWITCH_STATUS_UNLOAD;
|
2007-05-07 21:27:42 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-09-10 23:20:44 +00:00
|
|
|
/* Return the number of arguments of the application command line */
|
2008-01-27 05:02:52 +00:00
|
|
|
|
|
|
|
/* For Emacs:
|
|
|
|
* Local Variables:
|
|
|
|
* mode:c
|
2008-02-03 22:14:57 +00:00
|
|
|
* indent-tabs-mode:t
|
2008-01-27 05:02:52 +00:00
|
|
|
* tab-width:4
|
|
|
|
* c-basic-offset:4
|
|
|
|
* End:
|
|
|
|
* For VIM:
|
|
|
|
* vim:set softtabstop=4 shiftwidth=4 tabstop=4 expandtab:
|
|
|
|
*/
|