Skip to content

Commit

Permalink
fixed threaded loading
Browse files Browse the repository at this point in the history
  • Loading branch information
roberto@debian32 committed Jun 24, 2011
1 parent 789e333 commit 2246d30
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 26 deletions.
2 changes: 1 addition & 1 deletion buildconf/default.ini
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async = true
evdis = false
ldap = auto
pcre = auto
debug = true
debug = false
unbit = false
xml_implementation = libxml2
yaml_implementation = auto
Expand Down
11 changes: 3 additions & 8 deletions multiapp.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
import werkzeug

def web3_app(environ):
status = b'200 OK'
headers = [(b'Content-type', b'text/plain')]
body = [b'I am a Web3 app\n']
return body, status, headers
import uwsgi

def zero_app(e,s):
s('200 OK', [ ('Content-Type', 'text/plain') ])
return ""
return "0"

def not_found(e,s):
s('404 Not Found', [ ('Content-Type', 'text/plain') ])
Expand All @@ -24,4 +19,4 @@ def internal_server_error(e, s):
s('500 Internal Server Error', [ ('Content-Type', 'text/plain') ])
return ""

applications = {'':web3_app, '/wsgi':wsgi_app, '/test':werkzeug.test_app, '/zero':zero_app, '/notfound':not_found, '/ise':internal_server_error}
uwsgi.applications = {'/wsgi':wsgi_app, '/test':werkzeug.test_app, '/zero':zero_app, '/notfound':not_found, '/ise':internal_server_error}
4 changes: 2 additions & 2 deletions plugins/python/gil.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ extern struct uwsgi_server uwsgi;
extern struct uwsgi_python up;

void gil_real_get() {
uwsgi_log("LOCK %d\n", uwsgi.mywid);
//uwsgi_log("LOCK %d\n", uwsgi.mywid);
#ifndef PYTHREE
PyEval_AcquireLock();
PyThreadState_Swap((PyThreadState *) pthread_getspecific(up.upt_gil_key));
Expand All @@ -14,7 +14,7 @@ void gil_real_get() {
}

void gil_real_release() {
uwsgi_log("UNLOCK %d\n", uwsgi.mywid);
//uwsgi_log("UNLOCK %d\n", uwsgi.mywid);
#ifndef PYTHREE
pthread_setspecific(up.upt_gil_key, (void *) PyThreadState_Swap(NULL));
PyEval_ReleaseLock();
Expand Down
1 change: 1 addition & 0 deletions plugins/python/pyloader.c
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@ int init_uwsgi_app(int loader, void *arg1, struct wsgi_request *wsgi_req, PyThre
if (uwsgi.threads > 1 && id) {
// if we have multiple threads we need to initialize a PyThreadState for each one
for(i=0;i<uwsgi.threads;i++) {
//uwsgi_log("%p\n", uwsgi.core[i]->ts[id]);
uwsgi.core[i]->ts[id] = PyThreadState_New( ((PyThreadState *)wi->interpreter)->interp);
if (!uwsgi.core[i]->ts[id]) {
uwsgi_log("unable to allocate new PyThreadState structure for app %s", mountpoint);
Expand Down
4 changes: 0 additions & 4 deletions plugins/python/python_plugin.c
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,6 @@ void uwsgi_python_reset_random_seed() {

void uwsgi_python_post_fork() {

uwsgi_log("POST FORK %d\n", uwsgi.mywid);

uwsgi_python_reset_random_seed();

#ifdef UWSGI_EMBEDDED
Expand All @@ -178,8 +176,6 @@ void uwsgi_python_post_fork() {
PyErr_Clear();
#endif

uwsgi_log("RELEASING GIL %d\n", uwsgi.mywid);

UWSGI_RELEASE_GIL

}
Expand Down
5 changes: 5 additions & 0 deletions rpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ int uwsgi_register_rpc(char *name, uint8_t modifier1, uint8_t args, void *func)
struct uwsgi_rpc *urpc;
int ret = -1;

if (uwsgi.mywid != 0) {
uwsgi_log("you can register RPC functions only in the master\n");
return -1;
}

uwsgi_lock(uwsgi.rpc_table_lock);

if (uwsgi.shared->rpc_count < MAX_RPC) {
Expand Down
20 changes: 9 additions & 11 deletions uwsgi.c
Original file line number Diff line number Diff line change
Expand Up @@ -1970,6 +1970,15 @@ int uwsgi_start(void *v_argv) {

uwsgi_rawlog(" ***\n");

// even the master has cores..
uwsgi.core = uwsgi_malloc(sizeof(struct uwsgi_core *) * uwsgi.cores);
for (j = 0; j < uwsgi.cores; j++) {
uwsgi.core[j] = uwsgi_malloc(sizeof(struct uwsgi_core));
memset(uwsgi.core[j], 0, sizeof(struct uwsgi_core));
}



//init apps hook (if not lazy)
if (!uwsgi.lazy) {
uwsgi_init_all_apps();
Expand Down Expand Up @@ -2063,8 +2072,6 @@ int uwsgi_start(void *v_argv) {
//from now on the process is a real worker
}

uwsgi_log("running workers...\n");

uwsgi_sock = uwsgi.sockets;
while (uwsgi_sock) {
struct uwsgi_string_list *usl = uwsgi.map_socket;
Expand Down Expand Up @@ -2172,12 +2179,6 @@ int uwsgi_start(void *v_argv) {
exit(1);
}

uwsgi.core = uwsgi_malloc(sizeof(struct uwsgi_core *) * uwsgi.cores);
for (j = 0; j < uwsgi.cores; j++) {
uwsgi.core[j] = uwsgi_malloc(sizeof(struct uwsgi_core));
memset(uwsgi.core[j], 0, sizeof(struct uwsgi_core));
}

if (uwsgi.master_as_root) {
uwsgi_as_root();
}
Expand All @@ -2186,15 +2187,12 @@ int uwsgi_start(void *v_argv) {
uwsgi_init_all_apps();
}

uwsgi_log("post fork hook %d\n", uwsgi.mywid);
for (i = 0; i < 0xFF; i++) {
if (uwsgi.p[i]->post_fork) {
uwsgi.p[i]->post_fork();
}
}

uwsgi_log("post fork hook DONE %d\n", uwsgi.mywid);

#ifdef UWSGI_ZEROMQ
if (uwsgi.zmq_receiver && uwsgi.zmq_responder) {
uwsgi.zmq_context = zmq_init(1);
Expand Down

0 comments on commit 2246d30

Please sign in to comment.