@@ -19,21 +19,17 @@ class TempDirectory(object):
19
19
20
20
Attributes:
21
21
path
22
- Location to the created temporary directory or None
22
+ Location to the created temporary directory
23
23
delete
24
24
Whether the directory should be deleted when exiting
25
25
(when used as a contextmanager)
26
26
27
27
Methods:
28
- create()
29
- Creates a temporary directory and stores its path in the path
30
- attribute.
31
28
cleanup()
32
- Deletes the temporary directory and sets path attribute to None
29
+ Deletes the temporary directory
33
30
34
- When used as a context manager, a temporary directory is created on
35
- entering the context and, if the delete attribute is True, on exiting the
36
- context the created directory is deleted.
31
+ When used as a context manager, if the delete attribute is True, on
32
+ exiting the context the temporary directory is deleted.
37
33
"""
38
34
39
35
def __init__ (self , path = None , delete = None , kind = "temp" ):
@@ -44,6 +40,9 @@ def __init__(self, path=None, delete=None, kind="temp"):
44
40
# an explicit delete option, then we'll default to deleting.
45
41
delete = True
46
42
43
+ if path is None :
44
+ path = self ._create (kind )
45
+
47
46
self .path = path
48
47
self .delete = delete
49
48
self .kind = kind
@@ -52,40 +51,30 @@ def __repr__(self):
52
51
return "<{} {!r}>" .format (self .__class__ .__name__ , self .path )
53
52
54
53
def __enter__ (self ):
55
- self .create ()
56
54
return self
57
55
58
56
def __exit__ (self , exc , value , tb ):
59
57
if self .delete :
60
58
self .cleanup ()
61
59
62
- def create (self ):
63
- self .path = self ._create ()
64
-
65
- def _create (self ):
60
+ def _create (self , kind ):
66
61
"""Create a temporary directory and store its path in self.path
67
62
"""
68
- if self .path is not None :
69
- logger .debug (
70
- "Skipped creation of temporary directory: {}" .format (self .path )
71
- )
72
- return self .path
73
63
# We realpath here because some systems have their default tmpdir
74
64
# symlinked to another directory. This tends to confuse build
75
65
# scripts, so we canonicalize the path by traversing potential
76
66
# symlinks here.
77
67
path = os .path .realpath (
78
- tempfile .mkdtemp (prefix = "pip-{}-" .format (self . kind ))
68
+ tempfile .mkdtemp (prefix = "pip-{}-" .format (kind ))
79
69
)
80
70
logger .debug ("Created temporary directory: {}" .format (path ))
81
71
return path
82
72
83
73
def cleanup (self ):
84
74
"""Remove the temporary directory created and reset state
85
75
"""
86
- if self . path is not None and os .path .exists (self .path ):
76
+ if os .path .exists (self .path ):
87
77
rmtree (self .path )
88
- self .path = None
89
78
90
79
91
80
class AdjacentTempDirectory (TempDirectory ):
@@ -110,8 +99,8 @@ class AdjacentTempDirectory(TempDirectory):
110
99
LEADING_CHARS = "-~.=%0123456789"
111
100
112
101
def __init__ (self , original , delete = None ):
113
- super (AdjacentTempDirectory , self ).__init__ (delete = delete )
114
102
self .original = original .rstrip ('/\\ ' )
103
+ super (AdjacentTempDirectory , self ).__init__ (delete = delete )
115
104
116
105
@classmethod
117
106
def _generate_names (cls , name ):
@@ -137,7 +126,7 @@ def _generate_names(cls, name):
137
126
if new_name != name :
138
127
yield new_name
139
128
140
- def _create (self ):
129
+ def _create (self , kind ):
141
130
root , name = os .path .split (self .original )
142
131
for candidate in self ._generate_names (name ):
143
132
path = os .path .join (root , candidate )
@@ -153,7 +142,7 @@ def _create(self):
153
142
else :
154
143
# Final fallback on the default behavior.
155
144
path = os .path .realpath (
156
- tempfile .mkdtemp (prefix = "pip-{}-" .format (self . kind ))
145
+ tempfile .mkdtemp (prefix = "pip-{}-" .format (kind ))
157
146
)
158
147
159
148
logger .debug ("Created temporary directory: {}" .format (path ))
0 commit comments