blob: 84e98c84510622c26002ec2bfa593b015ac939a1 (
plain)
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
|
import os.path
import time
from wptserve.utils import isomorphic_encode
def main(request, response):
name = request.GET.first(b"name")
sleepTime = float(request.GET.first(b"sleep")) / 1E3
numInitial = int(request.GET.first(b"numInitial"))
path = os.path.join(os.path.dirname(isomorphic_encode(__file__)), name)
body = open(path, u"rb").read()
response.headers.set(b"Content-Type", b"image")
response.headers.set(b"Content-Length", len(body))
response.headers.set(b"Cache-control", b"no-cache, must-revalidate")
response.write_status_headers()
# Read from the beginning, |numInitial| bytes.
first = body[:numInitial]
response.writer.write_content(first)
time.sleep(sleepTime)
# Read the remainder after having slept.
second = body[numInitial:]
response.writer.write_content(second)
|