Skip to content

Commit 9bf3946

Browse files
authored
Merge pull request antlr#1748 from parrt/rm-xpath-grammar
Fixes antlr#1620. Make handbuilt lexer to avoid cyclic dependence of tool and plugin.
2 parents 5e3045f + b16cfd6 commit 9bf3946

File tree

2 files changed

+179
-63
lines changed

2 files changed

+179
-63
lines changed

runtime/Java/src/org/antlr/v4/runtime/tree/xpath/XPathLexer.g4

-63
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,179 @@
1+
/*
2+
* Copyright (c) 2012-2016 The ANTLR Project. All rights reserved.
3+
* Use of this file is governed by the BSD 3-clause license that
4+
* can be found in the LICENSE.txt file in the project root.
5+
*/
6+
package org.antlr.v4.runtime.tree.xpath;
7+
8+
import org.antlr.v4.runtime.CharStream;
9+
import org.antlr.v4.runtime.CommonToken;
10+
import org.antlr.v4.runtime.Lexer;
11+
import org.antlr.v4.runtime.LexerNoViableAltException;
12+
import org.antlr.v4.runtime.Token;
13+
import org.antlr.v4.runtime.Vocabulary;
14+
import org.antlr.v4.runtime.VocabularyImpl;
15+
import org.antlr.v4.runtime.atn.ATN;
16+
import org.antlr.v4.runtime.misc.Interval;
17+
18+
/** Mimic the old XPathLexer from .g4 file */
19+
public class XPathLexer extends Lexer {
20+
public static final int
21+
TOKEN_REF=1, RULE_REF=2, ANYWHERE=3, ROOT=4, WILDCARD=5, BANG=6, ID=7,
22+
STRING=8;
23+
public static String[] modeNames = {
24+
"DEFAULT_MODE"
25+
};
26+
27+
public static final String[] ruleNames = {
28+
"ANYWHERE", "ROOT", "WILDCARD", "BANG", "ID", "NameChar", "NameStartChar",
29+
"STRING"
30+
};
31+
32+
private static final String[] _LITERAL_NAMES = {
33+
null, null, null, "'//'", "'/'", "'*'", "'!'"
34+
};
35+
private static final String[] _SYMBOLIC_NAMES = {
36+
null, "TOKEN_REF", "RULE_REF", "ANYWHERE", "ROOT", "WILDCARD", "BANG",
37+
"ID", "STRING"
38+
};
39+
public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
40+
41+
/**
42+
* @deprecated Use {@link #VOCABULARY} instead.
43+
*/
44+
@Deprecated
45+
public static final String[] tokenNames;
46+
static {
47+
tokenNames = new String[_SYMBOLIC_NAMES.length];
48+
for (int i = 0; i < tokenNames.length; i++) {
49+
tokenNames[i] = VOCABULARY.getLiteralName(i);
50+
if (tokenNames[i] == null) {
51+
tokenNames[i] = VOCABULARY.getSymbolicName(i);
52+
}
53+
54+
if (tokenNames[i] == null) {
55+
tokenNames[i] = "<INVALID>";
56+
}
57+
}
58+
}
59+
60+
@Override
61+
public String getGrammarFileName() { return "XPathLexer.g4"; }
62+
63+
@Override
64+
public String[] getRuleNames() { return ruleNames; }
65+
66+
@Override
67+
public String[] getModeNames() { return modeNames; }
68+
69+
@Override
70+
@Deprecated
71+
public String[] getTokenNames() {
72+
return tokenNames;
73+
}
74+
75+
@Override
76+
public Vocabulary getVocabulary() {
77+
return VOCABULARY;
78+
}
79+
80+
@Override
81+
public ATN getATN() {
82+
return null;
83+
}
84+
85+
protected int line = 1;
86+
protected int charPositionInLine = 0;
87+
88+
public XPathLexer(CharStream input) {
89+
super(input);
90+
}
91+
92+
@Override
93+
public Token nextToken() {
94+
_tokenStartCharIndex = _input.index();
95+
CommonToken t = null;
96+
while ( t==null ) {
97+
switch ( _input.LA(1) ) {
98+
case '/':
99+
consume();
100+
if ( _input.LA(1)=='/' ) {
101+
consume();
102+
t = new CommonToken(ANYWHERE, "//");
103+
}
104+
else {
105+
t = new CommonToken(ROOT, "/");
106+
}
107+
break;
108+
case '*':
109+
consume();
110+
t = new CommonToken(WILDCARD, "*");
111+
break;
112+
case '!':
113+
consume();
114+
t = new CommonToken(BANG, "!");
115+
break;
116+
case '\'':
117+
String s = matchString();
118+
t = new CommonToken(STRING, s);
119+
break;
120+
case CharStream.EOF :
121+
return new CommonToken(EOF, "<EOF>");
122+
default:
123+
if ( isNameStartChar(_input.LA(1)) ) {
124+
String id = matchID();
125+
if ( Character.isUpperCase(id.charAt(0)) ) t = new CommonToken(TOKEN_REF, id);
126+
else t = new CommonToken(RULE_REF, id);
127+
}
128+
else {
129+
throw new LexerNoViableAltException(this, _input, _tokenStartCharIndex, null);
130+
}
131+
break;
132+
}
133+
}
134+
t.setStartIndex(_tokenStartCharIndex);
135+
t.setCharPositionInLine(_tokenStartCharIndex);
136+
t.setLine(line);
137+
return t;
138+
}
139+
140+
public void consume() {
141+
int curChar = _input.LA(1);
142+
if ( curChar=='\n' ) {
143+
line++;
144+
charPositionInLine=0;
145+
}
146+
else {
147+
charPositionInLine++;
148+
}
149+
_input.consume();
150+
}
151+
152+
@Override
153+
public int getCharPositionInLine() {
154+
return charPositionInLine;
155+
}
156+
157+
public String matchID() {
158+
int start = _input.index();
159+
consume(); // drop start char
160+
while ( isNameChar(_input.LA(1)) ) {
161+
consume();
162+
}
163+
return _input.getText(Interval.of(start,_input.index()-1));
164+
}
165+
166+
public String matchString() {
167+
int start = _input.index();
168+
consume(); // drop first quote
169+
while ( _input.LA(1)!='\'' ) {
170+
consume();
171+
}
172+
consume(); // drop last quote
173+
return _input.getText(Interval.of(start,_input.index()-1));
174+
}
175+
176+
public boolean isNameChar(int c) { return Character.isUnicodeIdentifierPart(c); }
177+
178+
public boolean isNameStartChar(int c) { return Character.isUnicodeIdentifierStart(c); }
179+
}

0 commit comments

Comments
 (0)