org.snapscript.tree.template.ExpressionSegment 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.StringBuilder;
import org.snapscript.core.Context;
import org.snapscript.core.ExpressionEvaluator;
import org.snapscript.core.Module;
import org.snapscript.core.Scope;
public class ExpressionSegment implements Segment {
private String expression;
private char[] source;
private int off;
private int length;
public ExpressionSegment(char[] source, int off, int length) {
this.expression = new String(source, off + 2, length - 3);
this.source = source;
this.length = length;
this.off = off;
}
@Override
public void process(Scope scope, Writer writer) throws Exception {
Module module = scope.getModule();
String name = module.getName();
Context context = module.getContext();
ExpressionEvaluator evaluator = context.getEvaluator();
Object value = evaluator.evaluate(scope, expression, name);
if(value == null) {
writer.write(source, off, length);
} else {
String text = StringBuilder.create(scope, value);
writer.append(text);
}
}
@Override
public String toString() {
return expression;
}
}