-
Notifications
You must be signed in to change notification settings - Fork 1
Javascript: Implement ExceptionCollectorListener and make it default behaviour.
#38
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
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
d09333f
Javascript: Fix ErrorCollectorListener and implement `AstBuilder` to …
surister 4ff09b1
Javascript: Fix the error assignment ordering
surister d148041
Javascript: Update docs
surister 8e6fbf8
Javascript: Add typescript generation + adjust jsdoc typing
surister File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,98 @@ | ||
| import SqlBaseParserVisitor from "./generated_parser/SqlBaseParserVisitor.js"; | ||
| import SqlBaseParser from "./generated_parser/SqlBaseParser.js"; | ||
| import {Statement} from "./parser.js" | ||
| import {Table} from "./models.js" | ||
|
|
||
|
|
||
| /** | ||
| * | ||
| * @param {string} text | ||
| * @returns {Boolean} | ||
| */ | ||
| function isDigit(text) { | ||
| return text.split('').every(char => char >= '0' && char <= '9'); | ||
| } | ||
|
|
||
|
|
||
| export class AstBuilder extends SqlBaseParserVisitor { | ||
| // The class implements the antlr4 visitor pattern similar to how we do it in CrateDB | ||
| // https://github.com/crate/crate/blob/master/libs/sql-parser/src/main/java/io/crate/sql/parser/AstBuilder.java | ||
| // | ||
| // The biggest difference is that in CrateDB, `AstBuilder`, visitor methods | ||
| // return a specialized Statement visitor. | ||
| // | ||
| // Sqlparse just extracts whatever data it needs from the context and injects it to the current | ||
| // visited statement, enriching its metadata. | ||
|
|
||
| /** | ||
| * | ||
| * @param {Object} node | ||
| * @returns {(string|null)} | ||
| */ | ||
| getText(node) { | ||
| if (node) { | ||
| return node.getText().replaceAll("'", "").replaceAll('"', "") | ||
| } | ||
| return null | ||
| } | ||
|
|
||
| /** | ||
| * | ||
| * @param {Statement} stmt | ||
| */ | ||
| enrich(stmt) { | ||
| this.stmt = stmt | ||
| this.visit(this.stmt.ctx) | ||
| } | ||
|
|
||
| /** | ||
| * | ||
| * @param {SqlBaseParser.TableNameContext} ctx | ||
| */ | ||
| visitTableName(ctx) { | ||
| const fqn = ctx.qname() | ||
| const parts = this.getText(fqn).split(".") | ||
|
|
||
| let schema = null | ||
| let name = null; | ||
| if (parts.length === 1) { | ||
| name = parts[0] | ||
| } else { | ||
| schema = parts[0] | ||
| name = parts[1] | ||
| } | ||
|
|
||
| this.stmt.metadata.tables.push( | ||
| new Table(name, schema) | ||
| ) | ||
| } | ||
|
|
||
| /** | ||
| * | ||
| * @param {SqlBaseParser.GenericPropertiesContext} ctx | ||
| */ | ||
| visitGenericProperties(ctx) { | ||
| const nodeProperties = ctx.genericProperty() | ||
| const properties = {} | ||
| const parameterizedProperties = {} | ||
|
|
||
| for (const property of nodeProperties) { | ||
| let key = this.getText(property.ident()) | ||
| let value = this.getText(property.expr()) | ||
|
|
||
| properties[key] = value | ||
|
|
||
| if (value && value[0] === '$') { | ||
| // It might be a parameterized value, e.g. '$1' | ||
| if (isDigit(value.slice(1))) { | ||
| parameterizedProperties[key] = value | ||
| } | ||
| } | ||
|
|
||
| this.stmt.metadata.withProperties = properties | ||
| this.stmt.metadata.parameterizedProperties = parameterizedProperties | ||
|
|
||
| } | ||
| } | ||
|
|
||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.