2010-06-14 03:15:23 +03:00
|
|
|
/*
|
2011-12-06 02:42:25 +02:00
|
|
|
* Licensed to ElasticSearch and Shay Banon under one
|
2010-06-14 03:15:23 +03:00
|
|
|
* or more contributor license agreements. See the NOTICE file
|
|
|
|
* distributed with this work for additional information
|
2011-12-06 02:42:25 +02:00
|
|
|
* regarding copyright ownership. ElasticSearch licenses this
|
2010-06-14 03:15:23 +03:00
|
|
|
* 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;
|
|
|
|
|
2013-06-10 16:41:48 +02:00
|
|
|
import com.google.common.base.Charsets;
|
2012-01-05 20:44:09 +02:00
|
|
|
import com.google.common.cache.Cache;
|
|
|
|
import com.google.common.cache.CacheBuilder;
|
2011-12-06 02:42:25 +02:00
|
|
|
import com.google.common.collect.ImmutableMap;
|
|
|
|
import com.google.common.collect.ImmutableSet;
|
2010-09-03 01:49:06 +03:00
|
|
|
import org.elasticsearch.ElasticSearchIllegalArgumentException;
|
2011-01-31 16:08:06 +02:00
|
|
|
import org.elasticsearch.common.Nullable;
|
2010-06-15 16:51:38 +03:00
|
|
|
import org.elasticsearch.common.component.AbstractComponent;
|
|
|
|
import org.elasticsearch.common.inject.Inject;
|
2010-10-14 16:14:23 +02:00
|
|
|
import org.elasticsearch.common.io.Streams;
|
2010-06-15 16:51:38 +03:00
|
|
|
import org.elasticsearch.common.settings.Settings;
|
2013-01-11 17:53:08 -05:00
|
|
|
import org.elasticsearch.common.unit.TimeValue;
|
2010-10-14 16:14:23 +02:00
|
|
|
import org.elasticsearch.common.util.concurrent.ConcurrentCollections;
|
|
|
|
import org.elasticsearch.env.Environment;
|
2013-01-22 13:45:00 +01:00
|
|
|
import org.elasticsearch.index.fielddata.IndexFieldDataService;
|
2011-01-31 16:08:06 +02:00
|
|
|
import org.elasticsearch.index.mapper.MapperService;
|
2010-09-03 01:49:06 +03:00
|
|
|
import org.elasticsearch.script.mvel.MvelScriptEngineService;
|
2011-01-31 16:08:06 +02:00
|
|
|
import org.elasticsearch.search.lookup.SearchLookup;
|
2010-06-14 03:15:23 +03:00
|
|
|
|
2010-10-14 16:14:23 +02:00
|
|
|
import java.io.File;
|
|
|
|
import java.io.FileInputStream;
|
2011-05-20 18:15:56 +03:00
|
|
|
import java.io.IOException;
|
2010-10-14 16:14:23 +02:00
|
|
|
import java.io.InputStreamReader;
|
2010-06-14 03:15:23 +03:00
|
|
|
import java.util.Map;
|
2010-09-03 01:49:06 +03:00
|
|
|
import java.util.Set;
|
2010-06-14 03:15:23 +03:00
|
|
|
import java.util.concurrent.ConcurrentMap;
|
2013-01-11 17:53:08 -05:00
|
|
|
import java.util.concurrent.TimeUnit;
|
2010-06-14 03:15:23 +03:00
|
|
|
|
|
|
|
/**
|
2011-12-06 02:42:25 +02:00
|
|
|
*
|
2010-06-14 03:15:23 +03:00
|
|
|
*/
|
|
|
|
public class ScriptService extends AbstractComponent {
|
|
|
|
|
2010-10-02 01:22:05 +02:00
|
|
|
private final String defaultLang;
|
2010-06-14 03:15:23 +03:00
|
|
|
|
2010-09-03 01:49:06 +03:00
|
|
|
private final ImmutableMap<String, ScriptEngineService> scriptEngines;
|
2010-06-14 03:15:23 +03:00
|
|
|
|
2010-10-14 16:14:23 +02:00
|
|
|
private final ConcurrentMap<String, CompiledScript> staticCache = ConcurrentCollections.newConcurrentMap();
|
|
|
|
|
2013-01-11 17:53:08 -05:00
|
|
|
private final Cache<CacheKey, CompiledScript> cache;
|
2010-09-03 01:49:06 +03:00
|
|
|
|
2012-03-06 22:03:02 +02:00
|
|
|
private final boolean disableDynamic;
|
|
|
|
|
2010-09-03 01:49:06 +03:00
|
|
|
public ScriptService(Settings settings) {
|
2010-10-14 16:14:23 +02:00
|
|
|
this(settings, new Environment(), ImmutableSet.<ScriptEngineService>builder()
|
2010-09-03 01:49:06 +03:00
|
|
|
.add(new MvelScriptEngineService(settings))
|
|
|
|
.build()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-12-06 02:42:25 +02:00
|
|
|
@Inject
|
|
|
|
public ScriptService(Settings settings, Environment env, Set<ScriptEngineService> scriptEngines) {
|
2010-06-14 03:15:23 +03:00
|
|
|
super(settings);
|
|
|
|
|
2013-01-11 17:53:08 -05:00
|
|
|
int cacheMaxSize = componentSettings.getAsInt("cache.max_size", 500);
|
|
|
|
TimeValue cacheExpire = componentSettings.getAsTime("cache.expire", null);
|
|
|
|
logger.debug("using script cache with max_size [{}], expire [{}]", cacheMaxSize, cacheExpire);
|
|
|
|
|
2010-10-02 01:22:05 +02:00
|
|
|
this.defaultLang = componentSettings.get("default_lang", "mvel");
|
2012-03-06 22:03:02 +02:00
|
|
|
this.disableDynamic = componentSettings.getAsBoolean("disable_dynamic", false);
|
2010-09-03 01:49:06 +03:00
|
|
|
|
2013-01-11 17:53:08 -05:00
|
|
|
CacheBuilder cacheBuilder = CacheBuilder.newBuilder();
|
|
|
|
if (cacheMaxSize >= 0) {
|
|
|
|
cacheBuilder.maximumSize(cacheMaxSize);
|
|
|
|
}
|
|
|
|
if (cacheExpire != null) {
|
|
|
|
cacheBuilder.expireAfterAccess(cacheExpire.nanos(), TimeUnit.NANOSECONDS);
|
|
|
|
}
|
|
|
|
this.cache = cacheBuilder.build();
|
|
|
|
|
2010-09-03 01:49:06 +03:00
|
|
|
ImmutableMap.Builder<String, ScriptEngineService> builder = ImmutableMap.builder();
|
|
|
|
for (ScriptEngineService scriptEngine : scriptEngines) {
|
2010-10-02 21:18:01 +02:00
|
|
|
for (String type : scriptEngine.types()) {
|
|
|
|
builder.put(type, scriptEngine);
|
|
|
|
}
|
2010-06-14 03:15:23 +03:00
|
|
|
}
|
2010-09-03 01:49:06 +03:00
|
|
|
this.scriptEngines = builder.build();
|
2010-10-14 16:14:23 +02:00
|
|
|
|
2011-05-20 18:15:56 +03:00
|
|
|
// put some default optimized scripts
|
|
|
|
staticCache.put("doc.score", new CompiledScript("native", new DocScoreNativeScriptFactory()));
|
|
|
|
|
2010-10-14 16:14:23 +02:00
|
|
|
// compile static scripts
|
|
|
|
File scriptsFile = new File(env.configFile(), "scripts");
|
|
|
|
if (scriptsFile.exists()) {
|
|
|
|
processScriptsDirectory("", scriptsFile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void processScriptsDirectory(String prefix, File dir) {
|
|
|
|
for (File file : dir.listFiles()) {
|
|
|
|
if (file.isDirectory()) {
|
|
|
|
processScriptsDirectory(prefix + file.getName() + "_", file);
|
|
|
|
} else {
|
|
|
|
int extIndex = file.getName().lastIndexOf('.');
|
|
|
|
if (extIndex != -1) {
|
|
|
|
String ext = file.getName().substring(extIndex + 1);
|
|
|
|
String scriptName = prefix + file.getName().substring(0, extIndex);
|
|
|
|
boolean found = false;
|
|
|
|
for (ScriptEngineService engineService : scriptEngines.values()) {
|
|
|
|
for (String s : engineService.extensions()) {
|
|
|
|
if (s.equals(ext)) {
|
|
|
|
found = true;
|
|
|
|
try {
|
2013-06-10 16:41:48 +02:00
|
|
|
String script = Streams.copyToString(new InputStreamReader(new FileInputStream(file), Charsets.UTF_8));
|
2010-10-14 16:14:23 +02:00
|
|
|
staticCache.put(scriptName, new CompiledScript(engineService.types()[0], engineService.compile(script)));
|
|
|
|
} catch (Exception e) {
|
|
|
|
logger.warn("failed to load/compile script [{}]", e, scriptName);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (found) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found) {
|
|
|
|
logger.warn("no script engine found for [{}]", ext);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-06-14 03:15:23 +03:00
|
|
|
}
|
|
|
|
|
2010-10-03 14:31:36 +02:00
|
|
|
public void close() {
|
|
|
|
for (ScriptEngineService engineService : scriptEngines.values()) {
|
|
|
|
engineService.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-03 01:49:06 +03:00
|
|
|
public CompiledScript compile(String script) {
|
2010-10-02 01:22:05 +02:00
|
|
|
return compile(defaultLang, script);
|
2010-09-03 01:49:06 +03:00
|
|
|
}
|
|
|
|
|
2010-10-02 01:22:05 +02:00
|
|
|
public CompiledScript compile(String lang, String script) {
|
2010-10-14 16:14:23 +02:00
|
|
|
CompiledScript compiled = staticCache.get(script);
|
|
|
|
if (compiled != null) {
|
|
|
|
return compiled;
|
|
|
|
}
|
2010-10-02 01:22:05 +02:00
|
|
|
if (lang == null) {
|
|
|
|
lang = defaultLang;
|
2010-10-01 22:14:20 +02:00
|
|
|
}
|
2012-03-06 22:03:02 +02:00
|
|
|
if (dynamicScriptDisabled(lang)) {
|
|
|
|
throw new ScriptException("dynamic scripting disabled");
|
|
|
|
}
|
2011-07-30 15:13:02 +03:00
|
|
|
CacheKey cacheKey = new CacheKey(lang, script);
|
2012-01-05 20:44:09 +02:00
|
|
|
compiled = cache.getIfPresent(cacheKey);
|
2011-07-30 15:13:02 +03:00
|
|
|
if (compiled != null) {
|
|
|
|
return compiled;
|
|
|
|
}
|
|
|
|
// not the end of the world if we compile it twice...
|
|
|
|
ScriptEngineService service = scriptEngines.get(lang);
|
|
|
|
if (service == null) {
|
|
|
|
throw new ElasticSearchIllegalArgumentException("script_lang not supported [" + lang + "]");
|
2010-06-14 03:15:23 +03:00
|
|
|
}
|
2011-07-30 15:13:02 +03:00
|
|
|
compiled = new CompiledScript(lang, service.compile(script));
|
|
|
|
cache.put(cacheKey, compiled);
|
2010-06-14 03:15:23 +03:00
|
|
|
return compiled;
|
|
|
|
}
|
|
|
|
|
2010-10-02 01:22:05 +02:00
|
|
|
public ExecutableScript executable(String lang, String script, Map vars) {
|
|
|
|
return executable(compile(lang, script), vars);
|
|
|
|
}
|
|
|
|
|
|
|
|
public ExecutableScript executable(CompiledScript compiledScript, Map vars) {
|
|
|
|
return scriptEngines.get(compiledScript.lang()).executable(compiledScript.compiled(), vars);
|
|
|
|
}
|
|
|
|
|
2011-01-31 16:08:06 +02:00
|
|
|
public SearchScript search(CompiledScript compiledScript, SearchLookup lookup, @Nullable Map<String, Object> vars) {
|
|
|
|
return scriptEngines.get(compiledScript.lang()).search(compiledScript.compiled(), lookup, vars);
|
|
|
|
}
|
|
|
|
|
|
|
|
public SearchScript search(SearchLookup lookup, String lang, String script, @Nullable Map<String, Object> vars) {
|
|
|
|
return search(compile(lang, script), lookup, vars);
|
|
|
|
}
|
|
|
|
|
2013-01-22 13:45:00 +01:00
|
|
|
public SearchScript search(MapperService mapperService, IndexFieldDataService fieldDataService, String lang, String script, @Nullable Map<String, Object> vars) {
|
|
|
|
return search(compile(lang, script), new SearchLookup(mapperService, fieldDataService, null), vars);
|
2011-01-31 16:08:06 +02:00
|
|
|
}
|
|
|
|
|
2010-09-03 01:49:06 +03:00
|
|
|
public Object execute(CompiledScript compiledScript, Map vars) {
|
2010-10-02 01:22:05 +02:00
|
|
|
return scriptEngines.get(compiledScript.lang()).execute(compiledScript.compiled(), vars);
|
2010-06-14 03:15:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public void clear() {
|
2012-01-05 20:44:09 +02:00
|
|
|
cache.invalidateAll();
|
2010-06-14 03:15:23 +03:00
|
|
|
}
|
2010-09-03 01:49:06 +03:00
|
|
|
|
2012-03-06 22:03:02 +02:00
|
|
|
private boolean dynamicScriptDisabled(String lang) {
|
|
|
|
if (!disableDynamic) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// we allow "native" executions since they register through plugins, so they are "allowed"
|
|
|
|
return !"native".equals(lang);
|
|
|
|
}
|
|
|
|
|
2011-07-30 15:13:02 +03:00
|
|
|
public static class CacheKey {
|
|
|
|
public final String lang;
|
|
|
|
public final String script;
|
|
|
|
|
|
|
|
public CacheKey(String lang, String script) {
|
|
|
|
this.lang = lang;
|
|
|
|
this.script = script;
|
|
|
|
}
|
|
|
|
|
2011-12-06 02:42:25 +02:00
|
|
|
@Override
|
|
|
|
public boolean equals(Object o) {
|
2011-07-30 15:13:02 +03:00
|
|
|
CacheKey other = (CacheKey) o;
|
|
|
|
return lang.equals(other.lang) && script.equals(other.script);
|
|
|
|
}
|
|
|
|
|
2011-12-06 02:42:25 +02:00
|
|
|
@Override
|
|
|
|
public int hashCode() {
|
2011-07-30 15:13:02 +03:00
|
|
|
return lang.hashCode() + 31 * script.hashCode();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-20 18:15:56 +03:00
|
|
|
public static class DocScoreNativeScriptFactory implements NativeScriptFactory {
|
2011-12-06 02:42:25 +02:00
|
|
|
@Override
|
|
|
|
public ExecutableScript newScript(@Nullable Map<String, Object> params) {
|
2011-05-20 18:15:56 +03:00
|
|
|
return new DocScoreSearchScript();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class DocScoreSearchScript extends AbstractFloatSearchScript {
|
2011-12-06 02:42:25 +02:00
|
|
|
@Override
|
|
|
|
public float runAsFloat() {
|
2011-05-20 18:15:56 +03:00
|
|
|
try {
|
|
|
|
return doc().score();
|
|
|
|
} catch (IOException e) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-06-14 03:15:23 +03:00
|
|
|
}
|