mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
162 lines
4.6 KiB
Python
162 lines
4.6 KiB
Python
# -*- coding: utf-8 -
|
|
#
|
|
# This file is part of gunicorn released under the MIT license.
|
|
# See the NOTICE for more information.
|
|
|
|
|
|
import errno
|
|
import logging
|
|
import os
|
|
import select
|
|
import signal
|
|
import socket
|
|
import sys
|
|
import tempfile
|
|
import traceback
|
|
|
|
from gunicorn import http
|
|
from gunicorn import util
|
|
|
|
|
|
class Worker(object):
|
|
|
|
SIGNALS = map(
|
|
lambda x: getattr(signal, "SIG%s" % x),
|
|
"CHLD HUP QUIT INT TERM TTIN TTOU USR1 USR2 WINCH".split()
|
|
)
|
|
|
|
PIPE = []
|
|
|
|
def __init__(self, workerid, ppid, socket, app, timeout,
|
|
debug=False):
|
|
self.nr = 0
|
|
self.id = workerid
|
|
self.ppid = ppid
|
|
self.debug = debug
|
|
self.socket = socket
|
|
self.timeout = timeout
|
|
self.fd, tmpname = tempfile.mkstemp()
|
|
self.tmp = os.fdopen(self.fd, "r+b")
|
|
self.tmpname = tmpname
|
|
self.app = app
|
|
self.alive = True
|
|
self.log = logging.getLogger(__name__)
|
|
self.spinner = 0
|
|
self.address = self.socket.getsockname()
|
|
|
|
def __str__(self):
|
|
return "<Worker %s>" % self.id
|
|
|
|
def init_signals(self):
|
|
map(lambda s: signal.signal(s, signal.SIG_DFL), self.SIGNALS)
|
|
signal.signal(signal.SIGQUIT, self.handle_quit)
|
|
signal.signal(signal.SIGUSR1, self.handle_usr1)
|
|
signal.signal(signal.SIGTERM, self.handle_exit)
|
|
signal.signal(signal.SIGINT, self.handle_exit)
|
|
|
|
def handle_usr1(self, sig, frame):
|
|
self.log.info("USR1")
|
|
self.nr = -65536;
|
|
try:
|
|
map(lambda p: p.close(), self.PIPE)
|
|
except:
|
|
pass
|
|
|
|
def handle_quit(self, sig, frame):
|
|
self.alive = False
|
|
|
|
def handle_exit(self, sig, frame):
|
|
sys.exit(0)
|
|
|
|
def notify(self):
|
|
"""\
|
|
Notify our parent process that we're still alive.
|
|
"""
|
|
self.spinner = (self.spinner+1) % 2
|
|
if getattr(os, 'fchmod', None):
|
|
os.fchmod(self.tmp.fileno(), self.spinner)
|
|
else:
|
|
os.chmod(self.tmpname, self.spinner)
|
|
|
|
def init_process(self):
|
|
# init pipe
|
|
self.PIPE = os.pipe()
|
|
map(util.set_non_blocking, self.PIPE)
|
|
map(util.close_on_exec, self.PIPE)
|
|
|
|
# prevent inherientence
|
|
util.close_on_exec(self.socket)
|
|
util.close_on_exec(self.fd)
|
|
self.init_signals()
|
|
|
|
|
|
def run(self):
|
|
self.init_process()
|
|
self.nr = 0
|
|
|
|
# self.socket appears to lose its blocking status after
|
|
# we fork in the arbiter. Reset it here.
|
|
self.socket.setblocking(0)
|
|
|
|
while self.alive:
|
|
self.nr = 0
|
|
self.notify()
|
|
try:
|
|
client, addr = self.socket.accept()
|
|
self.handle(client, addr)
|
|
self.nr += 1
|
|
except socket.error, e:
|
|
if e[0] not in (errno.EAGAIN, errno.ECONNABORTED):
|
|
raise
|
|
if self.nr < 0: break
|
|
|
|
# Keep processing clients until no one is waiting.
|
|
# This prevents the need to select() for every
|
|
# client that we process.
|
|
if self.nr != 0:
|
|
continue
|
|
|
|
# If our parent changed then we shut down.
|
|
if self.ppid != os.getppid():
|
|
self.log.info("Parent process changed. Closing %s" % self)
|
|
return
|
|
|
|
try:
|
|
self.notify()
|
|
ret = select.select([self.socket], [], self.PIPE, self.timeout)
|
|
if ret[0]:
|
|
continue
|
|
except select.error, e:
|
|
if e[0] == errno.EINTR:
|
|
continue
|
|
if e[0] == errno.EBADF:
|
|
if self.nr < 0:
|
|
continue
|
|
else:
|
|
return
|
|
raise
|
|
|
|
def handle(self, client, addr):
|
|
util.close_on_exec(client)
|
|
try:
|
|
req = http.Request(client, addr, self.address, self.debug)
|
|
|
|
try:
|
|
response = self.app(req.read(), req.start_response)
|
|
except Exception, e:
|
|
util.write_error(client, traceback.format_exc())
|
|
return
|
|
|
|
http.Response(client, response, req).send()
|
|
except Exception, e:
|
|
self.log.exception("Error processing request. [%s]" % str(e))
|
|
try:
|
|
# Last ditch attempt to notify the client of an error.
|
|
mesg = "HTTP/1.0 500 Internal Server Error\r\n\r\n"
|
|
write_nonblock(sock, mesg)
|
|
except:
|
|
pass
|
|
finally:
|
|
util.close(client)
|
|
|