-
Notifications
You must be signed in to change notification settings - Fork 25.2k
QL: Introduce ParserUtils to consolidate code #76399
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
package org.elasticsearch.xpack.ql.parser; | ||
|
||
import org.antlr.v4.runtime.CharStream; | ||
import org.antlr.v4.runtime.misc.Interval; | ||
|
||
// Wrapping stream for handling case-insensitive grammars | ||
|
||
// This approach is taken from the ANTLR documentation | ||
// https://github.com/antlr/antlr4/blob/master/doc/resources/CaseChangingCharStream.java | ||
// https://github.com/antlr/antlr4/blob/master/doc/case-insensitive-lexing.md | ||
|
||
/** | ||
* This class supports case-insensitive lexing by wrapping an existing | ||
* {@link CharStream} and forcing the lexer to see either upper or | ||
* lowercase characters. Grammar literals should then be either upper or | ||
* lower case such as 'BEGIN' or 'begin'. The text of the character | ||
* stream is unaffected. Example: input 'BeGiN' would match lexer rule | ||
* 'BEGIN' if constructor parameter upper=true but getText() would return | ||
* 'BeGiN'. | ||
*/ | ||
public class CaseChangingCharStream implements CharStream { | ||
|
||
private final CharStream stream; | ||
private final boolean upper; | ||
|
||
/** | ||
* Constructs a new CaseChangingCharStream wrapping the given {@link CharStream} forcing | ||
* all characters to upper case or lower case. | ||
* @param stream The stream to wrap. | ||
* @param upper If true force each symbol to upper case, otherwise force to lower. | ||
*/ | ||
public CaseChangingCharStream(CharStream stream, boolean upper) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is there a use case for There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not at the moment. The class has been copied from ANTLR. Since the bool is a final variable, I expect the JIT to optimize this code nicely. |
||
this.stream = stream; | ||
this.upper = upper; | ||
} | ||
|
||
@Override | ||
public String getText(Interval interval) { | ||
return stream.getText(interval); | ||
} | ||
|
||
@Override | ||
public void consume() { | ||
stream.consume(); | ||
} | ||
|
||
@Override | ||
public int LA(int i) { | ||
int c = stream.LA(i); | ||
if (c <= 0) { | ||
return c; | ||
} | ||
return upper ? Character.toUpperCase(c) : Character.toLowerCase(c); | ||
} | ||
|
||
@Override | ||
public int mark() { | ||
return stream.mark(); | ||
} | ||
|
||
@Override | ||
public void release(int marker) { | ||
stream.release(marker); | ||
} | ||
|
||
@Override | ||
public int index() { | ||
return stream.index(); | ||
} | ||
|
||
@Override | ||
public void seek(int index) { | ||
stream.seek(index); | ||
} | ||
|
||
@Override | ||
public int size() { | ||
return stream.size(); | ||
} | ||
|
||
@Override | ||
public String getSourceName() { | ||
return stream.getSourceName(); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could
typedParsing
also be removed fromAbstractBuilder
and all usage replaced byParserUtils.typedParsing
(same as forvisitList
)?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Raised #76418