coroutines.py 8.41 KB
Newer Older
1
__all__ = 'coroutine', 'iscoroutinefunction', 'iscoroutine'
2

3
import collections.abc
4 5 6 7 8
import functools
import inspect
import os
import sys
import traceback
9
import types
10

11
from . import base_futures
12 13
from . import constants
from . import format_helpers
14 15
from .log import logger

16

17 18 19 20
def _is_debug_mode():
    # If you set _DEBUG to true, @coroutine will wrap the resulting
    # generator objects in a CoroWrapper instance (defined below).  That
    # instance will log a message when the generator is never iterated
21 22 23
    # over, which may happen when you forget to use "await" or "yield from"
    # with a coroutine call.
    # Note that the value of the _DEBUG flag is taken
24 25 26 27
    # when the decorator is used, so to be of any use it must be set
    # before you define your coroutines.  A downside of using this feature
    # is that tracebacks show entries for the CoroWrapper.__next__ method
    # when _DEBUG is true.
28 29
    return sys.flags.dev_mode or (not sys.flags.ignore_environment and
                                  bool(os.environ.get('PYTHONASYNCIODEBUG')))
30 31 32


_DEBUG = _is_debug_mode()
33

34

35
class CoroWrapper:
36
    # Wrapper for coroutine object in _DEBUG mode.
37

38 39
    def __init__(self, gen, func=None):
        assert inspect.isgenerator(gen) or inspect.iscoroutine(gen), gen
40
        self.gen = gen
41
        self.func = func  # Used to unwrap @coroutine decorator
42
        self._source_traceback = format_helpers.extract_stack(sys._getframe(1))
43 44
        self.__name__ = getattr(gen, '__name__', None)
        self.__qualname__ = getattr(gen, '__qualname__', None)
45 46

    def __repr__(self):
47 48 49
        coro_repr = _format_coroutine(self)
        if self._source_traceback:
            frame = self._source_traceback[-1]
50 51 52
            coro_repr += f', created at {frame[0]}:{frame[1]}'

        return f'<{self.__class__.__name__} {coro_repr}>'
53 54 55 56 57

    def __iter__(self):
        return self

    def __next__(self):
58
        return self.gen.send(None)
59

60 61
    def send(self, value):
        return self.gen.send(value)
62

63 64
    def throw(self, type, value=None, traceback=None):
        return self.gen.throw(type, value, traceback)
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80

    def close(self):
        return self.gen.close()

    @property
    def gi_frame(self):
        return self.gen.gi_frame

    @property
    def gi_running(self):
        return self.gen.gi_running

    @property
    def gi_code(self):
        return self.gen.gi_code

81 82
    def __await__(self):
        return self
83

84 85 86
    @property
    def gi_yieldfrom(self):
        return self.gen.gi_yieldfrom
87

88 89 90 91 92
    def __del__(self):
        # Be careful accessing self.gen.frame -- self.gen might not exist.
        gen = getattr(self, 'gen', None)
        frame = getattr(gen, 'gi_frame', None)
        if frame is not None and frame.f_lasti == -1:
93
            msg = f'{self!r} was never yielded from'
94 95 96
            tb = getattr(self, '_source_traceback', ())
            if tb:
                tb = ''.join(traceback.format_list(tb))
97 98 99
                msg += (f'\nCoroutine object created at '
                        f'(most recent call last, truncated to '
                        f'{constants.DEBUG_STACK_DEPTH} last lines):\n')
100 101
                msg += tb.rstrip()
            logger.error(msg)
102 103 104 105 106 107 108 109


def coroutine(func):
    """Decorator to mark coroutines.

    If the coroutine is not yielded from before it is destroyed,
    an error message is logged.
    """
110
    if inspect.iscoroutinefunction(func):
111
        # In Python 3.5 that's all we need to do for coroutines
112
        # defined with "async def".
113 114
        return func

115 116 117 118 119 120
    if inspect.isgeneratorfunction(func):
        coro = func
    else:
        @functools.wraps(func)
        def coro(*args, **kw):
            res = func(*args, **kw)
121
            if (base_futures.isfuture(res) or inspect.isgenerator(res) or
122
                    isinstance(res, CoroWrapper)):
123
                res = yield from res
124
            else:
125
                # If 'res' is an awaitable, run it.
126 127 128 129 130
                try:
                    await_meth = res.__await__
                except AttributeError:
                    pass
                else:
131
                    if isinstance(res, collections.abc.Awaitable):
132
                        res = yield from await_meth()
133 134
            return res

135
    coro = types.coroutine(coro)
136
    if not _DEBUG:
137
        wrapper = coro
138 139 140
    else:
        @functools.wraps(func)
        def wrapper(*args, **kwds):
141
            w = CoroWrapper(coro(*args, **kwds), func=func)
142 143
            if w._source_traceback:
                del w._source_traceback[-1]
144 145 146 147 148 149
            # Python < 3.5 does not implement __qualname__
            # on generator objects, so we set it manually.
            # We use getattr as some callables (such as
            # functools.partial may lack __qualname__).
            w.__name__ = getattr(func, '__name__', None)
            w.__qualname__ = getattr(func, '__qualname__', None)
150 151
            return w

152
    wrapper._is_coroutine = _is_coroutine  # For iscoroutinefunction().
153 154 155
    return wrapper


156 157 158 159
# A marker for iscoroutinefunction.
_is_coroutine = object()


160 161
def iscoroutinefunction(func):
    """Return True if func is a decorated coroutine function."""
162 163
    return (inspect.iscoroutinefunction(func) or
            getattr(func, '_is_coroutine', None) is _is_coroutine)
164 165


166 167 168
# Prioritize native coroutine check to speed-up
# asyncio.iscoroutine.
_COROUTINE_TYPES = (types.CoroutineType, types.GeneratorType,
169 170
                    collections.abc.Coroutine, CoroWrapper)
_iscoroutine_typecache = set()
171

172

173 174
def iscoroutine(obj):
    """Return True if obj is a coroutine object."""
175 176 177 178 179 180 181 182 183 184 185 186
    if type(obj) in _iscoroutine_typecache:
        return True

    if isinstance(obj, _COROUTINE_TYPES):
        # Just in case we don't want to cache more than 100
        # positive types.  That shouldn't ever happen, unless
        # someone stressing the system on purpose.
        if len(_iscoroutine_typecache) < 100:
            _iscoroutine_typecache.add(type(obj))
        return True
    else:
        return False
187 188 189 190


def _format_coroutine(coro):
    assert iscoroutine(coro)
191

192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
    is_corowrapper = isinstance(coro, CoroWrapper)

    def get_name(coro):
        # Coroutines compiled with Cython sometimes don't have
        # proper __qualname__ or __name__.  While that is a bug
        # in Cython, asyncio shouldn't crash with an AttributeError
        # in its __repr__ functions.
        if is_corowrapper:
            return format_helpers._format_callback(coro.func, (), {})

        if hasattr(coro, '__qualname__') and coro.__qualname__:
            coro_name = coro.__qualname__
        elif hasattr(coro, '__name__') and coro.__name__:
            coro_name = coro.__name__
        else:
            # Stop masking Cython bugs, expose them in a friendly way.
            coro_name = f'<{type(coro).__name__} without __name__>'
        return f'{coro_name}()'
210

211
    def is_running(coro):
212
        try:
213
            return coro.cr_running
214 215
        except AttributeError:
            try:
216
                return coro.gi_running
217
            except AttributeError:
218
                return False
219

220 221 222 223 224 225 226 227 228 229 230
    coro_code = None
    if hasattr(coro, 'cr_code') and coro.cr_code:
        coro_code = coro.cr_code
    elif hasattr(coro, 'gi_code') and coro.gi_code:
        coro_code = coro.gi_code

    coro_name = get_name(coro)

    if not coro_code:
        # Built-in types might not have __qualname__ or __name__.
        if is_running(coro):
231
            return f'{coro_name} running'
232 233 234
        else:
            return coro_name

235 236
    coro_frame = None
    if hasattr(coro, 'gi_frame') and coro.gi_frame:
237
        coro_frame = coro.gi_frame
238
    elif hasattr(coro, 'cr_frame') and coro.cr_frame:
239 240
        coro_frame = coro.cr_frame

241 242 243 244
    # If Cython's coroutine has a fake code object without proper
    # co_filename -- expose that.
    filename = coro_code.co_filename or '<empty co_filename>'

245
    lineno = 0
246 247 248
    if (is_corowrapper and
            coro.func is not None and
            not inspect.isgeneratorfunction(coro.func)):
249
        source = format_helpers._get_function_source(coro.func)
250 251
        if source is not None:
            filename, lineno = source
252
        if coro_frame is None:
253
            coro_repr = f'{coro_name} done, defined at {filename}:{lineno}'
254
        else:
255
            coro_repr = f'{coro_name} running, defined at {filename}:{lineno}'
256

257 258
    elif coro_frame is not None:
        lineno = coro_frame.f_lineno
259
        coro_repr = f'{coro_name} running at {filename}:{lineno}'
260

261
    else:
262
        lineno = coro_code.co_firstlineno
263
        coro_repr = f'{coro_name} done, defined at {filename}:{lineno}'
264 265

    return coro_repr