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
|
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
from flup.server import NoDefault
def asbool(obj):
if isinstance(obj, (str, unicode)):
obj = obj.strip().lower()
if obj in ['true', 'yes', 'on', 'y', 't', '1']:
return True
elif obj in ['false', 'no', 'off', 'n', 'f', '0']:
return False
else:
raise ValueError(
"String is not true/false: %r" % obj)
return bool(obj)
def aslist(obj, sep=None, strip=True):
if isinstance(obj, (str, unicode)):
lst = obj.split(sep)
if strip:
lst = [v.strip() for v in lst]
return lst
elif isinstance(obj, (list, tuple)):
return obj
elif obj is None:
return []
else:
return [obj]
def run_ajp_thread(wsgi_app, global_conf,
scriptName='', host='localhost', port='8009',
allowedServers='127.0.0.1', debug=NoDefault,
minSpare=None, maxSpare=None, maxThreads=None):
import flup.server.ajp
addr = (host, int(port))
if debug is NoDefault:
debug = global_conf.get('debug', False)
debug = asbool(debug)
threadpool_args = {}
if minSpare is not None:
threadpool_args['minSpare'] = int(minSpare)
if maxSpare is not None:
threadpool_args['maxSpare'] = int(maxSpare)
if maxThreads is not None:
threadpool_args['maxThreads'] = int(maxThreads)
s = flup.server.ajp.WSGIServer(
wsgi_app,
scriptName=scriptName,
bindAddress=addr,
allowedServers=aslist(allowedServers),
debug=debug, **threadpool_args
)
s.run()
def run_ajp_fork(wsgi_app, global_conf,
scriptName='', host='localhost', port='8009',
allowedServers='127.0.0.1', debug=NoDefault,
minSpare=None, maxSpare=None,
maxChildren=None, maxRequests=None):
import flup.server.ajp_fork
addr = (host, int(port))
if debug is NoDefault:
debug = global_conf.get('debug', False)
debug = asbool(debug)
prefork_args = {}
if minSpare is not None:
prefork_args['minSpare'] = int(minSpare)
if maxSpare is not None:
prefork_args['maxSpare'] = int(maxSpare)
if maxChildren is not None:
prefork_args['maxChildren'] = int(maxChildren)
if maxRequests is not None:
prefork_args['maxRequests'] = int(maxRequests)
s = flup.server.ajp_fork.WSGIServer(
wsgi_app,
scriptName=scriptName,
bindAddress=addr,
allowedServers=aslist(allowedServers),
debug=debug, **prefork_args
)
s.run()
def run_fcgi_thread(wsgi_app, global_conf,
host=None, port=None,
socket=None, umask=None,
multiplexed=False, debug=NoDefault,
minSpare=None, maxSpare=None, maxThreads=None):
import flup.server.fcgi
if socket:
assert host is None and port is None
sock = socket
elif host:
assert host is not None and port is not None
sock = (host, int(port))
else:
sock = None
if umask is not None:
umask = int(umask)
if debug is NoDefault:
debug = global_conf.get('debug', False)
debug = asbool(debug)
threadpool_args = {}
if minSpare is not None:
threadpool_args['minSpare'] = int(minSpare)
if maxSpare is not None:
threadpool_args['maxSpare'] = int(maxSpare)
if maxThreads is not None:
threadpool_args['maxThreads'] = int(maxThreads)
s = flup.server.fcgi.WSGIServer(
wsgi_app,
bindAddress=sock, umask=umask,
multiplexed=asbool(multiplexed),
debug=debug, **threadpool_args
)
s.run()
def run_fcgi_fork(wsgi_app, global_conf,
host=None, port=None,
socket=None, umask=None,
multiplexed=False,
debug=NoDefault,
minSpare=None, maxSpare=None,
maxChildren=None, maxRequests=None):
import flup.server.fcgi_fork
if socket:
assert host is None and port is None
sock = socket
elif host:
assert host is not None and port is not None
sock = (host, int(port))
else:
sock = None
if umask is not None:
umask = int(umask)
if debug is NoDefault:
debug = global_conf.get('debug', False)
debug = asbool(debug)
prefork_args = {}
if minSpare is not None:
prefork_args['minSpare'] = int(minSpare)
if maxSpare is not None:
prefork_args['maxSpare'] = int(maxSpare)
if maxChildren is not None:
prefork_args['maxChildren'] = int(maxChildren)
if maxRequests is not None:
prefork_args['maxRequests'] = int(maxRequests)
s = flup.server.fcgi_fork.WSGIServer(
wsgi_app,
bindAddress=sock, umask=umask,
multiplexed=asbool(multiplexed),
debug=debug, **prefork_args
)
s.run()
def run_scgi_thread(wsgi_app, global_conf,
scriptName=NoDefault, host='localhost', port='4000',
allowedServers='127.0.0.1',
debug=NoDefault,
minSpare=None, maxSpare=None, maxThreads=None):
import flup.server.scgi
addr = (host, int(port))
if debug is NoDefault:
debug = global_conf.get('debug', False)
debug = asbool(debug)
threadpool_args = {}
if minSpare is not None:
threadpool_args['minSpare'] = int(minSpare)
if maxSpare is not None:
threadpool_args['maxSpare'] = int(maxSpare)
if maxThreads is not None:
threadpool_args['maxThreads'] = int(maxThreads)
s = flup.server.scgi.WSGIServer(
wsgi_app,
scriptName=scriptName,
bindAddress=addr,
allowedServers=aslist(allowedServers),
debug=debug, **threadpool_args
)
s.run()
def run_scgi_fork(wsgi_app, global_conf,
scriptName=NoDefault, host='localhost', port='4000',
allowedServers='127.0.0.1',
debug=NoDefault,
minSpare=None, maxSpare=None,
maxChildren=None, maxRequests=None):
import flup.server.scgi_fork
addr = (host, int(port))
if debug is NoDefault:
debug = global_conf.get('debug', False)
debug = asbool(debug)
prefork_args = {}
if minSpare is not None:
prefork_args['minSpare'] = int(minSpare)
if maxSpare is not None:
prefork_args['maxSpare'] = int(maxSpare)
if maxChildren is not None:
prefork_args['maxChildren'] = int(maxChildren)
if maxRequests is not None:
prefork_args['maxRequests'] = int(maxRequests)
s = flup.server.scgi_fork.WSGIServer(
wsgi_app,
scriptName=scriptName,
bindAddress=addr,
allowedServers=aslist(allowedServers),
debug=debug, **prefork_args
)
s.run()
|