lark_parser¶
This submodule implements the LarkParser
class,
which uses the lark library to parse filter strings with a defined OPTIMADE filter grammar
into Lark.Tree
objects for use by the filter transformers.
LarkParser
¶
This class wraps a versioned OPTIMADE grammar and allows it to be parsed into Lark tree objects.
Source code in optimade/filterparser/lark_parser.py
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 |
|
__init__(version=None, variant='default')
¶
For a given version and variant, try to load the corresponding grammar.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
version |
Tuple[int, int, int]
|
The grammar version number to use (e.g., |
None
|
variant |
str
|
The grammar variant to employ. |
'default'
|
Raises:
Type | Description |
---|---|
ParserError
|
If the requested version/variant of the grammar does not exist. |
Source code in optimade/filterparser/lark_parser.py
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 |
|
parse(filter_)
¶
Parse a filter string into a lark.Tree
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filter_ |
str
|
The filter string to parse. |
required |
Raises:
Type | Description |
---|---|
BadRequest
|
If the filter cannot be parsed. |
Returns:
Type | Description |
---|---|
Tree
|
The parsed filter. |
Source code in optimade/filterparser/lark_parser.py
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
|
ParserError
¶
Triggered by critical parsing errors that should lead to 500 Server Error HTTP statuses.
Source code in optimade/filterparser/lark_parser.py
18 19 20 21 |
|
get_versions()
¶
Find grammar files within this package's grammar directory, returning a dictionary broken down by scraped grammar version (major, minor, patch) and variant (a string tag).
Returns:
Type | Description |
---|---|
Dict[Tuple[int, int, int], Dict[str, str]]
|
A mapping from version, variant to grammar file name. |
Source code in optimade/filterparser/lark_parser.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
|