2017-12-12 12:11:31 -05:00
|
|
|
PEP: 567
|
|
|
|
Title: Context Variables
|
|
|
|
Version: $Revision$
|
|
|
|
Last-Modified: $Date$
|
|
|
|
Author: Yury Selivanov <yury@magic.io>
|
|
|
|
Status: Draft
|
|
|
|
Type: Standards Track
|
|
|
|
Content-Type: text/x-rst
|
|
|
|
Created: 12-Dec-2017
|
|
|
|
Python-Version: 3.7
|
|
|
|
Post-History: 12-Dec-2017
|
|
|
|
|
|
|
|
|
|
|
|
Abstract
|
|
|
|
========
|
|
|
|
|
2017-12-12 20:03:42 -05:00
|
|
|
This PEP proposes a new ``contextvars`` module and a set of new
|
2017-12-12 12:11:31 -05:00
|
|
|
CPython C APIs to support context variables. This concept is
|
2017-12-12 20:41:25 -05:00
|
|
|
similar to thread-local storage (TLS), but, unlike TLS, it allows
|
2017-12-12 12:11:31 -05:00
|
|
|
correctly keeping track of values per asynchronous task, e.g.
|
|
|
|
``asyncio.Task``.
|
|
|
|
|
2017-12-12 23:03:05 -05:00
|
|
|
This proposal is a simplified version of :pep:`550`. The key
|
|
|
|
difference is that this PEP is concerned only with solving the case
|
|
|
|
for asynchronous tasks, not for generators. There are no proposed
|
|
|
|
modifications to any built-in types or to the interpreter.
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
|
|
|
|
Rationale
|
|
|
|
=========
|
|
|
|
|
2017-12-12 22:40:33 -05:00
|
|
|
Thread-local variables are insufficient for asynchronous tasks that
|
2017-12-12 12:11:31 -05:00
|
|
|
execute concurrently in the same OS thread. Any context manager that
|
2017-12-12 20:03:42 -05:00
|
|
|
saves and restores a context value using ``threading.local()`` will
|
|
|
|
have its context values bleed to other code unexpectedly when used
|
|
|
|
in async/await code.
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
A few examples where having a working context local storage for
|
2017-12-12 20:03:42 -05:00
|
|
|
asynchronous code is desirable:
|
2017-12-12 12:11:31 -05:00
|
|
|
|
2017-12-12 22:40:33 -05:00
|
|
|
* Context managers like ``decimal`` contexts and ``numpy.errstate``.
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
* Request-related data, such as security tokens and request
|
2017-12-12 20:03:42 -05:00
|
|
|
data in web applications, language context for ``gettext``, etc.
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
* Profiling, tracing, and logging in large code bases.
|
|
|
|
|
|
|
|
|
|
|
|
Introduction
|
|
|
|
============
|
|
|
|
|
|
|
|
The PEP proposes a new mechanism for managing context variables.
|
|
|
|
The key classes involved in this mechanism are ``contextvars.Context``
|
|
|
|
and ``contextvars.ContextVar``. The PEP also proposes some policies
|
|
|
|
for using the mechanism around asynchronous tasks.
|
|
|
|
|
|
|
|
The proposed mechanism for accessing context variables uses the
|
2017-12-12 20:03:42 -05:00
|
|
|
``ContextVar`` class. A module (such as ``decimal``) that wishes to
|
2017-12-12 12:11:31 -05:00
|
|
|
store a context variable should:
|
|
|
|
|
|
|
|
* declare a module-global variable holding a ``ContextVar`` to
|
2017-12-12 22:40:33 -05:00
|
|
|
serve as a key;
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
* access the current value via the ``get()`` method on the
|
|
|
|
key variable;
|
|
|
|
|
|
|
|
* modify the current value via the ``set()`` method on the
|
|
|
|
key variable.
|
|
|
|
|
|
|
|
The notion of "current value" deserves special consideration:
|
|
|
|
different asynchronous tasks that exist and execute concurrently
|
2017-12-12 22:40:33 -05:00
|
|
|
may have different values for the same key. This idea is well-known
|
|
|
|
from thread-local storage but in this case the locality of the value is
|
|
|
|
not necessarily bound to a thread. Instead, there is the notion of the
|
2017-12-12 12:11:31 -05:00
|
|
|
"current ``Context``" which is stored in thread-local storage, and
|
|
|
|
is accessed via ``contextvars.get_context()`` function.
|
|
|
|
Manipulation of the current ``Context`` is the responsibility of the
|
|
|
|
task framework, e.g. asyncio.
|
|
|
|
|
2017-12-12 21:39:08 -05:00
|
|
|
A ``Context`` is conceptually a read-only mapping, implemented using
|
|
|
|
an immutable dictionary. The ``ContextVar.get()`` method does a
|
2017-12-12 12:11:31 -05:00
|
|
|
lookup in the current ``Context`` with ``self`` as a key, raising a
|
|
|
|
``LookupError`` or returning a default value specified in
|
|
|
|
the constructor.
|
|
|
|
|
|
|
|
The ``ContextVar.set(value)`` method clones the current ``Context``,
|
|
|
|
assigns the ``value`` to it with ``self`` as a key, and sets the
|
2017-12-12 22:40:33 -05:00
|
|
|
new ``Context`` as the new current ``Context``.
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
|
|
|
|
Specification
|
|
|
|
=============
|
|
|
|
|
|
|
|
A new standard library module ``contextvars`` is added with the
|
|
|
|
following APIs:
|
|
|
|
|
|
|
|
1. ``get_context() -> Context`` function is used to get the current
|
|
|
|
``Context`` object for the current OS thread.
|
|
|
|
|
|
|
|
2. ``ContextVar`` class to declare and access context variables.
|
|
|
|
|
|
|
|
3. ``Context`` class encapsulates context state. Every OS thread
|
|
|
|
stores a reference to its current ``Context`` instance.
|
|
|
|
It is not possible to control that reference manually.
|
2017-12-12 23:03:05 -05:00
|
|
|
Instead, the ``Context.run(callable, *args, **kwargs)`` method is
|
|
|
|
used to run Python code in another context.
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
|
|
|
|
contextvars.ContextVar
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
The ``ContextVar`` class has the following constructor signature:
|
2017-12-12 23:03:05 -05:00
|
|
|
``ContextVar(name, *, default=_NO_DEFAULT)``. The ``name`` parameter
|
|
|
|
is used only for introspection and debug purposes, and is exposed
|
|
|
|
as a read-only ``ContextVar.name`` attribute. The ``default``
|
2017-12-12 12:11:31 -05:00
|
|
|
parameter is optional. Example::
|
|
|
|
|
|
|
|
# Declare a context variable 'var' with the default value 42.
|
|
|
|
var = ContextVar('var', default=42)
|
|
|
|
|
2017-12-12 23:03:05 -05:00
|
|
|
(The ``_NO_DEFAULT`` is an internal sentinel object used to
|
|
|
|
detect if the default value was provided.)
|
|
|
|
|
2017-12-12 12:11:31 -05:00
|
|
|
``ContextVar.get()`` returns a value for context variable from the
|
|
|
|
current ``Context``::
|
|
|
|
|
|
|
|
# Get the value of `var`.
|
|
|
|
var.get()
|
|
|
|
|
|
|
|
``ContextVar.set(value) -> Token`` is used to set a new value for
|
|
|
|
the context variable in the current ``Context``::
|
|
|
|
|
|
|
|
# Set the variable 'var' to 1 in the current context.
|
|
|
|
var.set(1)
|
|
|
|
|
2017-12-12 23:42:13 -05:00
|
|
|
``ContextVar.reset(token)`` is used to reset the variable in the
|
|
|
|
current context to the value it had before the ``set()`` operation
|
|
|
|
that created the ``token``::
|
|
|
|
|
|
|
|
assert var.get(None) is None
|
2017-12-12 12:11:31 -05:00
|
|
|
|
2017-12-12 20:41:25 -05:00
|
|
|
token = var.set(1)
|
2017-12-12 12:11:31 -05:00
|
|
|
try:
|
|
|
|
...
|
|
|
|
finally:
|
2017-12-12 20:41:25 -05:00
|
|
|
var.reset(token)
|
2017-12-12 12:11:31 -05:00
|
|
|
|
2017-12-12 23:42:13 -05:00
|
|
|
assert var.get(None) is None
|
|
|
|
|
2017-12-12 23:03:05 -05:00
|
|
|
``ContextVar.reset()`` method is idempotent and can be called
|
|
|
|
multiple times on the same Token object: second and later calls
|
|
|
|
will be no-ops.
|
|
|
|
|
2017-12-12 23:42:13 -05:00
|
|
|
|
|
|
|
contextvars.Token
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
``contextvars.Token`` is an opaque object that should be used to
|
|
|
|
restore the ``ContextVar`` to its previous value, or remove it from
|
|
|
|
the context if the variable was not set before. It can be created
|
|
|
|
only by calling ``ContextVar.set()``.
|
|
|
|
|
2017-12-13 12:25:17 -05:00
|
|
|
For debug and introspection purposes it has:
|
|
|
|
|
|
|
|
* a read-only attribute ``Token.var`` pointing to the variable
|
|
|
|
that created the token;
|
|
|
|
|
|
|
|
* a read-only attribute ``Token.old_value`` set to the value the
|
|
|
|
variable had before the ``set()`` call, or to ``Token.MISSING``
|
|
|
|
if the variable wasn't set before.
|
2017-12-12 23:42:13 -05:00
|
|
|
|
2017-12-12 23:03:05 -05:00
|
|
|
Having the ``ContextVar.set()`` method returning a ``Token`` object
|
|
|
|
and the ``ContextVar.reset(token)`` method, allows context variables
|
|
|
|
to be removed from the context if they were not in it before the
|
|
|
|
``set()`` call.
|
|
|
|
|
|
|
|
Token API allows to get around having a ``ContextVar.delete()``
|
|
|
|
method, which is incompatible with chained contexts design of
|
|
|
|
:pep:`550`. Future compatibility with :pep:`550` is desired
|
|
|
|
(at least for Python 3.7) in case there is demand to support
|
|
|
|
context variables in generators and asynchronous generators.
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
|
|
|
|
contextvars.Context
|
|
|
|
-------------------
|
|
|
|
|
2017-12-12 20:41:25 -05:00
|
|
|
``Context`` object is a mapping of context variables to values.
|
2017-12-12 12:11:31 -05:00
|
|
|
|
2017-12-12 23:03:05 -05:00
|
|
|
``Context()`` creates an empty context. To get the current ``Context``
|
|
|
|
for the current OS thread, use the ``contextvars.get_context()``
|
|
|
|
method::
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
ctx = contextvars.get_context()
|
|
|
|
|
|
|
|
To run Python code in some ``Context``, use ``Context.run()``
|
|
|
|
method::
|
|
|
|
|
|
|
|
ctx.run(function)
|
|
|
|
|
2017-12-12 20:03:42 -05:00
|
|
|
Any changes to any context variables that ``function`` causes will
|
2017-12-12 12:11:31 -05:00
|
|
|
be contained in the ``ctx`` context::
|
|
|
|
|
|
|
|
var = ContextVar('var')
|
|
|
|
var.set('spam')
|
|
|
|
|
|
|
|
def function():
|
|
|
|
assert var.get() == 'spam'
|
|
|
|
|
|
|
|
var.set('ham')
|
|
|
|
assert var.get() == 'ham'
|
|
|
|
|
|
|
|
ctx = get_context()
|
2017-12-12 20:41:25 -05:00
|
|
|
|
|
|
|
# Any changes that 'function' makes to 'var' will stay
|
|
|
|
# isolated in the 'ctx'.
|
2017-12-12 12:11:31 -05:00
|
|
|
ctx.run(function)
|
|
|
|
|
2017-12-12 20:41:25 -05:00
|
|
|
assert var.get() == 'spam'
|
2017-12-12 12:11:31 -05:00
|
|
|
|
2017-12-12 23:03:05 -05:00
|
|
|
Any changes to the context will be contained in the ``Context``
|
|
|
|
object on which ``run()`` is called on.
|
|
|
|
|
|
|
|
``Context.run()`` is used to control in which context asyncio
|
|
|
|
callbacks and Tasks are executed. It can also be used to run some
|
|
|
|
code in a different thread in the context of the current thread::
|
|
|
|
|
|
|
|
executor = ThreadPoolExecutor()
|
|
|
|
current_context = contextvars.get_context()
|
|
|
|
|
|
|
|
executor.submit(
|
|
|
|
lambda: current_context.run(some_function))
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
``Context`` objects implement the ``collections.abc.Mapping`` ABC.
|
|
|
|
This can be used to introspect context objects::
|
|
|
|
|
|
|
|
ctx = contextvars.get_context()
|
|
|
|
|
2017-12-12 23:03:05 -05:00
|
|
|
# Print all context variables and their values in 'ctx':
|
2017-12-12 12:11:31 -05:00
|
|
|
print(ctx.items())
|
|
|
|
|
|
|
|
# Print the value of 'some_variable' in context 'ctx':
|
|
|
|
print(ctx[some_variable])
|
|
|
|
|
|
|
|
|
|
|
|
asyncio
|
|
|
|
-------
|
|
|
|
|
|
|
|
``asyncio`` uses ``Loop.call_soon()``, ``Loop.call_later()``,
|
|
|
|
and ``Loop.call_at()`` to schedule the asynchronous execution of a
|
|
|
|
function. ``asyncio.Task`` uses ``call_soon()`` to run the
|
|
|
|
wrapped coroutine.
|
|
|
|
|
2017-12-12 18:17:01 -05:00
|
|
|
We modify ``Loop.call_{at,later,soon}`` and
|
|
|
|
``Future.add_done_callback()`` to accept the new optional *context*
|
|
|
|
keyword-only argument, which defaults to the current context::
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
def call_soon(self, callback, *args, context=None):
|
|
|
|
if context is None:
|
|
|
|
context = contextvars.get_context()
|
|
|
|
|
|
|
|
# ... some time later
|
|
|
|
context.run(callback, *args)
|
|
|
|
|
2017-12-12 21:39:08 -05:00
|
|
|
Tasks in asyncio need to maintain their own context that they inherit
|
|
|
|
from the point they were created at. ``asyncio.Task`` is modified
|
|
|
|
as follows::
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
class Task:
|
|
|
|
def __init__(self, coro):
|
|
|
|
...
|
|
|
|
# Get the current context snapshot.
|
|
|
|
self._context = contextvars.get_context()
|
|
|
|
self._loop.call_soon(self._step, context=self._context)
|
|
|
|
|
|
|
|
def _step(self, exc=None):
|
|
|
|
...
|
|
|
|
# Every advance of the wrapped coroutine is done in
|
|
|
|
# the task's context.
|
|
|
|
self._loop.call_soon(self._step, context=self._context)
|
|
|
|
...
|
|
|
|
|
|
|
|
|
2017-12-12 23:16:51 -05:00
|
|
|
C API
|
|
|
|
-----
|
2017-12-12 12:11:31 -05:00
|
|
|
|
2017-12-12 23:16:51 -05:00
|
|
|
1. ``PyContextVar * PyContextVar_New(char *name)``: create a
|
|
|
|
``ContextVar`` object.
|
|
|
|
|
|
|
|
2. ``PyObject * PyContextVar_Get(PyContextVar *)``:
|
|
|
|
return the value of the variable in the current context.
|
|
|
|
|
|
|
|
3. ``PyContextToken * PyContextVar_Set(PyContextVar *, PyObject *)``:
|
|
|
|
set the value of the variable in the current context.
|
|
|
|
|
2017-12-13 12:25:17 -05:00
|
|
|
4. ``PyContextVar_Reset(PyContextVar *, PyContextToken *)``:
|
2017-12-12 23:16:51 -05:00
|
|
|
reset the value of the context variable.
|
|
|
|
|
|
|
|
5. ``PyContext * PyContext_New()``: create a new empty context.
|
|
|
|
|
|
|
|
6. ``PyContext * PyContext_Get()``: get the current context.
|
|
|
|
|
|
|
|
7. ``int PyContext_Set(PyContext *)``: set a new context as the
|
|
|
|
current for the current OS thread. It is required to always
|
|
|
|
restore the previous context::
|
|
|
|
|
|
|
|
PyContext *old_ctx = PyContext_Get();
|
|
|
|
if (old_ctx == NULL) goto error;
|
|
|
|
|
|
|
|
if (PyContext_Set(new_ctx)) goto error;
|
|
|
|
|
|
|
|
// run some code
|
|
|
|
|
|
|
|
if (PyContext_Set(old_ctx)) goto error;
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
|
|
|
|
Implementation
|
|
|
|
==============
|
|
|
|
|
|
|
|
This section explains high-level implementation details in
|
|
|
|
pseudo-code. Some optimizations are omitted to keep this section
|
|
|
|
short and clear.
|
|
|
|
|
2017-12-12 23:03:05 -05:00
|
|
|
For the purposes of this section, we implement an immutable dictionary
|
|
|
|
using ``dict.copy()``::
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
class _ContextData:
|
|
|
|
|
|
|
|
def __init__(self):
|
2017-12-12 23:03:05 -05:00
|
|
|
self._mapping = dict()
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
def get(self, key):
|
2017-12-12 23:03:05 -05:00
|
|
|
return self._mapping[key]
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
def set(self, key, value):
|
|
|
|
copy = _ContextData()
|
2017-12-12 23:03:05 -05:00
|
|
|
copy._mapping = self._mapping.copy()
|
|
|
|
copy._mapping[key] = value
|
2017-12-12 12:11:31 -05:00
|
|
|
return copy
|
|
|
|
|
|
|
|
def delete(self, key):
|
|
|
|
copy = _ContextData()
|
2017-12-12 23:03:05 -05:00
|
|
|
copy._mapping = self._mapping.copy()
|
|
|
|
del copy._mapping[key]
|
2017-12-12 12:11:31 -05:00
|
|
|
return copy
|
|
|
|
|
|
|
|
Every OS thread has a reference to the current ``_ContextData``.
|
|
|
|
``PyThreadState`` is updated with a new ``context_data`` field that
|
|
|
|
points to a ``_ContextData`` object::
|
|
|
|
|
2017-12-12 22:40:33 -05:00
|
|
|
class PyThreadState:
|
|
|
|
context_data: _ContextData
|
2017-12-12 12:11:31 -05:00
|
|
|
|
2017-12-12 15:29:19 -05:00
|
|
|
``contextvars.get_context()`` is implemented as follows::
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
def get_context():
|
|
|
|
ts : PyThreadState = PyThreadState_Get()
|
|
|
|
|
|
|
|
if ts.context_data is None:
|
|
|
|
ts.context_data = _ContextData()
|
|
|
|
|
|
|
|
ctx = Context()
|
2017-12-12 23:03:05 -05:00
|
|
|
ctx._data = ts.context_data
|
2017-12-12 12:11:31 -05:00
|
|
|
return ctx
|
|
|
|
|
|
|
|
``contextvars.Context`` is a wrapper around ``_ContextData``::
|
|
|
|
|
|
|
|
class Context(collections.abc.Mapping):
|
|
|
|
|
|
|
|
def __init__(self):
|
2017-12-12 23:03:05 -05:00
|
|
|
self._data = _ContextData()
|
2017-12-12 12:11:31 -05:00
|
|
|
|
2017-12-12 23:03:05 -05:00
|
|
|
def run(self, callable, *args, **kwargs):
|
2017-12-12 12:11:31 -05:00
|
|
|
ts : PyThreadState = PyThreadState_Get()
|
|
|
|
saved_data : _ContextData = ts.context_data
|
|
|
|
|
|
|
|
try:
|
2017-12-12 23:03:05 -05:00
|
|
|
ts.context_data = self._data
|
|
|
|
return callable(*args, **kwargs)
|
2017-12-12 12:11:31 -05:00
|
|
|
finally:
|
2017-12-12 23:03:05 -05:00
|
|
|
self._data = ts.context_data
|
2017-12-12 12:11:31 -05:00
|
|
|
ts.context_data = saved_data
|
|
|
|
|
|
|
|
# Mapping API methods are implemented by delegating
|
2017-12-12 23:03:05 -05:00
|
|
|
# `get()` and other Mapping calls to `self._data`.
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
``contextvars.ContextVar`` interacts with
|
|
|
|
``PyThreadState.context_data`` directly::
|
|
|
|
|
|
|
|
class ContextVar:
|
|
|
|
|
2017-12-12 23:03:05 -05:00
|
|
|
def __init__(self, name, *, default=_NO_DEFAULT):
|
|
|
|
self._name = name
|
|
|
|
self._default = default
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
2017-12-12 23:03:05 -05:00
|
|
|
return self._name
|
2017-12-12 12:11:31 -05:00
|
|
|
|
2017-12-12 23:03:05 -05:00
|
|
|
def get(self, default=_NO_DEFAULT):
|
2017-12-12 12:11:31 -05:00
|
|
|
ts : PyThreadState = PyThreadState_Get()
|
|
|
|
data : _ContextData = ts.context_data
|
|
|
|
|
|
|
|
try:
|
|
|
|
return data.get(self)
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
|
2017-12-12 23:03:05 -05:00
|
|
|
if default is not _NO_DEFAULT:
|
2017-12-12 12:11:31 -05:00
|
|
|
return default
|
|
|
|
|
2017-12-12 23:03:05 -05:00
|
|
|
if self._default is not _NO_DEFAULT:
|
|
|
|
return self._default
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
raise LookupError
|
|
|
|
|
|
|
|
def set(self, value):
|
|
|
|
ts : PyThreadState = PyThreadState_Get()
|
|
|
|
data : _ContextData = ts.context_data
|
|
|
|
|
|
|
|
try:
|
|
|
|
old_value = data.get(self)
|
|
|
|
except KeyError:
|
2017-12-13 12:25:17 -05:00
|
|
|
old_value = Token.MISSING
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
ts.context_data = data.set(self, value)
|
|
|
|
return Token(self, old_value)
|
|
|
|
|
|
|
|
def reset(self, token):
|
2017-12-12 23:03:05 -05:00
|
|
|
if token._used:
|
2017-12-12 12:11:31 -05:00
|
|
|
return
|
|
|
|
|
2017-12-13 12:25:17 -05:00
|
|
|
if token._old_value is Token.MISSING:
|
2017-12-12 23:03:05 -05:00
|
|
|
ts.context_data = data.delete(token._var)
|
2017-12-12 12:11:31 -05:00
|
|
|
else:
|
2017-12-12 23:03:05 -05:00
|
|
|
ts.context_data = data.set(token._var,
|
|
|
|
token._old_value)
|
2017-12-12 12:11:31 -05:00
|
|
|
|
2017-12-12 23:03:05 -05:00
|
|
|
token._used = True
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
|
|
|
|
class Token:
|
|
|
|
|
2017-12-13 12:25:17 -05:00
|
|
|
MISSING = object()
|
|
|
|
|
2017-12-12 12:11:31 -05:00
|
|
|
def __init__(self, var, old_value):
|
2017-12-12 23:03:05 -05:00
|
|
|
self._var = var
|
|
|
|
self._old_value = old_value
|
|
|
|
self._used = False
|
|
|
|
|
2017-12-12 23:42:13 -05:00
|
|
|
@property
|
|
|
|
def var(self):
|
|
|
|
return self._var
|
|
|
|
|
2017-12-13 12:25:17 -05:00
|
|
|
@property
|
|
|
|
def old_value(self):
|
|
|
|
return self._old_value
|
2017-12-12 23:03:05 -05:00
|
|
|
|
|
|
|
|
|
|
|
Implementation Notes
|
|
|
|
====================
|
|
|
|
|
|
|
|
* The internal immutable dictionary for ``Context`` is implemented
|
|
|
|
using Hash Array Mapped Tries (HAMT). They allow for O(log N)
|
|
|
|
``set`` operation, and for O(1) ``get_context()`` function, where
|
|
|
|
*N* is the number of items in the dictionary. For a detailed
|
|
|
|
analysis of HAMT performance please refer to :pep:`550`.
|
|
|
|
|
|
|
|
* ``ContextVar.get()`` has an internal cache for the most recent
|
|
|
|
value, which allows to bypass a hash lookup. This is similar
|
|
|
|
to the optimization the ``decimal`` module implements to
|
|
|
|
retrieve its context from ``PyThreadState_GetDict()``.
|
|
|
|
See :pep:`550` which explains the implementation of the cache
|
|
|
|
in a great detail.
|
2017-12-12 12:11:31 -05:00
|
|
|
|
|
|
|
|
2017-12-12 20:41:25 -05:00
|
|
|
Summary of the New APIs
|
|
|
|
=======================
|
|
|
|
|
|
|
|
* A new ``contextvars`` module with ``ContextVar``, ``Context``,
|
|
|
|
and ``Token`` classes, and a ``get_context()`` function.
|
|
|
|
|
|
|
|
* ``asyncio.Loop.call_at()``, ``asyncio.Loop.call_later()``,
|
|
|
|
``asyncio.Loop.call_soon()``, and
|
|
|
|
``asyncio.Future.add_done_callback()`` run callback functions in
|
|
|
|
the context they were called in. A new *context* keyword-only
|
|
|
|
parameter can be used to specify a custom context.
|
|
|
|
|
|
|
|
* ``asyncio.Task`` is modified internally to maintain its own
|
2017-12-12 21:39:08 -05:00
|
|
|
context.
|
2017-12-12 20:41:25 -05:00
|
|
|
|
|
|
|
|
2017-12-12 12:11:31 -05:00
|
|
|
Backwards Compatibility
|
|
|
|
=======================
|
|
|
|
|
|
|
|
This proposal preserves 100% backwards compatibility.
|
|
|
|
|
|
|
|
Libraries that use ``threading.local()`` to store context-related
|
|
|
|
values, currently work correctly only for synchronous code. Switching
|
|
|
|
them to use the proposed API will keep their behavior for synchronous
|
|
|
|
code unmodified, but will automatically enable support for
|
|
|
|
asynchronous code.
|
|
|
|
|
|
|
|
|
|
|
|
Copyright
|
|
|
|
=========
|
|
|
|
|
|
|
|
This document has been placed in the public domain.
|
|
|
|
|
|
|
|
|
|
|
|
..
|
|
|
|
Local Variables:
|
|
|
|
mode: indented-text
|
|
|
|
indent-tabs-mode: nil
|
|
|
|
sentence-end-double-space: t
|
|
|
|
fill-column: 70
|
|
|
|
coding: utf-8
|
|
|
|
End:
|