utils
check_node_not_dict_or_not_last_node(part, is_last, current_level)
Checks if given name is not present in the current level of the structure. Checks if given name is not the last name in the split list of parts. Checks if the given name in current level is not a dictionary.
All those checks verify if there is a need for deeper traversal.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
part |
str
|
|
required |
is_last |
bool
|
flag to check if last element |
required |
current_level |
Any
|
current level of the traversed structure |
required |
Returns:
Type | Description |
---|---|
bool
|
result of the check |
Source code in ormar\queryset\utils.py
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
|
convert_set_to_required_dict(set_to_convert)
Converts set to dictionary of required keys. Required key is Ellipsis.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
set_to_convert |
set
|
set to convert to dict |
required |
Returns:
Type | Description |
---|---|
Dict
|
set converted to dict of ellipsis |
Source code in ormar\queryset\utils.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
|
extract_models_to_dict_of_lists(model_type, models, select_dict, extracted=None)
Receives a list of models and extracts all of the children and their children into dictionary of lists with children models, flattening the structure to one dict with all children models under their relation keys.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model_type |
Type[Model]
|
parent model class |
required |
models |
Sequence[Model]
|
list of models from which related models should be extracted. |
required |
select_dict |
Dict
|
dictionary of related models from select_related |
required |
extracted |
Dict
|
dictionary with already extracted models |
None
|
Returns:
Type | Description |
---|---|
Dict
|
dictionary of lists f related models |
Source code in ormar\queryset\utils.py
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
|
extract_nested_models(model, model_type, select_dict, extracted)
Iterates over model relations and extracts all nested models from select_dict and puts them in corresponding list under relation name in extracted dict.keys
Basically flattens all relation to dictionary of all related models, that can be used on several models and extract all of their children into dictionary of lists witch children models.
Goes also into nested relations if needed (specified in select_dict).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model |
Model
|
parent Model |
required |
model_type |
Type[Model]
|
parent model class |
required |
select_dict |
Dict
|
dictionary of related models from select_related |
required |
extracted |
Dict
|
dictionary with already extracted models |
required |
Source code in ormar\queryset\utils.py
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
|
get_relationship_alias_model_and_str(source_model, related_parts)
Walks the relation to retrieve the actual model on which the clause should be constructed, extracts alias based on last relation leading to target model.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
related_parts |
List
|
list of related names extracted from string |
required |
source_model |
Type[Model]
|
model from which relation starts |
required |
Returns:
Type | Description |
---|---|
Tuple[str, Type["Model"], str]
|
table prefix, target model and relation string |
Source code in ormar\queryset\utils.py
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 |
|
subtract_dict(current_dict, updating_dict)
Update one dict with another but with regard for nested keys.
That way nested sets are unionised, dicts updated and only other values are overwritten.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
current_dict |
Any
|
dict to update |
required |
updating_dict |
Any
|
dict with values to update |
required |
Returns:
Type | Description |
---|---|
Dict
|
combination of both dicts |
Source code in ormar\queryset\utils.py
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 |
|
translate_list_to_dict(list_to_trans, is_order=False)
Splits the list of strings by '__' and converts them to dictionary with nested models grouped by parent model. That way each model appears only once in the whole dictionary and children are grouped under parent name.
Default required key ise Ellipsis like in pydantic.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
list_to_trans |
Union[List, Set]
|
input list |
required |
is_order |
bool
|
flag if change affects order_by clauses are they require special default value with sort order. |
False
|
Returns:
Type | Description |
---|---|
Dict
|
converted to dictionary input list |
Source code in ormar\queryset\utils.py
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 |
|
update(current_dict, updating_dict)
Update one dict with another but with regard for nested keys.
That way nested sets are unionised, dicts updated and only other values are overwritten.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
current_dict |
Any
|
dict to update |
required |
updating_dict |
Any
|
dict with values to update |
required |
Returns:
Type | Description |
---|---|
Dict
|
combination of both dicts |
Source code in ormar\queryset\utils.py
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
|
update_dict_from_list(curr_dict, list_to_update)
Converts the list into dictionary and later performs special update, where nested keys that are sets or dicts are combined and not overwritten.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
curr_dict |
Dict
|
dict to update |
required |
list_to_update |
Union[List, Set]
|
list with values to update the dict |
required |
Returns:
Type | Description |
---|---|
Dict
|
updated dict |
Source code in ormar\queryset\utils.py
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
|