/* * Licensed to ElasticSearch and Shay Banon under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. ElasticSearch licenses this * file to you 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 org.elasticsearch.script.mvel; import org.apache.lucene.index.IndexReader; import org.apache.lucene.search.Scorer; import org.elasticsearch.common.Nullable; import org.elasticsearch.common.component.AbstractComponent; import org.elasticsearch.common.inject.Inject; import org.elasticsearch.common.math.UnboxedMathUtils; import org.elasticsearch.common.settings.Settings; import org.elasticsearch.script.ExecutableScript; import org.elasticsearch.script.ScriptEngineService; import org.elasticsearch.script.SearchScript; import org.elasticsearch.search.lookup.SearchLookup; import org.mvel2.MVEL; import org.mvel2.ParserConfiguration; import org.mvel2.ParserContext; import org.mvel2.compiler.ExecutableStatement; import org.mvel2.integration.impl.MapVariableResolverFactory; import java.lang.reflect.Method; import java.lang.reflect.Modifier; import java.util.HashMap; import java.util.Map; /** * */ public class MvelScriptEngineService extends AbstractComponent implements ScriptEngineService { private final ParserConfiguration parserConfiguration; @Inject public MvelScriptEngineService(Settings settings) { super(settings); parserConfiguration = new ParserConfiguration(); parserConfiguration.addPackageImport("java.util"); parserConfiguration.addPackageImport("gnu.trove"); parserConfiguration.addPackageImport("org.joda"); parserConfiguration.addImport("time", MVEL.getStaticMethod(System.class, "currentTimeMillis", new Class[0])); // unboxed version of Math, better performance since conversion from boxed to unboxed my mvel is not needed for (Method m : UnboxedMathUtils.class.getMethods()) { if ((m.getModifiers() & Modifier.STATIC) > 0) { parserConfiguration.addImport(m.getName(), m); } } } @Override public void close() { // nothing to do here... } @Override public String[] types() { return new String[]{"mvel"}; } @Override public String[] extensions() { return new String[]{"mvel"}; } @Override public Object compile(String script) { return MVEL.compileExpression(script, new ParserContext(parserConfiguration)); } @Override public Object execute(Object compiledScript, Map vars) { return MVEL.executeExpression(compiledScript, vars); } @Override public ExecutableScript executable(Object compiledScript, Map vars) { return new MvelExecutableScript(compiledScript, vars); } @Override public SearchScript search(Object compiledScript, SearchLookup lookup, @Nullable Map<String, Object> vars) { return new MvelSearchScript(compiledScript, lookup, vars); } @Override public Object unwrap(Object value) { return value; } public static class MvelExecutableScript implements ExecutableScript { private final ExecutableStatement script; private final MapVariableResolverFactory resolver; public MvelExecutableScript(Object script, Map vars) { this.script = (ExecutableStatement) script; if (vars != null) { this.resolver = new MapVariableResolverFactory(vars); } else { this.resolver = new MapVariableResolverFactory(new HashMap()); } } @Override public void setNextVar(String name, Object value) { resolver.createVariable(name, value); } @Override public Object run() { return script.getValue(null, resolver); } @Override public Object unwrap(Object value) { return value; } } public static class MvelSearchScript implements SearchScript { private final ExecutableStatement script; private final SearchLookup lookup; private final MapVariableResolverFactory resolver; public MvelSearchScript(Object script, SearchLookup lookup, Map<String, Object> vars) { this.script = (ExecutableStatement) script; this.lookup = lookup; if (vars != null) { this.resolver = new MapVariableResolverFactory(vars); } else { this.resolver = new MapVariableResolverFactory(new HashMap()); } for (Map.Entry<String, Object> entry : lookup.asMap().entrySet()) { resolver.createVariable(entry.getKey(), entry.getValue()); } } @Override public void setScorer(Scorer scorer) { lookup.setScorer(scorer); } @Override public void setNextReader(IndexReader reader) { lookup.setNextReader(reader); } @Override public void setNextDocId(int doc) { lookup.setNextDocId(doc); } @Override public void setNextScore(float score) { resolver.createVariable("_score", score); } @Override public void setNextVar(String name, Object value) { resolver.createVariable(name, value); } @Override public void setNextSource(Map<String, Object> source) { lookup.source().setNextSource(source); } @Override public Object run() { return script.getValue(null, resolver); } @Override public float runAsFloat() { return ((Number) run()).floatValue(); } @Override public long runAsLong() { return ((Number) run()).longValue(); } @Override public double runAsDouble() { return ((Number) run()).doubleValue(); } @Override public Object unwrap(Object value) { return value; } } }