Uh oh!
There was an error while loading. Please reload this page.
forked from faif/python-patterns
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbridge.py
More file actions
Latest commit
54 lines (39 loc) · 1.23 KB
/
Copy pathbridge.py
File metadata and controls
54 lines (39 loc) · 1.23 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
"""
*References:
http://en.wikibooks.org/wiki/Computer_Science_Design_Patterns/Bridge_Pattern#Python
*TL;DR
Decouples an abstraction from its implementation.
"""
# ConcreteImplementor 1/2
classDrawingAPI1:
defdraw_circle(self, x, y, radius):
print("API1.circle at {}:{} radius {}".format(x, y, radius))
# ConcreteImplementor 2/2
classDrawingAPI2:
defdraw_circle(self, x, y, radius):
print("API2.circle at {}:{} radius {}".format(x, y, radius))
# Refined Abstraction
classCircleShape:
def__init__(self, x, y, radius, drawing_api):
self._x=x
self._y=y
self._radius=radius
self._drawing_api=drawing_api
# low-level i.e. Implementation specific
defdraw(self):
self._drawing_api.draw_circle(self._x, self._y, self._radius)
# high-level i.e. Abstraction specific
defscale(self, pct):
self._radius*=pct
defmain():
"""
>>> shapes = (CircleShape(1, 2, 3, DrawingAPI1()), CircleShape(5, 7, 11, DrawingAPI2()))
>>> for shape in shapes:
... shape.scale(2.5)
... shape.draw()
API1.circle at 1:2 radius 7.5
API2.circle at 5:7 radius 27.5
"""
if__name__=="__main__":
importdoctest
doctest.testmod()