-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFactory_Method.py
87 lines (66 loc) · 2.4 KB
/
Factory_Method.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
76
77
78
79
80
81
82
83
84
85
86
87
from abc import ABC, abstractmethod
class Delivery(ABC):
"""
The Product interface declares the operations that all concrete products
must implement.
"""
@abstractmethod
def operation(self):
pass
"""
Concrete Products provide various implementations of the Product interface.
"""
class DeliveryByTruck(Delivery):
def operation(self) -> None:
print(f"Delivery will be done by TRUCK!\n")
class DeliveryByTrain(Delivery):
def operation(self) -> None:
print(f"Delivery will be done by TRAIN!\n")
class Creator(ABC):
"""
The Creator class declares the factory method that is supposed to return an
object of a Product class. The Creator's subclasses usually provide the
implementation of this method.
"""
@abstractmethod
def factoryMethod(self):
"""
Note that the Creator may also provide some default implementation of
the factory method.
"""
pass
def startDelivery(self) -> None:
"""
Also note that, despite its name, the Creator's primary responsibility
is not creating products. Usually, it contains some core business logic
that relies on Product objects, returned by the factory method.
Subclasses can indirectly change that business logic by overriding the
factory method and returning a different type of product from it.
"""
# Call the factory method to create a Product object.
delivery = self.factoryMethod()
# Now, use the product.
delivery.operation()
"""
Concrete Creators override the factory method in order to change the resulting
product's type.
"""
class CreatorDeliveryTruck(Creator):
"""
Note that the signature of the method still uses the abstract product type,
even though the concrete product is actually returned from the method. This
way the Creator can stay independent of concrete product classes.
"""
def factoryMethod(self) -> DeliveryByTruck:
return DeliveryByTruck()
class CreatorDeliveryTrain(Creator):
def factoryMethod(self) -> DeliveryByTrain:
return DeliveryByTrain()
if __name__ == "__main__":
print('\n********************************')
print('*** FACTORY METHOD IN PYTHON ***')
print('********************************\n')
c1 = CreatorDeliveryTruck()
c1.startDelivery()
c2 = CreatorDeliveryTrain()
c2.startDelivery()