-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdescrPRE25.py
45 lines (38 loc) · 1.26 KB
/
descrPRE25.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
#!/usr/bin/env python
import os
import pickle
class FileDescr(object):
saved = []
def __init__(self, name):
self.name = name
def __get__(self, obj, typ=None):
if self.name not in FileDescr.saved:
raise AttributeError, \
"%r used before assignment" % self.name
try:
f = open(self.name, 'r')
val = pickle.load(f)
f.close()
return val
except (pickle.UnpicklingError, IOError,
EOFError, AttributeError,
ImportError, IndexError), e:
raise AttributeError, \
"could not read %r: %s" % self.name
def __set__(self, obj, val):
try:
try:
f = open(self.name, 'w')
pickle.dump(val, f)
FileDescr.saved.append(self.name)
except (IOError, TypeError, pickle.PicklingError), e:
raise AttributeError, \
"could not pickle %r" % self.name
finally:
f.close()
def __delete__(self, obj):
try:
os.unlink(self.name)
FileDescr.saved.remove(self.name)
except (OSError, ValueError), e:
pass