-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path06-context-manager-resources.py
More file actions
233 lines (162 loc) · 6.66 KB
/
06-context-manager-resources.py
File metadata and controls
233 lines (162 loc) · 6.66 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
"""Question: Define a class Resource that uses the context management protocol
(__enter__ and __exit__ methods) to manage resources.
Ensure that resources are properly acquired and released.
"""
# 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 are the __enter__ and __exit__ methods used for?
# - When is __enter__ called and what should it return?
# - What parameters does __exit__ receive and what do they mean?
# - How do you use the 'with' statement to test context managers?
#
# 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 Resource class
# ===============================================================================
# Explanation:
# Let's start by creating our Resource class. This class will implement the
# context management protocol, which allows it to be used with the 'with' statement.
class Resource:
pass # We'll add methods next
# What we accomplished in this step:
# - Created the basic Resource class structure
# Step 2: Add the __enter__ method
# ===============================================================================
# Explanation:
# The __enter__ method is called when entering the 'with' block. It should
# acquire the resource and return the object that will be assigned to the
# variable after 'as' in the with statement.
class Resource:
def __enter__(self):
print("Acquiring resource")
return self # Return self so it can be used in the with block
# What we accomplished in this step:
# - Added __enter__ method that simulates resource acquisition
# - Returns self to make the resource available in the with block
# Step 3: Add the __exit__ method
# ===============================================================================
# Explanation:
# The __exit__ method is called when exiting the 'with' block, whether normally
# or due to an exception. It receives information about any exception that occurred
# and should clean up the resource.
class Resource:
def __enter__(self):
print("Acquiring resource")
return self
def __exit__(self, exc_type, exc_value, traceback):
print("Releasing resource")
# Return None (or False) to propagate any exceptions
# What we accomplished in this step:
# - Added __exit__ method that simulates resource cleanup
# - Accepts exception information parameters
# - Ensures resource is always released
# Step 4: Test our context manager
# ===============================================================================
# Explanation:
# Now let's test our Resource class using the 'with' statement. This will
# demonstrate how the context management protocol works in practice.
class Resource:
def __enter__(self):
print("Acquiring resource")
return self
def __exit__(self, exc_type, exc_value, traceback):
print("Releasing resource")
# Test our context manager:
print("=== Normal usage ===")
with Resource() as resource:
print("Using resource")
print(f"Resource object: {resource}")
print("\n=== Usage with exception ===")
try:
with Resource() as resource:
print("Using resource")
raise ValueError("Something went wrong!")
print("This won't be printed")
except ValueError as e:
print(f"Caught exception: {e}")
# What we accomplished in this step:
# - Tested normal context manager usage
# - Tested behavior when exceptions occur
# - Verified that resources are always released
# Step 5: Enhanced version with resource name
# ===============================================================================
# Explanation:
# Let's create an enhanced version that can manage different types of resources
# and provides more detailed logging.
class Resource:
def __init__(self, name="Generic Resource"):
self.name = name
self.is_acquired = False
def __enter__(self):
print(f"Acquiring {self.name}")
self.is_acquired = True
return self
def __exit__(self, exc_type, exc_value, traceback):
print(f"Releasing {self.name}")
self.is_acquired = False
if exc_type is not None:
print(f"Exception occurred: {exc_type.__name__}: {exc_value}")
# Return False to propagate exceptions
def do_work(self):
if self.is_acquired:
print(f"Working with {self.name}")
else:
print(f"Cannot work with {self.name} - not acquired")
# Test enhanced version:
print("\n=== Enhanced Resource Manager ===")
with Resource("Database Connection") as db:
db.do_work()
with Resource("File Handle") as file:
file.do_work()
# What we accomplished in this step:
# - Enhanced the Resource class with named resources
# - Added state tracking with is_acquired
# - Provided better exception information
# - Added a method to demonstrate resource usage
# ===============================================================================
# CONGRATULATIONS!
#
# You've successfully completed the step-by-step solution!
#
# Key concepts learned:
# - Understanding the context management protocol (__enter__ and __exit__)
# - How the 'with' statement works with context managers
# - Proper resource acquisition and cleanup patterns
# - Exception handling in context managers
# - Creating reusable resource management classes
#
# 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 creating a FileResource that actually opens files!)
#
# Remember: The best way to learn is by doing!
# ===============================================================================