/*
* The MIT License
*
* Copyright 2017 Intuit Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.intuit.karate;
import java.io.File;
import java.util.HashMap;
import java.util.Map;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
*
* @author pthomas3
*/
public class ScriptEnv {
public final Logger logger;
public final String env;
public final File featureDir;
public final String featureName;
public final ClassLoader fileClassLoader;
private final Map<String, ScriptValue> callCache;
public ScriptEnv(String env, File featureDir, String featureName, ClassLoader fileClassLoader,
Map<String, ScriptValue> callCache, Logger logger) {
this.env = env;
this.featureDir = featureDir;
this.featureName = featureName;
this.fileClassLoader = fileClassLoader;
this.callCache = callCache;
this.logger = logger;
}
public ScriptEnv(String env, File featureDir, String featureName, ClassLoader fileClassLoader) {
this(env, featureDir, featureName, fileClassLoader, new HashMap<>(1), LoggerFactory.getLogger("com.intuit.karate"));
}
public static ScriptEnv init(File featureDir, String featureName, ClassLoader classLoader) {
return new ScriptEnv(null, featureDir, featureName, classLoader);
}
public static ScriptEnv init(String env, File featureDir) {
return new ScriptEnv(env, featureDir, null, Thread.currentThread().getContextClassLoader());
}
public static ScriptEnv init(String env, File featureFile, String[] searchPaths, Logger logger) {
return new ScriptEnv(env, featureFile.getParentFile(), featureFile.getName(), FileUtils.createClassLoader(searchPaths),
new HashMap<>(1), logger);
}
public ScriptEnv refresh(String in) { // immutable
String karateEnv = StringUtils.trimToNull(in);
if (karateEnv == null) {
karateEnv = StringUtils.trimToNull(env);
if (karateEnv == null) {
karateEnv = StringUtils.trimToNull(System.getProperty("karate.env"));
}
}
return new ScriptEnv(karateEnv, featureDir, featureName, fileClassLoader, callCache, logger);
}
public ScriptValue getFromCallCache(String key) {
return callCache.get(key);
}
public void putInCallCache(String key, ScriptValue value) {
callCache.put(key, value);
}
@Override
public String toString() {
return featureName + ", env: " + env + ", dir: " + featureDir;
}
}