FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-patterns/chain.py at master · rauleite/python-patterns · GitHub
rauleite
/
python-patterns
Public
forked from
faif/python-patterns
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-patterns
/
chain.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
66 lines (49 loc) · 1.7 KB
Breadcrumbs
python-patterns
/
chain.py
Copy path
File metadata and controls
66 lines (49 loc) · 1.7 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""http://www.testingperspective.com/wiki/doku.php/collaboration/chetan/designpatternsinpython/chain-of-responsibilitypattern"""
class
Handler
:
def
successor
(
self
,
successor
):
self
.
successor
=
successor
class
ConcreteHandler1
(
Handler
):
def
handle
(
self
,
request
):
if
0
<
request
<=
10
:
print
(
'request {} handled in handler 1'
.
format
(
request
))
else
:
self
.
successor
.
handle
(
request
)
class
ConcreteHandler2
(
Handler
):
def
handle
(
self
,
request
):
if
10
<
request
<=
20
:
print
(
'request {} handled in handler 2'
.
format
(
request
))
else
:
self
.
successor
.
handle
(
request
)
class
ConcreteHandler3
(
Handler
):
def
handle
(
self
,
request
):
if
20
<
request
<=
30
:
print
(
'request {} handled in handler 3'
.
format
(
request
))
else
:
print
(
'end of chain, no handler for {}'
.
format
(
request
))
class
Client
:
def
__init__
(
self
):
h1
=
ConcreteHandler1
()
h2
=
ConcreteHandler2
()
h3
=
ConcreteHandler3
()
h1
.
successor
(
h2
)
h2
.
successor
(
h3
)
self
.
handlers
=
(
h1
,
h2
,
h3
)
def
delegate
(
self
,
requests
):
for
request
in
requests
:
self
.
handlers
[
0
].
handle
(
request
)
if
__name__
==
"__main__"
:
client
=
Client
()
requests
=
[
2
,
5
,
14
,
22
,
18
,
3
,
35
,
27
,
20
]
client
.
delegate
(
requests
)
### OUTPUT ###
# request 2 handled in handler 1
# request 5 handled in handler 1
# request 14 handled in handler 2
# request 22 handled in handler 3
# request 18 handled in handler 2
# request 3 handled in handler 1
# end of chain, no handler for 35
# request 27 handled in handler 3
# request 20 handled in handler 2
Back
|
FazBrowse Home
|
New Git URL