elasticsearch¶
CLIENT = Elasticsearch(hosts=CONFIG.elastic_hosts)
module-attribute
¶
CONFIG: ServerConfig = ServerConfig()
module-attribute
¶
This singleton loads the config from a hierarchy of sources (see
customise_sources
)
and makes it importable in the server code.
LOGGER = logging.getLogger('optimade')
module-attribute
¶
BaseResourceMapper
¶
Generic Resource Mapper that defines and performs the mapping between objects in the database and the resource objects defined by the specification.
Attributes:
Name | Type | Description |
---|---|---|
ALIASES |
tuple[tuple[str, str], ...]
|
a tuple of aliases between
OPTIMADE field names and the field names in the database ,
e.g. |
LENGTH_ALIASES |
tuple[tuple[str, str], ...]
|
a tuple of aliases between
a field name and another field that defines its length, to be used
when querying, e.g. |
ENTRY_RESOURCE_CLASS |
type[EntryResource]
|
The entry type that this mapper corresponds to. |
PROVIDER_FIELDS |
tuple[str, ...]
|
a tuple of extra field names that this mapper should support when querying with the database prefix. |
TOP_LEVEL_NON_ATTRIBUTES_FIELDS |
set[str]
|
the set of top-level field names common to all endpoints. |
SUPPORTED_PREFIXES |
set[str]
|
The set of prefixes registered by this mapper. |
ALL_ATTRIBUTES |
set[str]
|
The set of attributes defined across the entry resource class and the server configuration. |
ENTRY_RESOURCE_ATTRIBUTES |
dict[str, Any]
|
A dictionary of attributes and their definitions defined by the schema of the entry resource class. |
ENDPOINT |
str
|
The expected endpoint name for this resource, as defined by
the |
Source code in optimade/server/mappers/entries.py
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 93 94 95 96 97 98 99 100 101 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 129 130 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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 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 233 234 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 262 263 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 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 |
|
ALL_ATTRIBUTES()
¶
Returns all attributes served by this entry.
Source code in optimade/server/mappers/entries.py
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
|
ENDPOINT()
cached
¶
Returns the expected endpoint for this mapper, corresponding
to the type
property of the resource class.
Source code in optimade/server/mappers/entries.py
161 162 163 164 165 166 167 168 169 170 171 |
|
ENTRY_RESOURCE_ATTRIBUTES()
¶
Returns the dictionary of attributes defined by the underlying entry resource class.
Source code in optimade/server/mappers/entries.py
154 155 156 157 158 159 |
|
SUPPORTED_PREFIXES()
cached
¶
A set of prefixes handled by this entry type.
Note
This implementation only includes the provider prefix, but in the future this property may be extended to include other namespaces (for serving fields from, e.g., other providers or domain-specific terms).
Source code in optimade/server/mappers/entries.py
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
|
alias_for(field)
cached
classmethod
¶
Return aliased field name.
Deprecated
This method is deprecated could be removed without further warning. Please use
get_backend_field()
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
field |
str
|
OPTIMADE field name. |
required |
Returns:
Type | Description |
---|---|
str
|
Aliased field as found in |
Source code in optimade/server/mappers/entries.py
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 |
|
alias_of(field)
cached
classmethod
¶
Return de-aliased field name, if it exists, otherwise return the input field name.
Deprecated
This method is deprecated could be removed without further warning. Please use
get_optimade_field()
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
field |
str
|
Field name to be de-aliased. |
required |
Returns:
Type | Description |
---|---|
str
|
De-aliased field name, falling back to returning |
Source code in optimade/server/mappers/entries.py
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 |
|
all_aliases()
cached
classmethod
¶
Returns all of the associated aliases for this entry type, including those defined by the server config. The first member of each tuple is the OPTIMADE-compliant field name, the second is the backend-specific field name.
Returns:
Type | Description |
---|---|
Iterable[tuple[str, str]]
|
A tuple of alias tuples. |
Source code in optimade/server/mappers/entries.py
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
|
all_length_aliases()
cached
classmethod
¶
Returns all of the associated length aliases for this class, including those defined by the server config.
Returns:
Type | Description |
---|---|
tuple[tuple[str, str], ...]
|
A tuple of length alias tuples. |
Source code in optimade/server/mappers/entries.py
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 |
|
deserialize(results)
classmethod
¶
Converts the raw database entries for this class into serialized models, mapping the data along the way.
Source code in optimade/server/mappers/entries.py
367 368 369 370 371 372 373 374 375 376 377 378 |
|
get_backend_field(optimade_field)
cached
classmethod
¶
Return the field name configured for the particular underlying database for the passed OPTIMADE field name, that would be used in an API filter.
Aliases are read from
all_aliases()
.
If a dot-separated OPTIMADE field is provided, e.g., species.mass
, only the first part will be mapped.
This means for an (OPTIMADE, DB) alias of (species
, kinds
), get_backend_fields("species.mass")
will return kinds.mass
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
optimade_field |
str
|
The OPTIMADE field to attempt to map to the backend-specific field. |
required |
Examples:
>>> get_backend_field("chemical_formula_anonymous")
'formula_anon'
>>> get_backend_field("formula_anon")
'formula_anon'
>>> get_backend_field("_exmpl_custom_provider_field")
'custom_provider_field'
Returns:
Type | Description |
---|---|
str
|
The mapped field name to be used in the query to the backend. |
Source code in optimade/server/mappers/entries.py
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 233 234 235 236 237 |
|
get_optimade_field(backend_field)
cached
classmethod
¶
Return the corresponding OPTIMADE field name for the underlying database field, ready to be used to construct the OPTIMADE-compliant JSON response.
Aliases are read from
all_aliases()
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
backend_field |
str
|
The backend field to attempt to map to an OPTIMADE field. |
required |
Examples:
>>> get_optimade_field("chemical_formula_anonymous")
'chemical_formula_anonymous'
>>> get_optimade_field("formula_anon")
'chemical_formula_anonymous'
>>> get_optimade_field("custom_provider_field")
'_exmpl_custom_provider_field'
Returns:
Type | Description |
---|---|
str
|
The mapped field name to be used in an OPTIMADE-compliant response. |
Source code in optimade/server/mappers/entries.py
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 |
|
get_required_fields()
cached
classmethod
¶
Get REQUIRED response fields.
Returns:
Type | Description |
---|---|
set
|
REQUIRED response fields. |
Source code in optimade/server/mappers/entries.py
312 313 314 315 316 317 318 319 320 321 |
|
length_alias_for(field)
cached
classmethod
¶
Returns the length alias for the particular field,
or None
if no such alias is found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
field |
str
|
OPTIMADE field name. |
required |
Returns:
Type | Description |
---|---|
Optional[str]
|
Aliased field as found in |
Source code in optimade/server/mappers/entries.py
189 190 191 192 193 194 195 196 197 198 199 200 201 202 |
|
map_back(doc)
classmethod
¶
Map properties from MongoDB to OPTIMADE.
Starting from a MongoDB document doc
, map the DB fields to the corresponding OPTIMADE fields.
Then, the fields are all added to the top-level field "attributes",
with the exception of other top-level fields, defined in cls.TOP_LEVEL_NON_ATTRIBUTES_FIELDS
.
All fields not in cls.TOP_LEVEL_NON_ATTRIBUTES_FIELDS
+ "attributes" will be removed.
Finally, the type
is given the value of the specified cls.ENDPOINT
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
doc |
dict
|
A resource object in MongoDB format. |
required |
Returns:
Type | Description |
---|---|
dict
|
A resource object in OPTIMADE format. |
Source code in optimade/server/mappers/entries.py
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 |
|
ElasticCollection
¶
Bases: EntryCollection
Source code in optimade/server/entry_collections/elasticsearch.py
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 93 94 95 96 97 98 99 100 101 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 129 130 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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 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 |
|
all_fields: set[str]
property
¶
Get the set of all fields handled in this collection, from attribute fields in the schema, provider fields and top-level OPTIMADE fields.
The set of all fields are lazily created and then cached. This means the set is created the first time the property is requested and then cached.
Returns:
Type | Description |
---|---|
set[str]
|
All fields handled in this collection. |
predefined_index: dict[str, Any]
property
¶
Loads and returns the default pre-defined index.
__init__(name, resource_cls, resource_mapper, client=None)
¶
Initialize the ElasticCollection for the given parameters.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
The name of the collection. |
required |
resource_cls |
type[EntryResource]
|
The type of entry resource that is stored by the collection. |
required |
resource_mapper |
type[BaseResourceMapper]
|
A resource mapper object that handles aliases and format changes between deserialization and response. |
required |
client |
Optional[Elasticsearch]
|
A preconfigured Elasticsearch client. |
None
|
Source code in optimade/server/entry_collections/elasticsearch.py
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 |
|
__len__()
¶
Returns the total number of entries in the collection.
Source code in optimade/server/entry_collections/elasticsearch.py
110 111 112 |
|
create_elastic_index_from_mapper(resource_mapper, fields)
staticmethod
¶
Create a fallback elastic index based on a resource mapper.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
resource_mapper |
type[BaseResourceMapper]
|
The resource mapper to create the index for. |
required |
fields |
Iterable[str]
|
The list of fields to use in the index. |
required |
Returns:
Type | Description |
---|---|
dict[str, Any]
|
The parameters to pass to |
Source code in optimade/server/entry_collections/elasticsearch.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
|
create_optimade_index()
¶
Load or create an index that can handle aliased OPTIMADE fields and attach it to the current client.
Source code in optimade/server/entry_collections/elasticsearch.py
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
|
find(params)
¶
Fetches results and indicates if more data is available.
Also gives the total number of data available in the absence of page_limit
.
See EntryListingQueryParams
for more information.
Returns a list of the mapped database reponse.
If no results match the query, then results
is set to None
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
params |
Union[EntryListingQueryParams, SingleEntryQueryParams]
|
Entry listing URL query params. |
required |
Returns:
Type | Description |
---|---|
Optional[Union[dict[str, Any], list[dict[str, Any]]]]
|
A tuple of various relevant values: |
Optional[int]
|
( |
Source code in optimade/server/entry_collections/entry_collections.py
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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 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 |
|
get_attribute_fields()
¶
Get the set of attribute fields
Return only the first-level attribute fields from the schema of the resource class, resolving references along the way if needed.
Note
It is not needed to take care of other special OpenAPI schema keys than allOf
,
since only allOf
will be found in this context.
Other special keys can be found in the Swagger documentation.
Returns:
Type | Description |
---|---|
set[str]
|
Property names. |
Source code in optimade/server/entry_collections/entry_collections.py
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 |
|
get_next_query_params(params, results)
¶
Provides url query pagination parameters that will be used in the next link.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
results |
Optional[Union[dict[str, Any], list[dict[str, Any]]]]
|
The results produced by find. |
required |
params |
EntryListingQueryParams
|
The parsed request params produced by handle_query_params. |
required |
Returns:
Type | Description |
---|---|
dict[str, list[str]]
|
A dictionary with the necessary query parameters. |
Source code in optimade/server/entry_collections/entry_collections.py
468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 |
|
handle_query_params(params)
¶
Parse and interpret the backend-agnostic query parameter models into a dictionary that can be used by the specific backend.
Note
Currently this method returns the pymongo interpretation of the parameters, which will need modification for modified for other backends.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
params |
Union[EntryListingQueryParams, SingleEntryQueryParams]
|
The initialized query parameter model from the server. |
required |
Raises:
Type | Description |
---|---|
Forbidden
|
If too large of a page limit is provided. |
BadRequest
|
If an invalid request is made, e.g., with incorrect fields or response format. |
Returns:
Type | Description |
---|---|
dict[str, Any]
|
A dictionary representation of the query parameters. |
Source code in optimade/server/entry_collections/entry_collections.py
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 |
|
insert(data)
¶
Add the given entries to the underlying database.
Warning
No validation is performed on the incoming data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
list[EntryResource]
|
The entry resource objects to add to the database. |
required |
Source code in optimade/server/entry_collections/elasticsearch.py
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
|
parse_sort_params(sort_params)
¶
Handles any sort parameters passed to the collection, resolving aliases and dealing with any invalid fields.
Raises:
Type | Description |
---|---|
BadRequest
|
if an invalid sort is requested. |
Returns:
Type | Description |
---|---|
Iterable[tuple[str, int]]
|
A list of tuples containing the aliased field name and |
Iterable[tuple[str, int]]
|
sort direction encoded as 1 (ascending) or -1 (descending). |
Source code in optimade/server/entry_collections/entry_collections.py
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 |
|
ElasticTransformer
¶
Bases: BaseTransformer
Transformer that transforms v0.10.1
/v1.0
grammar parse
trees into Elasticsearch queries.
Uses elasticsearch_dsl and will produce an elasticsearch_dsl.Q
instance.
Source code in optimade/filtertransformers/elasticsearch.py
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 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 129 130 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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 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 233 234 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 262 263 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 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 |
|
backend_mapping: dict[str, Quantity]
property
¶
A mapping between backend field names (aliases) and the corresponding
Quantity
object.
__default__(tree, children, *args, **kwargs)
¶
Default behavior for rules that only replace one symbol with another
Source code in optimade/filtertransformers/elasticsearch.py
295 296 297 |
|
comparison(value)
¶
comparison: constant_first_comparison | property_first_comparison
Source code in optimade/filtertransformers/base_transformer.py
300 301 302 303 304 |
|
constant(value)
¶
constant: string | number
Source code in optimade/filtertransformers/base_transformer.py
198 199 200 201 202 |
|
non_string_value(value)
¶
non_string_value: number | property
Source code in optimade/filtertransformers/base_transformer.py
210 211 212 213 214 |
|
not_implemented_string(value)
¶
not_implemented_string: value
Raises:
Type | Description |
---|---|
NotImplementedError
|
For further information, see Materials-Consortia/OPTIMADE issue 157: https://github.com/Materials-Consortia/OPTIMADE/issues/157 |
Source code in optimade/filtertransformers/base_transformer.py
216 217 218 219 220 221 222 223 224 225 |
|
postprocess(query)
¶
Post-process the query according to the rules defined for the backend, returning the backend-specific query.
Source code in optimade/filtertransformers/base_transformer.py
174 175 176 177 178 179 |
|
property(args)
¶
property: IDENTIFIER ( "." IDENTIFIER )*
If this transformer has an associated mapper, the property
will be compared to possible relationship entry types and
for any supported provider prefixes. If there is a match,
this rule will return a string and not a dereferenced
Quantity
.
Raises:
Type | Description |
---|---|
BadRequest
|
If the property does not match any of the above rules. |
Source code in optimade/filtertransformers/base_transformer.py
227 228 229 230 231 232 233 234 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 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 |
|
transform(tree)
¶
Transform the query using the Lark Transformer
then run the
backend-specific post-processing methods.
Source code in optimade/filtertransformers/base_transformer.py
181 182 183 184 185 186 |
|
value(value)
¶
value: string | number | property
Source code in optimade/filtertransformers/base_transformer.py
204 205 206 207 208 |
|
EntryCollection
¶
Bases: ABC
Backend-agnostic base class for querying collections of
EntryResource
s.
Source code in optimade/server/entry_collections/entry_collections.py
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 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 129 130 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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 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 233 234 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 262 263 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 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 |
|
all_fields: set[str]
property
¶
Get the set of all fields handled in this collection, from attribute fields in the schema, provider fields and top-level OPTIMADE fields.
The set of all fields are lazily created and then cached. This means the set is created the first time the property is requested and then cached.
Returns:
Type | Description |
---|---|
set[str]
|
All fields handled in this collection. |
pagination_mechanism = PaginationMechanism('page_offset')
class-attribute
instance-attribute
¶
The default pagination mechansim to use with a given collection, if the user does not provide any pagination query parameters.
__init__(resource_cls, resource_mapper, transformer)
¶
Initialize the collection for the given parameters.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
resource_cls |
EntryResource
|
The |
required |
resource_mapper |
BaseResourceMapper
|
A resource mapper object that handles aliases and format changes between deserialization and response. |
required |
transformer |
Transformer
|
The Lark |
required |
Source code in optimade/server/entry_collections/entry_collections.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
|
__len__()
abstractmethod
¶
Returns the total number of entries in the collection.
Source code in optimade/server/entry_collections/entry_collections.py
117 118 119 |
|
count(**kwargs)
abstractmethod
¶
Returns the number of entries matching the query specified by the keyword arguments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
**kwargs |
Any
|
Query parameters as keyword arguments. |
{}
|
Source code in optimade/server/entry_collections/entry_collections.py
130 131 132 133 134 135 136 137 138 |
|
find(params)
¶
Fetches results and indicates if more data is available.
Also gives the total number of data available in the absence of page_limit
.
See EntryListingQueryParams
for more information.
Returns a list of the mapped database reponse.
If no results match the query, then results
is set to None
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
params |
Union[EntryListingQueryParams, SingleEntryQueryParams]
|
Entry listing URL query params. |
required |
Returns:
Type | Description |
---|---|
Optional[Union[dict[str, Any], list[dict[str, Any]]]]
|
A tuple of various relevant values: |
Optional[int]
|
( |
Source code in optimade/server/entry_collections/entry_collections.py
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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 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 |
|
get_attribute_fields()
¶
Get the set of attribute fields
Return only the first-level attribute fields from the schema of the resource class, resolving references along the way if needed.
Note
It is not needed to take care of other special OpenAPI schema keys than allOf
,
since only allOf
will be found in this context.
Other special keys can be found in the Swagger documentation.
Returns:
Type | Description |
---|---|
set[str]
|
Property names. |
Source code in optimade/server/entry_collections/entry_collections.py
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 |
|
get_next_query_params(params, results)
¶
Provides url query pagination parameters that will be used in the next link.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
results |
Optional[Union[dict[str, Any], list[dict[str, Any]]]]
|
The results produced by find. |
required |
params |
EntryListingQueryParams
|
The parsed request params produced by handle_query_params. |
required |
Returns:
Type | Description |
---|---|
dict[str, list[str]]
|
A dictionary with the necessary query parameters. |
Source code in optimade/server/entry_collections/entry_collections.py
468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 |
|
handle_query_params(params)
¶
Parse and interpret the backend-agnostic query parameter models into a dictionary that can be used by the specific backend.
Note
Currently this method returns the pymongo interpretation of the parameters, which will need modification for modified for other backends.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
params |
Union[EntryListingQueryParams, SingleEntryQueryParams]
|
The initialized query parameter model from the server. |
required |
Raises:
Type | Description |
---|---|
Forbidden
|
If too large of a page limit is provided. |
BadRequest
|
If an invalid request is made, e.g., with incorrect fields or response format. |
Returns:
Type | Description |
---|---|
dict[str, Any]
|
A dictionary representation of the query parameters. |
Source code in optimade/server/entry_collections/entry_collections.py
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 |
|
insert(data)
abstractmethod
¶
Add the given entries to the underlying database.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
list[EntryResource]
|
The entry resource objects to add to the database. |
required |
Source code in optimade/server/entry_collections/entry_collections.py
121 122 123 124 125 126 127 128 |
|
parse_sort_params(sort_params)
¶
Handles any sort parameters passed to the collection, resolving aliases and dealing with any invalid fields.
Raises:
Type | Description |
---|---|
BadRequest
|
if an invalid sort is requested. |
Returns:
Type | Description |
---|---|
Iterable[tuple[str, int]]
|
A list of tuples containing the aliased field name and |
Iterable[tuple[str, int]]
|
sort direction encoded as 1 (ascending) or -1 (descending). |
Source code in optimade/server/entry_collections/entry_collections.py
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 |
|
EntryResource
¶
Bases: Resource
The base model for an entry resource.
Source code in optimade/models/entries.py
119 120 121 122 123 124 125 126 127 128 129 130 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 172 173 174 175 176 177 178 179 |
|
PaginationMechanism
¶
Bases: Enum
The supported pagination mechanisms.
Source code in optimade/server/entry_collections/entry_collections.py
67 68 69 70 71 72 73 74 |
|