-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchain_of_responsibility.py
60 lines (46 loc) · 1.38 KB
/
chain_of_responsibility.py
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
# --------------------------------------------------------
# Licensed under the terms of the BSD 3-Clause License
# (see LICENSE for details).
# Copyright © 2018-2024, A.A Suvorov
# All rights reserved.
# --------------------------------------------------------
# https://github.com/smartlegionlab/
# --------------------------------------------------------
"""Chain of responsibility"""
class HttpHandler:
def handle(self, code):
raise NotImplementedError()
class Http404Handler(HttpHandler):
def handle(self, code):
if code == 404:
return 'Page not found'
class Http500Handler(HttpHandler):
def handle(self, code):
if code == 500:
return 'server error'
class Client:
def __init__(self):
self._handlers = []
def add_handler(self, h):
self._handlers.append(h)
def response(self, code):
for h in self._handlers:
msg = h.handle(code)
if msg:
print('Answer: %s' % msg)
break
else:
print('Code not processed')
def main():
client = Client()
client.add_handler(Http404Handler())
client.add_handler(Http500Handler())
client.response(400)
client.response(404)
client.response(500)
if __name__ == '__main__':
# Output:
# Code not processed
# Answer: Page not found
# Answer: Server error
main()