-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbridge.py
75 lines (58 loc) · 1.44 KB
/
bridge.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Implementor Interface
class Device:
def power_on(self):
pass
def power_off(self):
pass
def set_channel(self, number):
pass
# Concrete Implementor 1
class TV(Device):
def power_on(self):
print("TV is now ON")
def power_off(self):
print("TV is now OFF")
def set_channel(self, number):
print(f"TV channel set to {number}")
# Concrete Implementor 2
class Radio(Device):
def power_on(self):
print("Radio is now ON")
def power_off(self):
print("Radio is now OFF")
def set_channel(self, number):
print(f"Radio channel set to {number}")
# Abstraction
class RemoteControl:
def __init__(self, device):
self.device = device
def turn_on(self):
self.device.power_on()
def turn_off(self):
self.device.power_off()
def set_channel(self, number):
self.device.set_channel(number)
# Refined Abstraction
class AdvancedRemoteControl(RemoteControl):
def mute(self):
print("Device is muted")
# Usage
tv = TV()
radio = Radio()
remote = RemoteControl(tv)
remote.turn_on()
remote.set_channel(5)
remote.turn_off()
advanced_remote = AdvancedRemoteControl(radio)
advanced_remote.turn_on()
advanced_remote.set_channel(10)
advanced_remote.mute()
advanced_remote.turn_off()
## Output
# TV is now ON
# TV channel set to 5
# TV is now OFF
# Radio is now ON
# Radio channel set to 10
# Device is muted
# Radio is now OFF