blob: a807c42ce47561c6a05f42123ad7e5582f02c4c2 [file] [log] [blame]
Guido van Rossum1a5e21e2006-02-28 21:57:43 +00001"""Utilities for with-statement contexts. See PEP 343."""
2
3import sys
4
Nick Coghlanafd5e632006-05-03 13:02:47 +00005__all__ = ["contextmanager", "nested", "closing"]
Guido van Rossum1a5e21e2006-02-28 21:57:43 +00006
Nick Coghlanafd5e632006-05-03 13:02:47 +00007class GeneratorContextManager(object):
8 """Helper for @contextmanager decorator."""
Guido van Rossum1a5e21e2006-02-28 21:57:43 +00009
10 def __init__(self, gen):
11 self.gen = gen
12
Guido van Rossum1a5e21e2006-02-28 21:57:43 +000013 def __enter__(self):
14 try:
15 return self.gen.next()
16 except StopIteration:
17 raise RuntimeError("generator didn't yield")
18
19 def __exit__(self, type, value, traceback):
20 if type is None:
21 try:
22 self.gen.next()
23 except StopIteration:
24 return
25 else:
26 raise RuntimeError("generator didn't stop")
27 else:
28 try:
29 self.gen.throw(type, value, traceback)
Phillip J. Eby6edd2582006-03-25 00:28:24 +000030 raise RuntimeError("generator didn't stop after throw()")
Phillip J. Eby93149d92006-04-10 17:56:29 +000031 except StopIteration, exc:
Phillip J. Eby93880202006-04-03 21:20:07 +000032 # Suppress the exception *unless* it's the same exception that
33 # was passed to throw(). This prevents a StopIteration
34 # raised inside the "with" statement from being suppressed
Phillip J. Eby93149d92006-04-10 17:56:29 +000035 return exc is not value
Phillip J. Eby6edd2582006-03-25 00:28:24 +000036 except:
Phillip J. Ebyccc7bb42006-03-25 04:32:12 +000037 # only re-raise if it's *not* the exception that was
38 # passed to throw(), because __exit__() must not raise
39 # an exception unless __exit__() itself failed. But throw()
40 # has to raise the exception to signal propagation, so this
41 # fixes the impedance mismatch between the throw() protocol
42 # and the __exit__() protocol.
43 #
Phillip J. Eby6edd2582006-03-25 00:28:24 +000044 if sys.exc_info()[1] is not value:
45 raise
Guido van Rossum1a5e21e2006-02-28 21:57:43 +000046
47
Nick Coghlanafd5e632006-05-03 13:02:47 +000048def contextmanager(func):
49 """@contextmanager decorator.
Guido van Rossum1a5e21e2006-02-28 21:57:43 +000050
51 Typical usage:
52
Nick Coghlanafd5e632006-05-03 13:02:47 +000053 @contextmanager
Guido van Rossum1a5e21e2006-02-28 21:57:43 +000054 def some_generator(<arguments>):
55 <setup>
56 try:
57 yield <value>
58 finally:
59 <cleanup>
60
61 This makes this:
62
63 with some_generator(<arguments>) as <variable>:
64 <body>
65
66 equivalent to this:
67
68 <setup>
69 try:
70 <variable> = <value>
71 <body>
72 finally:
73 <cleanup>
74
75 """
76 def helper(*args, **kwds):
Nick Coghlanafd5e632006-05-03 13:02:47 +000077 return GeneratorContextManager(func(*args, **kwds))
Guido van Rossum1a5e21e2006-02-28 21:57:43 +000078 try:
79 helper.__name__ = func.__name__
80 helper.__doc__ = func.__doc__
Phillip J. Eby35fd1422006-03-28 00:07:24 +000081 helper.__dict__ = func.__dict__
Guido van Rossum1a5e21e2006-02-28 21:57:43 +000082 except:
83 pass
84 return helper
85
86
Nick Coghlanafd5e632006-05-03 13:02:47 +000087@contextmanager
Guido van Rossumda5b7012006-05-02 19:47:52 +000088def nested(*managers):
Guido van Rossum1a5e21e2006-02-28 21:57:43 +000089 """Support multiple context managers in a single with-statement.
90
91 Code like this:
92
93 with nested(A, B, C) as (X, Y, Z):
94 <body>
95
96 is equivalent to this:
97
98 with A as X:
99 with B as Y:
100 with C as Z:
101 <body>
102
103 """
104 exits = []
105 vars = []
Guido van Rossumf6694362006-03-10 02:28:35 +0000106 exc = (None, None, None)
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000107 try:
108 try:
Guido van Rossumda5b7012006-05-02 19:47:52 +0000109 for mgr in managers:
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000110 exit = mgr.__exit__
111 enter = mgr.__enter__
112 vars.append(enter())
113 exits.append(exit)
114 yield vars
115 except:
116 exc = sys.exc_info()
117 finally:
118 while exits:
119 exit = exits.pop()
120 try:
Guido van Rossumf6694362006-03-10 02:28:35 +0000121 if exit(*exc):
122 exc = (None, None, None)
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000123 except:
124 exc = sys.exc_info()
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000125 if exc != (None, None, None):
Nick Coghlanda2268f2006-04-24 04:37:15 +0000126 # Don't rely on sys.exc_info() still containing
127 # the right information. Another exception may
128 # have been raised and caught by an exit method
129 raise exc[0], exc[1], exc[2]
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000130
131
Nick Coghlana7e820a2006-04-25 10:56:51 +0000132class closing(object):
133 """Context to automatically close something at the end of a block.
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000134
135 Code like this:
136
137 with closing(<module>.open(<arguments>)) as f:
138 <block>
139
140 is equivalent to this:
141
142 f = <module>.open(<arguments>)
143 try:
144 <block>
145 finally:
146 f.close()
147
148 """
Nick Coghlana7e820a2006-04-25 10:56:51 +0000149 def __init__(self, thing):
150 self.thing = thing
Nick Coghlana7e820a2006-04-25 10:56:51 +0000151 def __enter__(self):
152 return self.thing
153 def __exit__(self, *exc_info):
154 self.thing.close()