org.snapscript.tree.template.VariableSegment 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
package org.snapscript.tree.template;
import java.io.Writer;
import org.snapscript.core.convert.proxy.ProxyWrapper;
import org.snapscript.core.error.InternalStateException;
import org.snapscript.core.scope.Scope;
import org.snapscript.core.variable.Value;
import org.snapscript.core.variable.bind.VariableFinder;
import org.snapscript.core.variable.index.LocalPointer;
import org.snapscript.core.variable.index.VariablePointer;
public class VariableSegment implements Segment {
private final VariablePointer pointer;
private final VariableFinder finder;
private final ProxyWrapper wrapper;
private final String variable;
public VariableSegment(ProxyWrapper wrapper, char[] source, int off, int length) {
this.variable = new String(source, off + 2, length - 3);
this.finder = new VariableFinder(wrapper);
this.pointer = new LocalPointer(finder, variable);
this.wrapper = wrapper;
}
@Override
public void process(Scope scope, Writer writer) throws Exception {
Value value = pointer.getValue(scope, null);
if(value == null) {
throw new InternalStateException("Variable '" + variable + "' not found");
}
Object token = value.getValue();
Object object = wrapper.toProxy(token);
String text = String.valueOf(object);
writer.append(text);
}
@Override
public String toString() {
return variable;
}
}