
org.snapscript.tree.template.SegmentIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap Show documentation
Show all versions of snap Show documentation
Dynamic scripting for the JVM
The newest version!
package org.snapscript.tree.template;
import org.snapscript.core.ExpressionEvaluator;
import org.snapscript.core.convert.proxy.ProxyWrapper;
public class SegmentIterator {
private static final short[] IDENTIFIER = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0,
0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, };
private ExpressionEvaluator evaluator;
private ProxyWrapper wrapper;
private char[] source;
private int off;
public SegmentIterator(ExpressionEvaluator evaluator, ProxyWrapper wrapper, char[] source) {
this.evaluator = evaluator;
this.wrapper = wrapper;
this.source = source;
}
public Segment next() {
int mark = off;
while(off < source.length){
char next = source[off];
if(next == '$') {
if(off > mark) {
return new TextSegment(source, mark, off - mark);
}
} else if(off > 0) {
char prev = source[off - 1];
if(next == '{' && prev == '$') {
int start = off + 1;
int special = 0;
while(off < source.length) {
char symbol = source[off++];
if(symbol == '}') {
if(special > 0) {
return new ExpressionSegment(evaluator, wrapper, source, mark, off - mark);
}
return new VariableSegment(wrapper, source, mark, off - mark);
}
if(off > start) {
if(IDENTIFIER.length < symbol) {
special++;
} else if(IDENTIFIER[symbol] == 0) {
special++;
}
}
}
return new TextSegment(source, mark, off - mark);
}
}
off++;
}
if(off > mark) {
return new TextSegment(source, mark, off - mark);
}
return null;
}
public boolean hasNext() {
return off < source.length;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy