io.deephaven.engine.util.NoLanguageDeephavenSession Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-engine-table Show documentation
Show all versions of deephaven-engine-table Show documentation
Engine Table: Implementation and closely-coupled utilities
/**
* Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending
*/
package io.deephaven.engine.util;
import io.deephaven.engine.context.QueryScope;
import io.deephaven.engine.updategraph.OperationInitializer;
import io.deephaven.engine.updategraph.UpdateGraph;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Set;
/**
* ScriptSession implementation that simply allows variables to be exported. This is not intended for use in user
* scripts.
*/
public class NoLanguageDeephavenSession extends AbstractScriptSession {
private static final String SCRIPT_TYPE = "NoLanguage";
private final String scriptType;
private final Map variables;
public NoLanguageDeephavenSession(
final UpdateGraph updateGraph,
final OperationInitializer operationInitializer) {
this(updateGraph, operationInitializer, SCRIPT_TYPE);
}
public NoLanguageDeephavenSession(
final UpdateGraph updateGraph,
final OperationInitializer operationInitializer,
final String scriptType) {
super(updateGraph, operationInitializer, null, null);
this.scriptType = scriptType;
variables = new LinkedHashMap<>();
}
@Override
public QueryScope newQueryScope() {
return new SynchronizedScriptSessionQueryScope(this);
}
@NotNull
@Override
public Object getVariable(String name) throws QueryScope.MissingVariableException {
final Object var = variables.get(name);
if (var != null) {
return var;
}
throw new QueryScope.MissingVariableException("No global variable for: " + name);
}
@Override
public T getVariable(String name, T defaultValue) {
try {
// noinspection unchecked
return (T) getVariable(name);
} catch (QueryScope.MissingVariableException e) {
return defaultValue;
}
}
@Override
protected Snapshot emptySnapshot() {
throw new UnsupportedOperationException(SCRIPT_TYPE + " session does not support emptySnapshot");
}
@Override
protected Snapshot takeSnapshot() {
throw new UnsupportedOperationException(SCRIPT_TYPE + " session does not support takeSnapshot");
}
@Override
protected Changes createDiff(Snapshot from, Snapshot to, RuntimeException e) {
throw new UnsupportedOperationException(SCRIPT_TYPE + " session does not support createDiff");
}
@Override
protected void evaluate(String command, @Nullable String scriptName) {
if (!scriptType.equals(SCRIPT_TYPE)) {
throw new UnsupportedOperationException(scriptType + " session mode is not enabled");
}
throw new UnsupportedOperationException(SCRIPT_TYPE + " session does not support evaluate");
}
@Override
public Map getVariables() {
return Collections.unmodifiableMap(variables);
}
@Override
public Set getVariableNames() {
return Collections.unmodifiableSet(variables.keySet());
}
@Override
public boolean hasVariableName(String name) {
return variables.containsKey(name);
}
@Override
public void setVariable(String name, @Nullable Object newValue) {
variables.put(name, newValue);
// changeListener is always null for NoLanguageDeephavenSession; we have no mechanism for reporting scope
// changes
}
@Override
public String scriptType() {
return SCRIPT_TYPE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy