|
| 1 | +from dataclasses import dataclass, is_dataclass |
| 2 | +from typing import ( |
| 3 | + Any, |
| 4 | + Callable, |
| 5 | + Deque, |
| 6 | + Dict, |
| 7 | + FrozenSet, |
| 8 | + List, |
| 9 | + Mapping, |
| 10 | + Sequence, |
| 11 | + Set, |
| 12 | + Tuple, |
| 13 | + Type, |
| 14 | + Union, |
| 15 | +) |
| 16 | + |
1 | 17 | from pydantic.version import VERSION as PYDANTIC_VERSION
|
| 18 | +from typing_extensions import Annotated, Literal, get_args, get_origin |
2 | 19 |
|
3 | 20 |
|
4 | 21 | PYDANTIC_V2 = PYDANTIC_VERSION.startswith("2.")
|
5 | 22 |
|
6 | 23 | if PYDANTIC_V2:
|
7 |
| - from pydantic.v1 import BaseModel, validator |
8 |
| - from pydantic.v1.fields import FieldInfo, ModelField, Undefined, UndefinedType |
9 |
| - from pydantic.v1.json import ENCODERS_BY_TYPE |
10 |
| - from pydantic.v1.main import ModelMetaclass, validate_model |
| 24 | + |
| 25 | + def use_pydantic_2_plus(): |
| 26 | + return True |
| 27 | + |
| 28 | + from pydantic import BaseModel, TypeAdapter |
| 29 | + from pydantic import ValidationError as ValidationError |
| 30 | + from pydantic import validator |
| 31 | + from pydantic._internal._model_construction import ModelMetaclass |
| 32 | + from pydantic._internal._repr import Representation |
| 33 | + from pydantic.deprecated.json import ENCODERS_BY_TYPE |
| 34 | + from pydantic.fields import FieldInfo |
| 35 | + from pydantic.v1.main import validate_model |
11 | 36 | from pydantic.v1.typing import NoArgAnyCallable
|
12 |
| - from pydantic.v1.utils import Representation |
| 37 | + from pydantic_core import PydanticUndefined as Undefined |
| 38 | + from pydantic_core import PydanticUndefinedType as UndefinedType |
| 39 | + |
| 40 | + @dataclass |
| 41 | + class ModelField: |
| 42 | + field_info: FieldInfo |
| 43 | + name: str |
| 44 | + mode: Literal["validation", "serialization"] = "validation" |
| 45 | + |
| 46 | + @property |
| 47 | + def alias(self) -> str: |
| 48 | + a = self.field_info.alias |
| 49 | + return a if a is not None else self.name |
| 50 | + |
| 51 | + @property |
| 52 | + def required(self) -> bool: |
| 53 | + return self.field_info.is_required() |
| 54 | + |
| 55 | + @property |
| 56 | + def default(self) -> Any: |
| 57 | + return self.get_default() |
| 58 | + |
| 59 | + @property |
| 60 | + def type_(self) -> Any: |
| 61 | + return self.field_info.annotation |
| 62 | + |
| 63 | + def __post_init__(self) -> None: |
| 64 | + self._type_adapter: TypeAdapter[Any] = TypeAdapter( |
| 65 | + Annotated[self.field_info.annotation, self.field_info] |
| 66 | + ) |
| 67 | + |
| 68 | + def get_default(self) -> Any: |
| 69 | + if self.field_info.is_required(): |
| 70 | + return Undefined |
| 71 | + return self.field_info.get_default(call_default_factory=True) |
| 72 | + |
| 73 | + def validate( |
| 74 | + self, |
| 75 | + value: Any, |
| 76 | + values: Dict[str, Any] = {}, # noqa: B006 |
| 77 | + *, |
| 78 | + loc: Tuple[Union[int, str], ...] = (), |
| 79 | + ) -> Tuple[Any, Union[List[Dict[str, Any]], None]]: |
| 80 | + return ( |
| 81 | + self._type_adapter.validate_python(value, from_attributes=True), |
| 82 | + None, |
| 83 | + ) |
| 84 | + |
| 85 | + def __hash__(self) -> int: |
| 86 | + # Each ModelField is unique for our purposes, to allow making a dict from |
| 87 | + # ModelField to its JSON Schema. |
| 88 | + return id(self) |
| 89 | + |
13 | 90 | else:
|
14 | 91 | from pydantic import BaseModel, validator
|
15 | 92 | from pydantic.fields import FieldInfo, ModelField, Undefined, UndefinedType
|
16 | 93 | from pydantic.json import ENCODERS_BY_TYPE
|
17 | 94 | from pydantic.main import ModelMetaclass, validate_model
|
18 | 95 | from pydantic.typing import NoArgAnyCallable
|
19 | 96 | from pydantic.utils import Representation
|
| 97 | + |
| 98 | + def use_pydantic_2_plus(): |
| 99 | + return False |
0 commit comments