-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path02-interface-design-patterns.py
More file actions
422 lines (289 loc) · 10.9 KB
/
02-interface-design-patterns.py
File metadata and controls
422 lines (289 loc) · 10.9 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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
"""Question: Create an abstract interface Drawable with an abstract method draw().
Implement classes Circle, Rectangle, and Text that implement this interface.
Create a Canvas class that can draw multiple drawable objects.
"""
# 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:
# - How do you create an interface using ABC?
# - What should the draw() method return or do?
# - How can a Canvas store and manage multiple drawable objects?
# - What is the benefit of programming to an interface?
#
# 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: Create the Drawable interface
# ===============================================================================
# Explanation:
# An interface defines a contract that implementing classes must follow.
# In Python, we use abstract base classes to create interfaces.
from abc import ABC, abstractmethod
class Drawable(ABC):
@abstractmethod
def draw(self):
"""Draw the object and return a string representation"""
pass
# What we accomplished in this step:
# - Created the Drawable interface with an abstract draw() method
# Step 2: Implement the Circle class
# ===============================================================================
# Explanation:
# The Circle class implements the Drawable interface by providing
# a concrete implementation of the draw() method.
from abc import ABC, abstractmethod
class Drawable(ABC):
@abstractmethod
def draw(self):
"""Draw the object and return a string representation"""
pass
class Circle(Drawable):
def __init__(self, radius, x=0, y=0):
self.radius = radius
self.x = x
self.y = y
def draw(self):
return f"Drawing Circle: radius={self.radius} at ({self.x}, {self.y})"
# What we accomplished in this step:
# - Created Circle class that implements Drawable interface
# - Added position coordinates for more realistic drawing
# Step 3: Implement the Rectangle class
# ===============================================================================
# Explanation:
# The Rectangle class also implements the Drawable interface with
# its own specific draw() implementation.
from abc import ABC, abstractmethod
class Drawable(ABC):
@abstractmethod
def draw(self):
"""Draw the object and return a string representation"""
pass
class Circle(Drawable):
def __init__(self, radius, x=0, y=0):
self.radius = radius
self.x = x
self.y = y
def draw(self):
return f"Drawing Circle: radius={self.radius} at ({self.x}, {self.y})"
class Rectangle(Drawable):
def __init__(self, width, height, x=0, y=0):
self.width = width
self.height = height
self.x = x
self.y = y
def draw(self):
return f"Drawing Rectangle: {self.width}x{self.height} at ({self.x}, {self.y})"
# What we accomplished in this step:
# - Created Rectangle class that implements Drawable interface
# Step 4: Implement the Text class
# ===============================================================================
# Explanation:
# The Text class shows how different types of objects can implement
# the same interface in their own unique way.
from abc import ABC, abstractmethod
class Drawable(ABC):
@abstractmethod
def draw(self):
"""Draw the object and return a string representation"""
pass
class Circle(Drawable):
def __init__(self, radius, x=0, y=0):
self.radius = radius
self.x = x
self.y = y
def draw(self):
return f"Drawing Circle: radius={self.radius} at ({self.x}, {self.y})"
class Rectangle(Drawable):
def __init__(self, width, height, x=0, y=0):
self.width = width
self.height = height
self.x = x
self.y = y
def draw(self):
return f"Drawing Rectangle: {self.width}x{self.height} at ({self.x}, {self.y})"
class Text(Drawable):
def __init__(self, content, font_size=12, x=0, y=0):
self.content = content
self.font_size = font_size
self.x = x
self.y = y
def draw(self):
return f"Drawing Text: '{self.content}' (size {self.font_size}) at ({self.x}, {self.y})"
# What we accomplished in this step:
# - Created Text class that implements Drawable interface
# - Added font size for more realistic text rendering
# Step 5: Create the Canvas class
# ===============================================================================
# Explanation:
# The Canvas class manages a collection of drawable objects and can
# render them all. This demonstrates the power of programming to interfaces.
from abc import ABC, abstractmethod
class Drawable(ABC):
@abstractmethod
def draw(self):
"""Draw the object and return a string representation"""
pass
class Circle(Drawable):
def __init__(self, radius, x=0, y=0):
self.radius = radius
self.x = x
self.y = y
def draw(self):
return f"Drawing Circle: radius={self.radius} at ({self.x}, {self.y})"
class Rectangle(Drawable):
def __init__(self, width, height, x=0, y=0):
self.width = width
self.height = height
self.x = x
self.y = y
def draw(self):
return f"Drawing Rectangle: {self.width}x{self.height} at ({self.x}, {self.y})"
class Text(Drawable):
def __init__(self, content, font_size=12, x=0, y=0):
self.content = content
self.font_size = font_size
self.x = x
self.y = y
def draw(self):
return f"Drawing Text: '{self.content}' (size {self.font_size}) at ({self.x}, {self.y})"
class Canvas:
def __init__(self):
self.objects = []
def add_object(self, drawable_object):
if not isinstance(drawable_object, Drawable):
raise TypeError("Object must implement Drawable interface")
self.objects.append(drawable_object)
def draw_all(self):
print("=== Canvas Rendering ===")
for i, obj in enumerate(self.objects):
print(f"{i+1}. {obj.draw()}")
print("=== End Rendering ===")
def clear(self):
self.objects.clear()
print("Canvas cleared")
# What we accomplished in this step:
# - Created Canvas class that works with any Drawable object
# - Added type checking to ensure objects implement the interface
# - Demonstrated polymorphism through the draw_all() method
# Step 6: Test our interface design
# ===============================================================================
# Explanation:
# Let's create various drawable objects and use them with our Canvas
# to demonstrate the power of interface-based design.
from abc import ABC, abstractmethod
class Drawable(ABC):
@abstractmethod
def draw(self):
"""Draw the object and return a string representation"""
pass
class Circle(Drawable):
def __init__(self, radius, x=0, y=0):
self.radius = radius
self.x = x
self.y = y
def draw(self):
return f"Drawing Circle: radius={self.radius} at ({self.x}, {self.y})"
class Rectangle(Drawable):
def __init__(self, width, height, x=0, y=0):
self.width = width
self.height = height
self.x = x
self.y = y
def draw(self):
return f"Drawing Rectangle: {self.width}x{self.height} at ({self.x}, {self.y})"
class Text(Drawable):
def __init__(self, content, font_size=12, x=0, y=0):
self.content = content
self.font_size = font_size
self.x = x
self.y = y
def draw(self):
return f"Drawing Text: '{self.content}' (size {self.font_size}) at ({self.x}, {self.y})"
class Canvas:
def __init__(self):
self.objects = []
def add_object(self, drawable_object):
if not isinstance(drawable_object, Drawable):
raise TypeError("Object must implement Drawable interface")
self.objects.append(drawable_object)
def draw_all(self):
print("=== Canvas Rendering ===")
for i, obj in enumerate(self.objects):
print(f"{i+1}. {obj.draw()}")
print("=== End Rendering ===")
def clear(self):
self.objects.clear()
print("Canvas cleared")
# Test our interface design:
canvas = Canvas()
# Create various drawable objects
circle = Circle(5, 10, 20)
rectangle = Rectangle(15, 8, 5, 15)
title = Text("My Drawing", 24, 50, 5)
subtitle = Text("Created with Python", 14, 55, 30)
# Add objects to canvas
canvas.add_object(circle)
canvas.add_object(rectangle)
canvas.add_object(title)
canvas.add_object(subtitle)
# Draw everything
canvas.draw_all()
print("\nAdding more objects:")
canvas.add_object(Circle(3, 100, 100))
canvas.add_object(Text("Bottom text", 10, 0, 200))
canvas.draw_all()
# Test error handling
print("\nTesting error handling:")
try:
canvas.add_object("Not a drawable object")
except TypeError as e:
print(f"Error caught: {e}")
# What we accomplished in this step:
# - Created and tested various drawable objects
# - Demonstrated polymorphism with the Canvas class
# - Showed error handling for invalid objects
# ===============================================================================
# CONGRATULATIONS!
#
# You've successfully completed the step-by-step solution!
#
# Key concepts learned:
# - Interface design using abstract base classes
# - Programming to interfaces, not implementations
# - Polymorphism through common interfaces
# - Type checking with isinstance()
# - The benefits of loose coupling through interfaces
#
# 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 Line or Polygon classes!)
#
# Remember: The best way to learn is by doing!
# ===============================================================================