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
| """
| Type hint aliases hub
| """
|
| import typing
|
| from datetime import datetime, timedelta
| from decimal import Decimal
| from typing import TYPE_CHECKING, Any, Dict, List, Optional, Tuple, Type, Union
|
| if hasattr(typing, "TypeAlias"):
| # pylint: disable=no-name-in-module
| from typing import TypeAlias # type: ignore[attr-defined]
| else:
| try:
| from typing_extensions import TypeAlias
| except ModuleNotFoundError:
| # pylint: disable=reimported
| from typing import Any as TypeAlias
|
|
| if TYPE_CHECKING:
| from google.protobuf.message import Message as ProtoMessage
|
| # pylint: disable=redefined-builtin
| from .connection import Connection, Session, SocketStream
| from .crud import DatabaseObject, Schema
| from .dbdoc import DbDoc
| from .errors import (
| DatabaseError,
| DataError,
| Error,
| IntegrityError,
| InterfaceError,
| InternalError,
| NotSupportedError,
| OperationalError,
| PoolError,
| ProgrammingError,
| TimeoutError,
| )
| from .expr import ExprParser
| from .protobuf import Message as XdevMessage
| from .result import BaseResult, Column
| from .statement import Statement
|
|
| StrOrBytes = Union[str, bytes]
|
| BuildScalarTypes = Optional[Union[str, bytes, bool, int, float]]
| BuildExprTypes = Union[
| "XdevMessage", "ExprParser", Dict[str, Any], "DbDoc", List, Tuple, BuildScalarTypes
| ]
| ColumnType: TypeAlias = "Column"
| ConnectionType: TypeAlias = "Connection"
| DatabaseTargetType: TypeAlias = "DatabaseObject"
| ErrorClassTypes = Union[
| Type["Error"],
| Type["InterfaceError"],
| Type["DatabaseError"],
| Type["InternalError"],
| Type["OperationalError"],
| Type["ProgrammingError"],
| Type["IntegrityError"],
| Type["DataError"],
| Type["NotSupportedError"],
| Type["PoolError"],
| Type["TimeoutError"],
| ]
| ErrorTypes = Union[
| "Error",
| "InterfaceError",
| "DatabaseError",
| "InternalError",
| "OperationalError",
| "ProgrammingError",
| "IntegrityError",
| "DataError",
| "NotSupportedError",
| "PoolError",
| "TimeoutError",
| ]
| EscapeTypes = Optional[Union[int, float, Decimal, StrOrBytes]]
| FieldTypes = Optional[Union[int, float, str, bytes, Decimal, datetime, timedelta]]
| MessageType: TypeAlias = "XdevMessage"
| ProtobufMessageType: TypeAlias = "ProtoMessage"
| ProtobufMessageCextType = Dict[str, Any]
| ResultBaseType: TypeAlias = "BaseResult"
| SchemaType: TypeAlias = "Schema"
| SessionType: TypeAlias = "Session"
| SocketType: TypeAlias = "SocketStream"
| StatementType: TypeAlias = "Statement"
|
|