forked from bslatkin/effectivepython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathitem_47.py
More file actions
executable file
·204 lines (166 loc) · 6.34 KB
/
item_47.py
File metadata and controls
executable file
·204 lines (166 loc) · 6.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
#!/usr/bin/env PYTHONHASHSEED=1234 python3
# Copyright 2014-2019 Brett Slatkin, Pearson Education Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Reproduce book environment
import random
random.seed(1234)
import logging
from pprint import pprint
from sys import stdout as STDOUT
# Write all output to a temporary directory
import atexit
import gc
import io
import os
import tempfile
TEST_DIR = tempfile.TemporaryDirectory()
atexit.register(TEST_DIR.cleanup)
# Make sure Windows processes exit cleanly
OLD_CWD = os.getcwd()
atexit.register(lambda: os.chdir(OLD_CWD))
os.chdir(TEST_DIR.name)
def close_open_files():
everything = gc.get_objects()
for obj in everything:
if isinstance(obj, io.IOBase):
obj.close()
atexit.register(close_open_files)
# Example 1
class LazyRecord:#get and set with init as key/value
def __init__(self):
self.exists = 5#init var with value
def __getattr__(self, name):
value = f'Value for {name}'
setattr(self, name, value)
return value
# Example 2
data = LazyRecord()
print('Before:', data.__dict__)
data.foo = 6#if key value construct then add to dict
print('After: ', data.__dict__)
print('foo1: ', data.foo1)#if only key take default value with setattr method
print('After: ', data.__dict__)
# Example 3
class LoggingLazyRecord(LazyRecord):
def __getattr__(self, name):
print(f'* Called __getattr__({name!r}), '
f'populating instance dictionary')
result = super().__getattr__(name)
print(f'* Returning {result!r}')
return result
data = LoggingLazyRecord()
print('exists: ', data.exists)
print('First foo: ', data.foo)#* Called __getattr__('foo'), populating instance dictionary
print('Second foo: ', data.foo)#checks the dict at every call
print('After: ', data.__dict__)#After: {'exists': 5, 'foo': 'Value for foo'}
#
# Example 4
class ValidatingRecord:
def __init__(self):
self.exists = 5
def __getattribute__(self, name):
print(f'* Called __getattribute__({name!r})')
try:
value = super().__getattribute__(name)#test for attribute if not error and assign of value
#second call attribute found
#value = __getattribute__(name)#"__getattribute__" is not defined
print(f'* Found {name!r}, returning {value!r}')
return value
except AttributeError:
value = f'Value for {name}'
print(f'* Setting {name!r} to {value!r}')
setattr(self, name, value)
return value
data = ValidatingRecord()
print('exists: ', data.exists)
print('First foo: ', data.foo)
print('Second foo: ', data.foo)
# Example 5
try:
class MissingPropertyRecord:
def __getattr__(self, name):
if name == 'bad_name':
raise AttributeError(f'{name} is missing')
value = f'Value for {name}'
setattr(self, name, value)
return value
data = MissingPropertyRecord()
assert data.foo == 'Value for foo' # Test this works
data.bad_name#raises error -> AttributeError: bad_name is missing
except:
logging.exception('Expected')
else:
assert False
# Example 6
data = LoggingLazyRecord() # Implements __getattr__ class with class approach through fill up dict
print('Before: ', data.__dict__)
print('Has first foo: ', hasattr(data, 'foo'))
print('After: ', data.__dict__)
print('Has second foo: ', hasattr(data, 'foo'))
# Example 7
data = ValidatingRecord() # Implements __getattribute__ class by using attribute error to fill up with get/set atribute
#sort of key/value construct
print('Has first foo: ', hasattr(data, 'foo'))
print('Has second foo: ', hasattr(data, 'foo'))
# Example 8
class SavingRecord:
def __setattr__(self, name, value):
# Save some data for the record
pass
super().__setattr__(name, value)
# Example 9
class LoggingSavingRecord(SavingRecord):
def __setattr__(self, name, value):
print(f'* Called __setattr__({name!r}, {value!r})')
super().__setattr__(name, value)
data = LoggingSavingRecord()#init new class instance
print('Before: ', data.__dict__)#Before: {} sets dict to empty
data.foo = 5
print('After: ', data.__dict__)#* Called __setattr__('foo', 5) -> After: {'foo': 5}
data.foo = 7
print('Finally:', data.__dict__)#* Called __setattr__('foo', 7) ->Finally: {'foo': 7} here overwrite foo
data.foo1 = 8
print('Finally1:', data.__dict__)#* Called __setattr__('foo1', 8) ->Finally1: {'foo': 7, 'foo1': 8}
# Example 10
class BrokenDictionaryRecord:#RecursionError: maximum recursion depth exceeded while calling a Python object
def __init__(self, data):
self._data = {}
def __getattribute__(self, name):
print(f'* Called __getattribute__({name!r})')
return self._data[name]
# Example 11
try:
data = BrokenDictionaryRecord({'foo': 3})
data.foo
except:
logging.exception('Expected')
else:
assert False
# Example 12
class DictionaryRecord:
def __init__(self, data):
self._data = data
def __getattribute__(self, name):#(method) def __getattribute__(self: Self@DictionaryRecord,name: Any) -> (Type[DictionaryRecord] | Any)
# Prevent weird interactions with isinstance() used
# by example code harness.
print(name)
if name == '__class__':
return DictionaryRecord
print(f'* Called __getattribute__({name!r})')
data_dict = super().__getattribute__('_data')#Return getattr(self, name)
#data_dict = __getattribute__('_data') ->"__getattribute__" is not defined
return data_dict[name]
data = DictionaryRecord({'foo': 3,'foo1':5})#only data from DictionaryRecord returned
print('foo: ', data.foo)
print('foo1: ', data.foo1)#* Called __getattribute__('foo1') ->foo1: 5