summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_python_wsgi.c
diff options
context:
space:
mode:
authorMax Romanov <max.romanov@nginx.com>2017-11-29 18:48:55 +0300
committerMax Romanov <max.romanov@nginx.com>2017-11-29 18:48:55 +0300
commit3781950badda9a937fdfaac25013006d9e106c67 (patch)
tree1f0109218ecfcb1dd9affc65b3fa8ee904e067c3 /src/nxt_python_wsgi.c
parentec4ad8780e0afd7416c7ba7c32a1936e646cc286 (diff)
downloadunit-3781950badda9a937fdfaac25013006d9e106c67.tar.gz
unit-3781950badda9a937fdfaac25013006d9e106c67.tar.bz2
Introducing python virtualenv configuration.
New parameter 'home' for python application allows to configure application-specific virtualenv path. This closes #15 issue on GitHub.
Diffstat (limited to '')
-rw-r--r--src/nxt_python_wsgi.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/nxt_python_wsgi.c b/src/nxt_python_wsgi.c
index 51d9d800..36cd8e14 100644
--- a/src/nxt_python_wsgi.c
+++ b/src/nxt_python_wsgi.c
@@ -177,6 +177,12 @@ static PyObject *nxt_py_application;
static PyObject *nxt_py_start_resp_obj;
static PyObject *nxt_py_environ_ptyp;
+#if PY_MAJOR_VERSION == 3
+static wchar_t *nxt_py_home;
+#else
+static char *nxt_py_home;
+#endif
+
static nxt_python_run_ctx_t *nxt_python_run_ctx;
@@ -194,6 +200,26 @@ nxt_python_init(nxt_task_t *task, nxt_common_app_conf_t *conf)
return NXT_ERROR;
}
+ if (c->home != NULL) {
+ size_t len;
+
+ len = nxt_strlen(c->home);
+
+ nxt_py_home = nxt_malloc(sizeof(*nxt_py_home) * (len + 1));
+ if (nxt_slow_path(nxt_py_home == NULL)) {
+ nxt_log_emerg(task->log, "Failed to allocate buffer for home path");
+ return NXT_ERROR;
+ }
+
+#if PY_MAJOR_VERSION == 3
+ mbstowcs(nxt_py_home, c->home, len + 1);
+#else
+ nxt_memcpy(nxt_py_home, c->home, len + 1);
+#endif
+
+ Py_SetPythonHome(nxt_py_home);
+ }
+
Py_InitializeEx(0);
obj = NULL;
@@ -301,6 +327,10 @@ fail:
Py_XDECREF(obj);
Py_XDECREF(module);
+ if (nxt_py_home != NULL) {
+ nxt_free(nxt_py_home);
+ }
+
return NXT_ERROR;
}