com.google.escapevelocity.EvaluationContext Maven / Gradle / Ivy
The newest version!
/*
* Copyright (C) 2018 Google, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.escapevelocity;
import com.google.common.collect.ImmutableSet;
import java.lang.reflect.Method;
import java.util.Map;
import java.util.TreeMap;
/**
* The context of a template evaluation. This consists of the template variables and the template
* macros. The template variables start with the values supplied by the evaluation call, and can
* be changed by {@code #set} directives and during the execution of {@code #foreach} and macro
* calls. The macros start out with the ones that were defined in the root {@link Template} and may
* be supplemented by nested templates produced by {@code #parse} directives encountered in the
* root template or in nested templates.
*
* @author [email protected] (Éamonn McManus)
*/
interface EvaluationContext {
Object getVar(String var);
boolean varIsDefined(String var);
/**
* Sets the given variable to the given value.
*
* @return a Runnable that will restore the variable to the value it had before. If the variable
* was undefined before this method was executed, the Runnable will make it undefined again.
* This allows us to restore the state of {@code $x} after {@code #foreach ($x in ...)}.
*/
Runnable setVar(final String var, Object value);
/** See {@link MethodFinder#publicMethodsWithName}. */
ImmutableSet publicMethodsWithName(Class> startClass, String name);
/**
* Returns a modifiable mapping from macro names to macros. Initially this map starts off with the
* macros that were defined in the root template. As {@code #parse} directives are encountered in
* the evaluation, they may add further macros to the map.
*/
Map getMacros();
class PlainEvaluationContext implements EvaluationContext {
private final Map vars;
private final Map macros;
private final MethodFinder methodFinder;
PlainEvaluationContext(
Map vars, Map macros, MethodFinder methodFinder) {
this.vars = new TreeMap<>(vars);
this.macros = macros;
this.methodFinder = methodFinder;
}
@Override
public Object getVar(String var) {
return vars.get(var);
}
@Override
public boolean varIsDefined(String var) {
return vars.containsKey(var);
}
@Override
public Runnable setVar(final String var, Object value) {
Runnable undo;
if (vars.containsKey(var)) {
final Object oldValue = vars.get(var);
undo = () -> vars.put(var, oldValue);
} else {
undo = () -> vars.remove(var);
}
vars.put(var, value);
return undo;
}
@Override
public ImmutableSet publicMethodsWithName(Class> startClass, String name) {
return methodFinder.publicMethodsWithName(startClass, name);
}
@Override
public Map getMacros() {
return macros;
}
}
}