22
22
23
23
from typing_extensions import TypeAlias , TypeGuard
24
24
25
- from advanced_alchemy .exceptions import AdvancedAlchemyError
26
25
from advanced_alchemy .filters import StatementFilter # noqa: TCH001
27
26
from advanced_alchemy .repository .typing import ModelT
28
27
37
36
class BaseModel (Protocol ): # type: ignore[no-redef] # pragma: nocover
38
37
"""Placeholder Implementation"""
39
38
39
+ model_fields : ClassVar [dict [str , Any ]]
40
+
40
41
def model_dump (* args : Any , ** kwargs : Any ) -> dict [str , Any ]:
41
42
"""Placeholder"""
42
43
return {}
@@ -108,24 +109,34 @@ def is_dict_without_field(v: Any, field_name: str) -> TypeGuard[dict[str, Any]]:
108
109
109
110
110
111
def is_pydantic_model_with_field (v : Any , field_name : str ) -> TypeGuard [BaseModel ]:
111
- return PYDANTIC_INSTALLED and isinstance (v , BaseModel ) and field_name in v .model_fields # pyright: ignore[reportAttributeAccessIssue,reportUnknownMemberType]
112
+ return is_pydantic_model (v ) and field_name in v .model_fields
113
+
114
+
115
+ def is_pydantic_model_without_field (v : Any , field_name : str ) -> TypeGuard [BaseModel ]:
116
+ return not is_pydantic_model_with_field (v , field_name )
112
117
113
118
114
119
def is_msgspec_model_with_field (v : Any , field_name : str ) -> TypeGuard [Struct ]:
115
- return MSGSPEC_INSTALLED and isinstance (v , Struct ) and field_name in v .__struct_fields__
120
+ return is_msgspec_model (v ) and field_name in v .__struct_fields__
121
+
122
+
123
+ def is_msgspec_model_without_field (v : Any , field_name : str ) -> TypeGuard [Struct ]:
124
+ return not is_msgspec_model_with_field (v , field_name )
116
125
117
126
118
- def schema_to_dict (v : Any , exclude_unset : bool = True ) -> dict [str , Any ]:
119
- if is_dict (v ):
120
- return v
121
- if is_pydantic_model (v ):
122
- return v .model_dump (exclude_unset = exclude_unset )
123
- if is_msgspec_model (v ) and exclude_unset :
124
- return {f : val for f in v .__struct_fields__ if (val := getattr (v , f , None )) != UNSET }
125
- if is_msgspec_model (v ) and not exclude_unset :
126
- return {f : getattr (v , f , None ) for f in v .__struct_fields__ }
127
- msg = f"Unable to convert model to dictionary for '{ type (v )} ' types"
128
- raise AdvancedAlchemyError (msg )
127
+ def schema_dump (
128
+ data : dict [str , Any ] | ModelT | Struct | BaseModel ,
129
+ exclude_unset : bool = True ,
130
+ ) -> dict [str , Any ] | ModelT :
131
+ if is_dict (data ):
132
+ return data
133
+ if is_pydantic_model (data ):
134
+ return data .model_dump (exclude_unset = exclude_unset )
135
+ if is_msgspec_model (data ) and exclude_unset :
136
+ return {f : val for f in data .__struct_fields__ if (val := getattr (data , f , None )) != UNSET }
137
+ if is_msgspec_model (data ) and not exclude_unset :
138
+ return {f : getattr (data , f , None ) for f in data .__struct_fields__ }
139
+ return cast ("ModelT" , data )
129
140
130
141
131
142
__all__ = (
@@ -143,9 +154,12 @@ def schema_to_dict(v: Any, exclude_unset: bool = True) -> dict[str, Any]:
143
154
"UNSET" ,
144
155
"is_dict" ,
145
156
"is_dict_with_field" ,
157
+ "is_dict_without_field" ,
146
158
"is_msgspec_model" ,
147
159
"is_pydantic_model_with_field" ,
160
+ "is_msgspec_model_without_field" ,
148
161
"is_pydantic_model" ,
149
162
"is_msgspec_model_with_field" ,
150
- "schema_to_dict" ,
163
+ "is_pydantic_model_without_field" ,
164
+ "schema_dump" ,
151
165
)
0 commit comments