-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path03-observer-pattern-publisher.py
More file actions
264 lines (176 loc) · 7.34 KB
/
03-observer-pattern-publisher.py
File metadata and controls
264 lines (176 loc) · 7.34 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
"""Question: Create a class Publisher that allows subscribers to subscribe
and get notified when a new article is published. Implement the observer pattern.
"""
# LEARNING CHALLENGE
#
# Before looking at any solution below, please try to solve this yourself first!
#
# Tips for success:
# - Read the question carefully
# - Think about what classes and methods you need
# - Start with a simple implementation
# - Test your code step by step
# - Don't worry if it's not perfect - learning is a process!
#
# Remember: The best way to learn programming is by doing, not by reading solutions!
#
# Take your time, experiment, and enjoy the learning process!
# Try to implement your solution here:
# (Write your code below this line)
# HINT SECTION (Only look if you're really stuck!)
#
# Think about:
# - What is the Observer pattern? (Publisher notifies multiple subscribers)
# - What does Publisher need? (list of subscribers, subscribe method, publish method)
# - What does Subscriber need? (notify method to receive articles)
# - How is this similar to q18 but with different terminology?
#
# Remember: Start simple and build up complexity gradually!
# ===============================================================================
# STEP-BY-STEP SOLUTION
# ===============================================================================
#
# CLASSROOM-STYLE WALKTHROUGH
#
# Let's solve this problem step by step, just like in a programming class!
# Each step builds upon the previous one, so you can follow along and understand
# the complete thought process.
#
# ===============================================================================
# Step 1: Define the Subscriber base class
# ===============================================================================
# Explanation:
# The Observer pattern (here called Publisher-Subscriber) involves two main components.
# Let's start with the Subscriber base class that defines the interface.
class Subscriber:
def notify(self, article):
raise NotImplementedError("Subclasses must implement this method")
# What we accomplished in this step:
# - Created the Subscriber base class with notify method interface
# Step 2: Define the Publisher class structure
# ===============================================================================
# Explanation:
# The Publisher class maintains a list of subscribers and notifies them when articles are published.
# Let's start with the basic structure and constructor.
class Subscriber:
def notify(self, article):
raise NotImplementedError("Subclasses must implement this method")
class Publisher:
def __init__(self):
self._subscribers = [] # List to store subscribers
# What we accomplished in this step:
# - Created Publisher class with subscribers list
# Step 3: Add subscribe method
# ===============================================================================
# Explanation:
# We need a method to add subscribers to our list.
# This allows new subscribers to start receiving notifications.
class Subscriber:
def notify(self, article):
raise NotImplementedError("Subclasses must implement this method")
class Publisher:
def __init__(self):
self._subscribers = []
def subscribe(self, subscriber):
self._subscribers.append(subscriber)
# What we accomplished in this step:
# - Added subscribe method to add subscribers
# Step 4: Add publish method
# ===============================================================================
# Explanation:
# The publish method takes an article and notifies all subscribers about it.
# This is the core of the Observer pattern.
class Subscriber:
def notify(self, article):
raise NotImplementedError("Subclasses must implement this method")
class Publisher:
def __init__(self):
self._subscribers = []
def subscribe(self, subscriber):
self._subscribers.append(subscriber)
def publish(self, article):
for subscriber in self._subscribers:
subscriber.notify(article)
# What we accomplished in this step:
# - Added publish method to notify all subscribers
# Step 5: Create a concrete subscriber implementation
# ===============================================================================
# Explanation:
# Now let's create a concrete subscriber that actually does something
# when it receives article notifications.
class Subscriber:
def notify(self, article):
raise NotImplementedError("Subclasses must implement this method")
class Publisher:
def __init__(self):
self._subscribers = []
def subscribe(self, subscriber):
self._subscribers.append(subscriber)
def publish(self, article):
for subscriber in self._subscribers:
subscriber.notify(article)
class ConcreteSubscriber(Subscriber):
def __init__(self, name="Subscriber"):
self.name = name
def notify(self, article):
print(f"{self.name} received new article: {article}")
# What we accomplished in this step:
# - Created ConcreteSubscriber that prints article notifications
# Step 6: Test the publisher-subscriber pattern
# ===============================================================================
# Explanation:
# Finally, let's create instances and test the complete publisher-subscriber pattern
# to make sure everything works correctly.
class Subscriber:
def notify(self, article):
raise NotImplementedError("Subclasses must implement this method")
class Publisher:
def __init__(self):
self._subscribers = []
def subscribe(self, subscriber):
self._subscribers.append(subscriber)
def publish(self, article):
for subscriber in self._subscribers:
subscriber.notify(article)
class ConcreteSubscriber(Subscriber):
def __init__(self, name="Subscriber"):
self.name = name
def notify(self, article):
print(f"{self.name} received new article: {article}")
# Test our publisher-subscriber pattern:
publisher = Publisher()
# Create subscribers
subscriber1 = ConcreteSubscriber("Alice")
subscriber2 = ConcreteSubscriber("Bob")
subscriber3 = ConcreteSubscriber("Charlie")
# Subscribe to publisher
publisher.subscribe(subscriber1)
publisher.subscribe(subscriber2)
publisher.subscribe(subscriber3)
# Publish articles
print("Publishing first article:")
publisher.publish("Understanding the Observer Pattern")
print("\nPublishing second article:")
publisher.publish("Advanced Python OOP Techniques")
# What we accomplished in this step:
# - Created and tested our complete Publisher-Subscriber implementation
# - Demonstrated multiple subscribers receiving notifications
# ===============================================================================
# CONGRATULATIONS!
#
# You've successfully completed the step-by-step solution!
#
# Key concepts learned:
# - Publisher-Subscriber pattern (variant of Observer pattern)
# - One-to-many communication between objects
# - Interface-based programming with abstract methods
# - Real-world application of design patterns
#
# Try it yourself:
# 1. Start with Step 1 and code along
# 2. Test each step before moving to the next
# 3. Understand WHY each step is necessary
# 4. Experiment with modifications (try adding unsubscribe functionality!)
#
# Remember: The best way to learn is by doing!
# ===============================================================================