File: __init__.py

package info (click to toggle)
dnspython 2.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,556 kB
  • sloc: python: 37,194; sh: 7; makefile: 4
file content (78 lines) | stat: -rw-r--r-- 2,575 bytes parent folder | download
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
# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license

from typing import Any, Dict, List, Tuple

import dns._features
import dns.asyncbackend

if dns._features.have("doq"):
    from dns._asyncbackend import NullContext
    from dns.quic._asyncio import AsyncioQuicConnection as AsyncioQuicConnection
    from dns.quic._asyncio import AsyncioQuicManager
    from dns.quic._asyncio import AsyncioQuicStream as AsyncioQuicStream
    from dns.quic._common import AsyncQuicConnection  # pyright: ignore
    from dns.quic._common import AsyncQuicManager as AsyncQuicManager
    from dns.quic._sync import SyncQuicConnection  # pyright: ignore
    from dns.quic._sync import SyncQuicStream  # pyright: ignore
    from dns.quic._sync import SyncQuicManager as SyncQuicManager

    have_quic = True

    def null_factory(
        *args,  # pylint: disable=unused-argument
        **kwargs,  # pylint: disable=unused-argument
    ):
        return NullContext(None)

    def _asyncio_manager_factory(
        context, *args, **kwargs  # pylint: disable=unused-argument
    ):
        return AsyncioQuicManager(*args, **kwargs)

    # We have a context factory and a manager factory as for trio we need to have
    # a nursery.

    _async_factories: Dict[str, Tuple[Any, Any]] = {
        "asyncio": (null_factory, _asyncio_manager_factory)
    }

    if dns._features.have("trio"):
        import trio

        # pylint: disable=ungrouped-imports
        from dns.quic._trio import TrioQuicConnection as TrioQuicConnection
        from dns.quic._trio import TrioQuicManager
        from dns.quic._trio import TrioQuicStream as TrioQuicStream

        def _trio_context_factory():
            return trio.open_nursery()

        def _trio_manager_factory(context, *args, **kwargs):
            return TrioQuicManager(context, *args, **kwargs)

        _async_factories["trio"] = (_trio_context_factory, _trio_manager_factory)

    def factories_for_backend(backend=None):
        if backend is None:
            backend = dns.asyncbackend.get_default_backend()
        return _async_factories[backend.name()]

else:  # pragma: no cover
    have_quic = False

    class AsyncQuicStream:  # type: ignore
        pass

    class AsyncQuicConnection:  # type: ignore
        async def make_stream(self) -> Any:
            raise NotImplementedError

    class SyncQuicStream:  # type: ignore
        pass

    class SyncQuicConnection:  # type: ignore
        def make_stream(self) -> Any:
            raise NotImplementedError


Headers = List[Tuple[bytes, bytes]]