-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFramework.py
More file actions
86 lines (74 loc) · 2.14 KB
/
Framework.py
File metadata and controls
86 lines (74 loc) · 2.14 KB
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
# coding:utf-8
import time
from FrameworkServer import HTTPServer
# global constant
HTML_ROOT_DIR = "./html"
WSGI_PYTHON_DIR = "./wsgipython"
class Application(object):
""""""
def __init__(self, urls):
self.urls = urls
def __call__(self, env, start_response):
path = env.get("PATH_INFO", "/")
print("path: " + path)
if path.startswith("/static"):
file_name = path[7:]
try:
print("file name: " + HTML_ROOT_DIR + file_name)
file = open(HTML_ROOT_DIR + file_name, "rb")
except IOError:
print("Error happens")
status = "404 Not Found"
headers = []
start_response(status, headers)
return "not found"
else:
file_data = file.read()
file.close()
status = "200 OK"
headers = []
start_response(status, headers)
return file_data.decode("utf-8")
else:
for url, handler in self.urls:
if path == url:
return handler(env, start_response)
print("execute not found part")
status = "404 Not Found"
headers = []
start_response(status, headers)
return "not found"
def show_ctime(env, start_response):
status = "200 OK"
headers = {
("Content-Type", "text/plain")
}
start_response(status, headers)
return time.ctime()
def say_hello(env, start_response):
status = "200 OK"
headers = {
("Content-Type", "text/plain")
}
start_response(status, headers)
return "hello from say_hello func"
def main():
# router list
urls = [
("/", show_ctime),
("/ctime.py", show_ctime),
("/sayhello.py", say_hello)
]
app = Application(urls)
http_server = HTTPServer(app)
http_server.bind(7777)
http_server.start()
if __name__ == "__main__":
main()
else:
urls = [
("/", show_ctime),
("/ctime.py", show_ctime),
("/sayhello.py", say_hello)
]
app = Application(urls)