forked from dancergraham/HeadFirstDesignPatterns_python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchocolate.py
53 lines (39 loc) · 1.11 KB
/
chocolate.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
class SingletonError(Exception):
pass
class Singleton(type):
_instances = {}
def __call__(cls, *args, **kwargs):
if cls not in cls._instances:
cls._instances[cls] = super(Singleton, cls).__call__(*args, **kwargs)
return cls._instances[cls]
class ChocolateBoiler(metaclass=Singleton):
def __init__(self) -> None:
self.empty = True
self.boiled = False
def fill(self):
if not self.empty:
raise SingletonError
self.empty = False
self.boiled = False
print("Full!")
def drain(self):
if self.empty or (not self.boiled):
raise SingletonError
self.empty = True
print("Empty!")
def boil(self):
self.boiled = True
print("boiled!")
def is_empty(self):
return self.empty
def is_boiled(self):
return self.boiled
def chocolate_controller():
boiler = ChocolateBoiler()
boiler.fill()
boiler.boil()
boiler2 = ChocolateBoiler()
boiler.drain()
print(boiler2 is boiler)
if __name__ == "__main__":
chocolate_controller()