mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
46 lines
1.3 KiB
Python
46 lines
1.3 KiB
Python
# -*- coding: utf-8 -
|
|
#
|
|
# This file is part of gunicorn released under the MIT license.
|
|
# See the NOTICE for more information.
|
|
|
|
from gunicorn.util import http_date, write, write_chunk
|
|
|
|
class Response(object):
|
|
|
|
def __init__(self, sock, response, req):
|
|
self.req = req
|
|
self._sock = sock
|
|
self.data = response
|
|
self.headers = req.response_headers or []
|
|
self.status = req.response_status
|
|
self.SERVER_VERSION = req.SERVER_VERSION
|
|
self.chunked = req.response_chunked
|
|
|
|
def default_headers(self):
|
|
return [
|
|
"HTTP/1.1 %s\r\n" % self.status,
|
|
"Server: %s\r\n" % self.SERVER_VERSION,
|
|
"Date: %s\r\n" % http_date(),
|
|
"Connection: close\r\n"
|
|
]
|
|
|
|
def send(self):
|
|
# send headers
|
|
resp_head = self.default_headers()
|
|
resp_head.extend(["%s: %s\r\n" % (n, v) for n, v in self.headers])
|
|
write(self._sock, "%s\r\n" % "".join(resp_head))
|
|
self.req.headers_sent = True
|
|
|
|
|
|
last_chunk = None
|
|
for chunk in self.data:
|
|
last_chunk = chunk
|
|
write(self._sock, chunk, self.chunked)
|
|
|
|
if self.chunked and last_chunk != "":
|
|
# send last chunk
|
|
write_chunk(self._sock, "")
|
|
|
|
if hasattr(self.data, "close"):
|
|
self.data.close()
|