gunicorn/gunicorn/wsgi.py
2010-06-03 16:10:27 -04:00

183 lines
5.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 re
import socket
import sys
from urllib import unquote
from gunicorn import __version__
import gunicorn.util as util
SERVER_VERSION = "gunicorn/%s" % __version__
NORMALIZE_SPACE = re.compile(r'(?:\r\n)?[ \t]+')
log = logging.getLogger(__name__)
def create(req, sock, client, server, debug=False):
resp = Response(req, sock)
environ = {}
# authors should be aware that REMOTE_HOST and REMOTE_ADDR
# may not qualify the remote addr:
# http://www.ietf.org/rfc/rfc3875
client = client or "127.0.0.1"
forward = client
script_name = os.environ.get("SCRIPT_NAME", "")
content_type = ""
content_length = ""
for hdr_name, hdr_value in req.headers:
name = hdr_name.lower()
if name == "expect":
# handle expect
if hdr_value.lower() == "100-continue":
self.socket.send("HTTP/1.1 100 Continue\r\n\r\n")
elif name == "x-forwarded-for":
forward_address = hdr_value
elif name == "host":
host = hdr_value
elif name == "script_name":
script_name = hdr_value
elif name == "content-type":
content_type = hdr_value
elif name == "content-length":
content_length = hdr_value
else:
continue
# This value should evaluate true if an equivalent application
# object may be simultaneously invoked by another process, and
# should evaluate false otherwise. In debug mode we fall to one
# worker so we comply to pylons and other paster app.
wsgi_multiprocess = (debug == False)
if isinstance(forward, basestring):
# we only took the last one
# http://en.wikipedia.org/wiki/X-Forwarded-For
if forward.find(",") >= 0:
forward = forward.rsplit(",", 1)[1].strip()
remote = forward.split(":")
if len(remote) == 1:
remote.append('')
else:
remote = forward
if isinstance(server, basestring):
server = server.split(":")
if len(server) == 1:
server.append('')
path_info = req.path
if script_name:
path_info = path_info.split(script_name, 1)[1]
environ = {
"wsgi.url_scheme": 'http',
"wsgi.input": req.body,
"wsgi.errors": sys.stderr,
"wsgi.version": (1, 0),
"wsgi.multithread": False,
"wsgi.multiprocess": wsgi_multiprocess,
"wsgi.run_once": False,
"SCRIPT_NAME": script_name,
"SERVER_SOFTWARE": SERVER_VERSION,
"REQUEST_METHOD": req.method,
"PATH_INFO": unquote(path_info),
"QUERY_STRING": req.query,
"RAW_URI": req.path,
"CONTENT_TYPE": content_type,
"CONTENT_LENGTH": content_length,
"REMOTE_ADDR": remote[0],
"REMOTE_PORT": str(remote[1]),
"SERVER_NAME": server[0],
"SERVER_PORT": str(server[1]),
"SERVER_PROTOCOL": req.version
}
for key, value in req.headers:
key = 'HTTP_' + key.upper().replace('-', '_')
if key not in ('HTTP_CONTENT_TYPE', 'HTTP_CONTENT_LENGTH'):
environ[key] = value
return resp, environ
class Response(object):
def __init__(self, req, sock):
self.req = req
self.sock = sock
self.version = SERVER_VERSION
self.status = None
self.chunked = False
self.headers = []
self.headers_sent = False
def start_response(self, status, headers, exc_info=None):
if exc_info:
try:
if self.status and self.headers_sent:
raise exc_info[0], exc_info[1], exc_info[2]
finally:
exc_info = None
elif self.status is not None:
raise AssertionError("Response headers already set!")
self.status = status
self.process_headers(headers)
return self.write
def process_headers(self, headers):
for name, value in headers:
assert isinstance(name, basestring), "%r is not a string" % name
if util.is_hoppish(name):
lname = name.lower().strip()
if lname == "transfer-encoding":
if value.lower().strip() == "chunked":
self.chunked = True
elif lname == "connection":
# handle websocket
if value.lower().strip() != "upgrade":
continue
else:
# ignore hopbyhop headers
continue
self.headers.append((name.strip(), str(value).strip()))
def default_headers(self):
connection = "keep-alive"
if self.req.should_close():
connection = "close"
return [
"HTTP/1.1 %s\r\n" % self.status,
"Server: %s\r\n" % self.version,
"Date: %s\r\n" % util.http_date(),
"Connection: %s\r\n" % connection
]
def send_headers(self):
if self.headers_sent:
return
tosend = self.default_headers()
tosend.extend(["%s: %s\r\n" % (n, v) for n, v in self.headers])
util.write(self.sock, "%s\r\n" % "".join(tosend))
self.headers_sent = True
def write(self, arg):
self.send_headers()
assert isinstance(arg, basestring), "%r is not a string." % arg
util.write(self.sock, arg, self.chunked)
def close(self):
if not self.headers_sent:
self.send_headers()
if self.chunked:
util.write_chunk(self.sock, "")