-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path2_builder_facets.py
85 lines (67 loc) · 2.14 KB
/
2_builder_facets.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
class Person:
def __init__(self):
print('Creating an instance of Person')
# address
self.street_address = None
self.postcode = None
self.city = None
# employment info
self.company_name = None
self.position = None
self.annual_income = None
def __str__(self) -> str:
return f'Address: {self.street_address}, {self.postcode}, {self.city}\n' +\
f'Employed at {self.company_name} as a {self.postcode} earning {self.annual_income}'
class PersonBuilder: # facade
def __init__(self, person=None):
if person is None:
self.person = Person()
else:
self.person = person
@property
def lives(self):
return PersonAddressBuilder(self.person)
@property
def works(self):
return PersonJobBuilder(self.person)
def build(self):
return self.person
class PersonJobBuilder(PersonBuilder):
def __init__(self, person):
super().__init__(person)
def at(self, company_name):
self.person.company_name = company_name
return self
def as_a(self, position):
self.person.position = position
return self
def earning(self, annual_income):
self.person.annual_income = annual_income
return self
class PersonAddressBuilder(PersonBuilder):
def __init__(self, person):
super().__init__(person)
def at(self, street_address):
self.person.street_address = street_address
return self
def with_postcode(self, postcode):
self.person.postcode = postcode
return self
def in_city(self, city):
self.person.city = city
return self
if __name__ == '__main__':
pb = PersonBuilder()
p = pb\
.lives\
.at('123 London Road')\
.in_city('London')\
.with_postcode('SW12BC')\
.works\
.at('Fabrikam')\
.as_a('Engineer')\
.earning(123000)\
.build()
print(p)
person2 = PersonBuilder().build()
print(person2)