- Notifications
You must be signed in to change notification settings - Fork 31.7k
/
Copy pathcontextlib.py
703 lines (576 loc) · 24.2 KB
/
contextlib.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
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
"""Utilities for with-statement contexts. See PEP 343."""
importabc
importsys
import_collections_abc
fromcollectionsimportdeque
fromfunctoolsimportwraps
__all__= ["asynccontextmanager", "contextmanager", "closing", "nullcontext",
"AbstractContextManager", "AbstractAsyncContextManager",
"AsyncExitStack", "ContextDecorator", "ExitStack",
"redirect_stdout", "redirect_stderr", "suppress"]
classAbstractContextManager(abc.ABC):
"""An abstract base class for context managers."""
def__enter__(self):
"""Return `self` upon entering the runtime context."""
returnself
@abc.abstractmethod
def__exit__(self, exc_type, exc_value, traceback):
"""Raise any exception triggered within the runtime context."""
returnNone
@classmethod
def__subclasshook__(cls, C):
ifclsisAbstractContextManager:
return_collections_abc._check_methods(C, "__enter__", "__exit__")
returnNotImplemented
classAbstractAsyncContextManager(abc.ABC):
"""An abstract base class for asynchronous context managers."""
asyncdef__aenter__(self):
"""Return `self` upon entering the runtime context."""
returnself
@abc.abstractmethod
asyncdef__aexit__(self, exc_type, exc_value, traceback):
"""Raise any exception triggered within the runtime context."""
returnNone
@classmethod
def__subclasshook__(cls, C):
ifclsisAbstractAsyncContextManager:
return_collections_abc._check_methods(C, "__aenter__",
"__aexit__")
returnNotImplemented
classContextDecorator(object):
"A base class or mixin that enables context managers to work as decorators."
def_recreate_cm(self):
"""Return a recreated instance of self.
Allows an otherwise one-shot context manager like
_GeneratorContextManager to support use as
a decorator via implicit recreation.
This is a private interface just for _GeneratorContextManager.
See issue #11647 for details.
"""
returnself
def__call__(self, func):
@wraps(func)
definner(*args, **kwds):
withself._recreate_cm():
returnfunc(*args, **kwds)
returninner
class_GeneratorContextManagerBase:
"""Shared functionality for @contextmanager and @asynccontextmanager."""
def__init__(self, func, args, kwds):
self.gen=func(*args, **kwds)
self.func, self.args, self.kwds=func, args, kwds
# Issue 19330: ensure context manager instances have good docstrings
doc=getattr(func, "__doc__", None)
ifdocisNone:
doc=type(self).__doc__
self.__doc__=doc
# Unfortunately, this still doesn't provide good help output when
# inspecting the created context manager instances, since pydoc
# currently bypasses the instance docstring and shows the docstring
# for the class instead.
# See http://bugs.python.org/issue19404 for more details.
class_GeneratorContextManager(_GeneratorContextManagerBase,
AbstractContextManager,
ContextDecorator):
"""Helper for @contextmanager decorator."""
def_recreate_cm(self):
# _GCM instances are one-shot context managers, so the
# CM must be recreated each time a decorated function is
# called
returnself.__class__(self.func, self.args, self.kwds)
def__enter__(self):
# do not keep args and kwds alive unnecessarily
# they are only needed for recreation, which is not possible anymore
delself.args, self.kwds, self.func
try:
returnnext(self.gen)
exceptStopIteration:
raiseRuntimeError("generator didn't yield") fromNone
def__exit__(self, type, value, traceback):
iftypeisNone:
try:
next(self.gen)
exceptStopIteration:
returnFalse
else:
raiseRuntimeError("generator didn't stop")
else:
ifvalueisNone:
# Need to force instantiation so we can reliably
# tell if we get the same exception back
value=type()
try:
self.gen.throw(type, value, traceback)
exceptStopIterationasexc:
# Suppress StopIteration *unless* it's the same exception that
# was passed to throw(). This prevents a StopIteration
# raised inside the "with" statement from being suppressed.
returnexcisnotvalue
exceptRuntimeErrorasexc:
# Don't re-raise the passed in exception. (issue27122)
ifexcisvalue:
returnFalse
# Likewise, avoid suppressing if a StopIteration exception
# was passed to throw() and later wrapped into a RuntimeError
# (see PEP 479).
iftypeisStopIterationandexc.__cause__isvalue:
returnFalse
raise
except:
# only re-raise if it's *not* the exception that was
# passed to throw(), because __exit__() must not raise
# an exception unless __exit__() itself failed. But throw()
# has to raise the exception to signal propagation, so this
# fixes the impedance mismatch between the throw() protocol
# and the __exit__() protocol.
#
# This cannot use 'except BaseException as exc' (as in the
# async implementation) to maintain compatibility with
# Python 2, where old-style class exceptions are not caught
# by 'except BaseException'.
ifsys.exc_info()[1] isvalue:
returnFalse
raise
raiseRuntimeError("generator didn't stop after throw()")
class_AsyncGeneratorContextManager(_GeneratorContextManagerBase,
AbstractAsyncContextManager):
"""Helper for @asynccontextmanager."""
asyncdef__aenter__(self):
try:
returnawaitself.gen.__anext__()
exceptStopAsyncIteration:
raiseRuntimeError("generator didn't yield") fromNone
asyncdef__aexit__(self, typ, value, traceback):
iftypisNone:
try:
awaitself.gen.__anext__()
exceptStopAsyncIteration:
return
else:
raiseRuntimeError("generator didn't stop")
else:
ifvalueisNone:
value=typ()
# See _GeneratorContextManager.__exit__ for comments on subtleties
# in this implementation
try:
awaitself.gen.athrow(typ, value, traceback)
raiseRuntimeError("generator didn't stop after athrow()")
exceptStopAsyncIterationasexc:
returnexcisnotvalue
exceptRuntimeErrorasexc:
ifexcisvalue:
returnFalse
# Avoid suppressing if a StopIteration exception
# was passed to throw() and later wrapped into a RuntimeError
# (see PEP 479 for sync generators; async generators also
# have this behavior). But do this only if the exception wrapped
# by the RuntimeError is actully Stop(Async)Iteration (see
# issue29692).
ifisinstance(value, (StopIteration, StopAsyncIteration)):
ifexc.__cause__isvalue:
returnFalse
raise
exceptBaseExceptionasexc:
ifexcisnotvalue:
raise
defcontextmanager(func):
"""@contextmanager decorator.
Typical usage:
@contextmanager
def some_generator(<arguments>):
<setup>
try:
yield <value>
finally:
<cleanup>
This makes this:
with some_generator(<arguments>) as <variable>:
<body>
equivalent to this:
<setup>
try:
<variable> = <value>
<body>
finally:
<cleanup>
"""
@wraps(func)
defhelper(*args, **kwds):
return_GeneratorContextManager(func, args, kwds)
returnhelper
defasynccontextmanager(func):
"""@asynccontextmanager decorator.
Typical usage:
@asynccontextmanager
async def some_async_generator(<arguments>):
<setup>
try:
yield <value>
finally:
<cleanup>
This makes this:
async with some_async_generator(<arguments>) as <variable>:
<body>
equivalent to this:
<setup>
try:
<variable> = <value>
<body>
finally:
<cleanup>
"""
@wraps(func)
defhelper(*args, **kwds):
return_AsyncGeneratorContextManager(func, args, kwds)
returnhelper
classclosing(AbstractContextManager):
"""Context to automatically close something at the end of a block.
Code like this:
with closing(<module>.open(<arguments>)) as f:
<block>
is equivalent to this:
f = <module>.open(<arguments>)
try:
<block>
finally:
f.close()
"""
def__init__(self, thing):
self.thing=thing
def__enter__(self):
returnself.thing
def__exit__(self, *exc_info):
self.thing.close()
class_RedirectStream(AbstractContextManager):
_stream=None
def__init__(self, new_target):
self._new_target=new_target
# We use a list of old targets to make this CM re-entrant
self._old_targets= []
def__enter__(self):
self._old_targets.append(getattr(sys, self._stream))
setattr(sys, self._stream, self._new_target)
returnself._new_target
def__exit__(self, exctype, excinst, exctb):
setattr(sys, self._stream, self._old_targets.pop())
classredirect_stdout(_RedirectStream):
"""Context manager for temporarily redirecting stdout to another file.
# How to send help() to stderr
with redirect_stdout(sys.stderr):
help(dir)
# How to write help() to a file
with open('help.txt', 'w') as f:
with redirect_stdout(f):
help(pow)
"""
_stream="stdout"
classredirect_stderr(_RedirectStream):
"""Context manager for temporarily redirecting stderr to another file."""
_stream="stderr"
classsuppress(AbstractContextManager):
"""Context manager to suppress specified exceptions
After the exception is suppressed, execution proceeds with the next
statement following the with statement.
with suppress(FileNotFoundError):
os.remove(somefile)
# Execution still resumes here if the file was already removed
"""
def__init__(self, *exceptions):
self._exceptions=exceptions
def__enter__(self):
pass
def__exit__(self, exctype, excinst, exctb):
# Unlike isinstance and issubclass, CPython exception handling
# currently only looks at the concrete type hierarchy (ignoring
# the instance and subclass checking hooks). While Guido considers
# that a bug rather than a feature, it's a fairly hard one to fix
# due to various internal implementation details. suppress provides
# the simpler issubclass based semantics, rather than trying to
# exactly reproduce the limitations of the CPython interpreter.
#
# See http://bugs.python.org/issue12029 for more details
returnexctypeisnotNoneandissubclass(exctype, self._exceptions)
class_BaseExitStack:
"""A base class for ExitStack and AsyncExitStack."""
@staticmethod
def_create_exit_wrapper(cm, cm_exit):
def_exit_wrapper(exc_type, exc, tb):
returncm_exit(cm, exc_type, exc, tb)
return_exit_wrapper
@staticmethod
def_create_cb_wrapper(*args, **kwds):
callback, *args=args
def_exit_wrapper(exc_type, exc, tb):
callback(*args, **kwds)
return_exit_wrapper
def__init__(self):
self._exit_callbacks=deque()
defpop_all(self):
"""Preserve the context stack by transferring it to a new instance."""
new_stack=type(self)()
new_stack._exit_callbacks=self._exit_callbacks
self._exit_callbacks=deque()
returnnew_stack
defpush(self, exit):
"""Registers a callback with the standard __exit__ method signature.
Can suppress exceptions the same way __exit__ method can.
Also accepts any object with an __exit__ method (registering a call
to the method instead of the object itself).
"""
# We use an unbound method rather than a bound method to follow
# the standard lookup behaviour for special methods.
_cb_type=type(exit)
try:
exit_method=_cb_type.__exit__
exceptAttributeError:
# Not a context manager, so assume it's a callable.
self._push_exit_callback(exit)
else:
self._push_cm_exit(exit, exit_method)
returnexit# Allow use as a decorator.
defenter_context(self, cm):
"""Enters the supplied context manager.
If successful, also pushes its __exit__ method as a callback and
returns the result of the __enter__ method.
"""
# We look up the special methods on the type to match the with
# statement.
_cm_type=type(cm)
_exit=_cm_type.__exit__
result=_cm_type.__enter__(cm)
self._push_cm_exit(cm, _exit)
returnresult
defcallback(*args, **kwds):
"""Registers an arbitrary callback and arguments.
Cannot suppress exceptions.
"""
iflen(args) >=2:
self, callback, *args=args
elifnotargs:
raiseTypeError("descriptor 'callback' of '_BaseExitStack' object "
"needs an argument")
elif'callback'inkwds:
callback=kwds.pop('callback')
self, *args=args
else:
raiseTypeError('callback expected at least 1 positional argument, '
'got %d'% (len(args)-1))
_exit_wrapper=self._create_cb_wrapper(callback, *args, **kwds)
# We changed the signature, so using @wraps is not appropriate, but
# setting __wrapped__ may still help with introspection.
_exit_wrapper.__wrapped__=callback
self._push_exit_callback(_exit_wrapper)
returncallback# Allow use as a decorator
def_push_cm_exit(self, cm, cm_exit):
"""Helper to correctly register callbacks to __exit__ methods."""
_exit_wrapper=self._create_exit_wrapper(cm, cm_exit)
_exit_wrapper.__self__=cm
self._push_exit_callback(_exit_wrapper, True)
def_push_exit_callback(self, callback, is_sync=True):
self._exit_callbacks.append((is_sync, callback))
# Inspired by discussions on http://bugs.python.org/issue13585
classExitStack(_BaseExitStack, AbstractContextManager):
"""Context manager for dynamic management of a stack of exit callbacks.
For example:
with ExitStack() as stack:
files = [stack.enter_context(open(fname)) for fname in filenames]
# All opened files will automatically be closed at the end of
# the with statement, even if attempts to open files later
# in the list raise an exception.
"""
def__enter__(self):
returnself
def__exit__(self, *exc_details):
received_exc=exc_details[0] isnotNone
# We manipulate the exception state so it behaves as though
# we were actually nesting multiple with statements
frame_exc=sys.exc_info()[1]
def_fix_exception_context(new_exc, old_exc):
# Context may not be correct, so find the end of the chain
while1:
exc_context=new_exc.__context__
ifexc_contextisold_exc:
# Context is already set correctly (see issue 20317)
return
ifexc_contextisNoneorexc_contextisframe_exc:
break
new_exc=exc_context
# Change the end of the chain to point to the exception
# we expect it to reference
new_exc.__context__=old_exc
# Callbacks are invoked in LIFO order to match the behaviour of
# nested context managers
suppressed_exc=False
pending_raise=False
whileself._exit_callbacks:
is_sync, cb=self._exit_callbacks.pop()
assertis_sync
try:
ifcb(*exc_details):
suppressed_exc=True
pending_raise=False
exc_details= (None, None, None)
except:
new_exc_details=sys.exc_info()
# simulate the stack of exceptions by setting the context
_fix_exception_context(new_exc_details[1], exc_details[1])
pending_raise=True
exc_details=new_exc_details
ifpending_raise:
try:
# bare "raise exc_details[1]" replaces our carefully
# set-up context
fixed_ctx=exc_details[1].__context__
raiseexc_details[1]
exceptBaseException:
exc_details[1].__context__=fixed_ctx
raise
returnreceived_excandsuppressed_exc
defclose(self):
"""Immediately unwind the context stack."""
self.__exit__(None, None, None)
# Inspired by discussions on https://bugs.python.org/issue29302
classAsyncExitStack(_BaseExitStack, AbstractAsyncContextManager):
"""Async context manager for dynamic management of a stack of exit
callbacks.
For example:
async with AsyncExitStack() as stack:
connections = [await stack.enter_async_context(get_connection())
for i in range(5)]
# All opened connections will automatically be released at the
# end of the async with statement, even if attempts to open a
# connection later in the list raise an exception.
"""
@staticmethod
def_create_async_exit_wrapper(cm, cm_exit):
asyncdef_exit_wrapper(exc_type, exc, tb):
returnawaitcm_exit(cm, exc_type, exc, tb)
return_exit_wrapper
@staticmethod
def_create_async_cb_wrapper(*args, **kwds):
callback, *args=args
asyncdef_exit_wrapper(exc_type, exc, tb):
awaitcallback(*args, **kwds)
return_exit_wrapper
asyncdefenter_async_context(self, cm):
"""Enters the supplied async context manager.
If successful, also pushes its __aexit__ method as a callback and
returns the result of the __aenter__ method.
"""
_cm_type=type(cm)
_exit=_cm_type.__aexit__
result=await_cm_type.__aenter__(cm)
self._push_async_cm_exit(cm, _exit)
returnresult
defpush_async_exit(self, exit):
"""Registers a coroutine function with the standard __aexit__ method
signature.
Can suppress exceptions the same way __aexit__ method can.
Also accepts any object with an __aexit__ method (registering a call
to the method instead of the object itself).
"""
_cb_type=type(exit)
try:
exit_method=_cb_type.__aexit__
exceptAttributeError:
# Not an async context manager, so assume it's a coroutine function
self._push_exit_callback(exit, False)
else:
self._push_async_cm_exit(exit, exit_method)
returnexit# Allow use as a decorator
defpush_async_callback(*args, **kwds):
"""Registers an arbitrary coroutine function and arguments.
Cannot suppress exceptions.
"""
iflen(args) >=2:
self, callback, *args=args
elifnotargs:
raiseTypeError("descriptor 'push_async_callback' of "
"'AsyncExitStack' object needs an argument")
elif'callback'inkwds:
callback=kwds.pop('callback')
self, *args=args
else:
raiseTypeError('push_async_callback expected at least 1 '
'positional argument, got %d'% (len(args)-1))
_exit_wrapper=self._create_async_cb_wrapper(callback, *args, **kwds)
# We changed the signature, so using @wraps is not appropriate, but
# setting __wrapped__ may still help with introspection.
_exit_wrapper.__wrapped__=callback
self._push_exit_callback(_exit_wrapper, False)
returncallback# Allow use as a decorator
asyncdefaclose(self):
"""Immediately unwind the context stack."""
awaitself.__aexit__(None, None, None)
def_push_async_cm_exit(self, cm, cm_exit):
"""Helper to correctly register coroutine function to __aexit__
method."""
_exit_wrapper=self._create_async_exit_wrapper(cm, cm_exit)
_exit_wrapper.__self__=cm
self._push_exit_callback(_exit_wrapper, False)
asyncdef__aenter__(self):
returnself
asyncdef__aexit__(self, *exc_details):
received_exc=exc_details[0] isnotNone
# We manipulate the exception state so it behaves as though
# we were actually nesting multiple with statements
frame_exc=sys.exc_info()[1]
def_fix_exception_context(new_exc, old_exc):
# Context may not be correct, so find the end of the chain
while1:
exc_context=new_exc.__context__
ifexc_contextisold_exc:
# Context is already set correctly (see issue 20317)
return
ifexc_contextisNoneorexc_contextisframe_exc:
break
new_exc=exc_context
# Change the end of the chain to point to the exception
# we expect it to reference
new_exc.__context__=old_exc
# Callbacks are invoked in LIFO order to match the behaviour of
# nested context managers
suppressed_exc=False
pending_raise=False
whileself._exit_callbacks:
is_sync, cb=self._exit_callbacks.pop()
try:
ifis_sync:
cb_suppress=cb(*exc_details)
else:
cb_suppress=awaitcb(*exc_details)
ifcb_suppress:
suppressed_exc=True
pending_raise=False
exc_details= (None, None, None)
except:
new_exc_details=sys.exc_info()
# simulate the stack of exceptions by setting the context
_fix_exception_context(new_exc_details[1], exc_details[1])
pending_raise=True
exc_details=new_exc_details
ifpending_raise:
try:
# bare "raise exc_details[1]" replaces our carefully
# set-up context
fixed_ctx=exc_details[1].__context__
raiseexc_details[1]
exceptBaseException:
exc_details[1].__context__=fixed_ctx
raise
returnreceived_excandsuppressed_exc
classnullcontext(AbstractContextManager):
"""Context manager that does no additional processing.
Used as a stand-in for a normal context manager, when a particular
block of code is only sometimes used with a normal context manager:
cm = optional_cm if condition else nullcontext()
with cm:
# Perform operation, using optional_cm if condition is True
"""
def__init__(self, enter_result=None):
self.enter_result=enter_result
def__enter__(self):
returnself.enter_result
def__exit__(self, *excinfo):
pass