-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extract directly from text #150
Milestone
Comments
tgockel
added a commit
that referenced
this issue
Mar 3, 2020
Creating an AST is significantly faster than the equivalent `jsonv::parse` call (approximately 10x speedup). This completely removes the older `tokenizer` structure and replaces it was a flat `ast_index` structure. This commit introduces #145, which calls to revisit `parse_options` and the associated `parse_error`. Now that the parse phase and extraction to a JSON `value` are separate, the old configuration options make less sense. This also enables work on #150, which calls to extract directly from source text. - Fixes #147 - Fixes #96 through `ast_node::integer` and `ast_node::decimal` - Closes #97 by removal of `tokenizer`
tgockel
added a commit
that referenced
this issue
Mar 3, 2020
Creating an AST is significantly faster than the equivalent `jsonv::parse` call (approximately 10x speedup). This completely removes the older `tokenizer` structure and replaces it was a flat `ast_index` structure. This commit introduces #145, which calls to revisit `parse_options` and the associated `parse_error`. Now that the parse phase and extraction to a JSON `value` are separate, the old configuration options make less sense. This also enables work on #150, which calls to extract directly from source text. - Fixes #147 - Fixes #96 through `ast_node::integer` and `ast_node::decimal` - Closes #97 by removal of `tokenizer`
tgockel
added a commit
that referenced
this issue
Mar 4, 2020
Creating an AST is significantly faster than the equivalent `jsonv::parse` call (approximately 10x speedup). This completely removes the older `tokenizer` structure and replaces it was a flat `parse_index` structure. This commit introduces #145, which calls to revisit `parse_options` and the associated `parse_error`. Now that the parse phase and extraction to a JSON `value` are separate, the old configuration options make less sense. This also enables work on #150, which calls to extract directly from source text. - Fixes #147 - Fixes #96 through `ast_node::integer` and `ast_node::decimal` - Closes #97 by removal of `tokenizer`
tgockel
added a commit
that referenced
this issue
Apr 23, 2022
…uence A `jsonv::reader` instance reads from some form of JSON source (probably a string, but the `jsonv::ast_index` type can theoretically read from anything JSON-like) and converts it into `jsonv::ast_node`s. These abstract reading from JSON source to normalize `extract` implementations, which is needed for #150. - Resolves #171
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Instead of only parsing into a
jsonv::value
, there should be a extractor which works directly on an AST index. This will allow extraction without thejsonv::value
middleman.The text was updated successfully, but these errors were encountered: