import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
+import java.util.List;
import java.util.Set;
import java.util.SortedMap;
import java.util.TreeMap;
import org.simantics.db.layer0.variable.Variables;
import org.simantics.document.base.ontology.DocumentationResource;
import org.simantics.document.server.Functions.RootVariable;
+import org.simantics.document.server.request.NodeRequest;
+import org.simantics.document.server.request.NodeRequestUtils;
import org.simantics.structural2.variables.Connection;
import org.simantics.structural2.variables.VariableConnectionPointDescriptor;
import org.simantics.utils.datastructures.Pair;
SortedMap<String, Variable> childMap = new TreeMap<String, Variable>(AlphanumComparator.COMPARATOR);
- for(Variable property : variable.getProperties(graph)) {
- Collection<String> classifications = property.getPossiblePropertyValue(graph, Variables.CLASSIFICATIONS);
- if(classifications != null) {
- if(classifications.contains(DocumentationResource.URIs.Document_ChildRelation)) {
- Resource cp = property.getPossiblePredicateResource(graph);
- String i = graph.getRelatedValue(cp, DOC.Document_ChildRelation_ordinal, Bindings.STRING);
-
- Connection conn = property.getValue(graph);
- Variable childConnectionPoint = DocumentServerUtils.getPossibleOtherConnectionPoint(graph, property, conn);
- if(childConnectionPoint != null) {
- childMap.put(i, childConnectionPoint.getParent(graph));
- }
- } else if (DOC.Relations_partN.equals(property.getPossiblePredicateResource(graph))) {
- Connection conn = property.getValue(graph);
-
- for (Variable childConnectionPoint : DocumentServerUtils.getOtherConnectionPoints(graph, property, conn)) {
- Variable child = childConnectionPoint.getParent(graph);
- String i = findManualOrdinal(graph, child);
- if (i == null) {
- i = "0";
- }
- childMap.put(i, child);
- }
+ for(Variable property : variable.getProperties(graph, DocumentationResource.URIs.Document_ChildRelation)) {
+ Resource cp = property.getPossiblePredicateResource(graph);
+ String i = graph.getRelatedValue(cp, DOC.Document_ChildRelation_ordinal, Bindings.STRING);
+ Connection conn = property.getValue(graph);
+ Variable childConnectionPoint = DocumentServerUtils.getPossibleOtherConnectionPoint(graph, property, conn);
+ if(childConnectionPoint != null) {
+ childMap.put(i, childConnectionPoint.getParent(graph));
+ }
+ }
+
+ Variable property = variable.getPossibleProperty(graph, "partN");
+ if(property != null) {
+ Connection conn = property.getValue(graph);
+ for (Variable childConnectionPoint : DocumentServerUtils.getOtherConnectionPoints(graph, property, conn)) {
+ Variable child = childConnectionPoint.getParent(graph);
+ String i = findManualOrdinal(graph, child);
+ if (i == null) {
+ i = "0";
}
+ childMap.put(i, child);
}
}
+
return childMap.values();
}
return null;
}
+
+ public static Variable getPossibleChildConnectionPoint(ReadGraph graph, Variable connectionPoint, Connection conn) throws DatabaseException {
+
+ Collection<VariableConnectionPointDescriptor> descs = conn.getConnectionPointDescriptors(graph, null);
+ if(descs.size() != 2) return null;
+
+ DocumentationResource DOC = DocumentationResource.getInstance(graph);
+
+ for(VariableConnectionPointDescriptor desc : descs) {
+ Resource res = desc.getConnectionPointResource(graph);
+ if(graph.isInstanceOf(res, DOC.Relations_parentRelation)) continue;
+ //if(desc.isFlattenedFrom(graph, connectionPoint)) continue;
+ return desc.getVariable(graph);
+ }
+
+ return null;
+
+ }
public static Collection<Variable> getOtherConnectionPoints(ReadGraph graph, Variable connectionPoint, Connection conn) throws DatabaseException {
}
- public static class DocumentValue extends VariableRead<Object> {
-
- public DocumentValue(Variable variable) {
- super(variable);
- }
-
- @Override
- public Object perform(ReadGraph graph) throws DatabaseException {
- return variable.getValue(graph);
- }
-
- @Override
- public String toString() {
- return "DocumentValue[" + variable + "]";
- }
-
- }
-
public static Object getValue(ReadGraph graph, Variable attrib) throws DatabaseException {
return graph.syncRequest(new DocumentValue(attrib));
}
return variable.getProperties(graph, DOC.Document_AttributeRelation);
}
- static class AttributesRequest extends VariableRead<Pair<Collection<Variable>, Collection<Variable>>> {
+ public static class AttributesRequest extends VariableRead<Pair<JSONObject, Collection<Variable>>> {
public AttributesRequest(Variable variable) {
super(variable);
}
@Override
- public Pair<Collection<Variable>,Collection<Variable>> perform(ReadGraph graph) throws DatabaseException {
+ public Pair<JSONObject,Collection<Variable>> perform(ReadGraph graph) throws DatabaseException {
ArrayList<Variable> statics = new ArrayList<Variable>();
- ArrayList<Variable> dynamics = new ArrayList<Variable>();
DocumentationResource DOC = DocumentationResource.getInstance(graph);
- for(Variable property : getAttributes(graph, DOC, variable)) {
- Boolean defaultProperty = property.getPossiblePropertyValue(graph, "default");
- if(defaultProperty != null && defaultProperty) {
-// System.err.println("" + property.getURI(graph) + " is default");
- continue;
- }
-// else {
-// System.err.println("" + property.getURI(graph) + " is not default");
-// }
- Boolean dynamicProperty = property.getPossiblePropertyValue(graph, DOC.Document_AttributeRelation_dynamic);
- if(dynamicProperty != null && dynamicProperty) dynamics.add(property);
- else statics.add(property);
+
+ Variable primitives = variable.getProperty(graph, DOC.Properties_primitiveProperties);
+ for(Variable property : primitives.getProperties(graph)) {
+ statics.add(property);
+ // NO SUPPORT FOR DYNAMICS AT THIS STAGE
}
- return new Pair<Collection<Variable>, Collection<Variable>>(statics, dynamics);
+
+ JSONObject staticContent = computeStatic(graph, variable, statics);
+
+ return new Pair<JSONObject, Collection<Variable>>(staticContent, Collections.emptyList());
+
+ }
+
+ JSONObject computeStatic(ReadGraph graph, Variable variable, ArrayList<Variable> statics) throws DatabaseException {
+
+ JSONObject base = graph.syncRequest(new org.simantics.document.server.request.DefaultFields(variable));
+ JSONObject object = base.clone();
+
+ for(Variable attrib : statics) {
+ String name = attrib.getName(graph);
+ try {
+ Object value = DocumentServerUtils.getValue(graph, attrib);
+ object.addJSONField(name, value);
+ } catch (Throwable t) {
+ List<String> errorList = object.getJSONField(NodeRequest.ERRORS);
+ if(errorList == null)
+ errorList = new ArrayList<String>();
+
+ String errorMessage = NodeRequestUtils.formatErrorMessage(name, t);
+
+ errorList.add(errorMessage);
+ object.addJSONField(NodeRequest.ERRORS, errorList);
+ }
+
+ }
+
+ return object;
+
}
}
-
- public static Collection<Variable> getStaticAttributes(ReadGraph graph, DocumentationResource DOC, Variable variable) throws DatabaseException {
- Pair<Collection<Variable>, Collection<Variable>> attribs = graph.syncRequest(new AttributesRequest(variable));
- return attribs.first;
- }
public static Collection<Variable> getDynamicAttributes(ReadGraph graph, final DocumentationResource DOC, Variable variable) throws DatabaseException {
- Pair<Collection<Variable>, Collection<Variable>> attribs = graph.syncRequest(new AttributesRequest(variable));
+ Pair<JSONObject, Collection<Variable>> attribs = graph.syncRequest(new AttributesRequest(variable));
return attribs.second;
}
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
+import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
import org.simantics.databoard.Datatypes;
import org.simantics.databoard.binding.Binding;
import org.simantics.databoard.type.Datatype;
+import org.simantics.db.AsyncReadGraph;
+import org.simantics.db.DirectStatements;
import org.simantics.db.ReadGraph;
import org.simantics.db.RequestProcessor;
import org.simantics.db.Resource;
import org.simantics.db.Session;
+import org.simantics.db.Statement;
import org.simantics.db.WriteGraph;
import org.simantics.db.common.primitiverequest.Adapter;
import org.simantics.db.common.procedure.adapter.TransientCacheListener;
import org.simantics.db.exception.DatabaseException;
import org.simantics.db.layer0.function.All;
import org.simantics.db.layer0.request.ProjectModels;
+import org.simantics.db.layer0.request.PropertyInfo;
+import org.simantics.db.layer0.request.PropertyInfoRequest;
import org.simantics.db.layer0.request.VariableProperty;
import org.simantics.db.layer0.request.VariableRead;
import org.simantics.db.layer0.request.VariableValueWithBinding;
import org.simantics.db.layer0.variable.ProxyChildVariable;
import org.simantics.db.layer0.variable.ProxySessionRequest;
import org.simantics.db.layer0.variable.ProxyVariables;
+import org.simantics.db.layer0.variable.StandardAssertedGraphPropertyVariable;
import org.simantics.db.layer0.variable.StandardGraphChildVariable;
+import org.simantics.db.layer0.variable.StandardGraphPropertyVariable;
import org.simantics.db.layer0.variable.Variable;
import org.simantics.db.layer0.variable.VariableMap;
import org.simantics.db.layer0.variable.VariableMapImpl;
import org.simantics.db.layer0.variable.Variables;
+import org.simantics.db.procedure.AsyncProcedure;
+import org.simantics.db.service.DirectQuerySupport;
import org.simantics.document.base.ontology.DocumentationResource;
import org.simantics.document.server.bean.Command;
import org.simantics.document.server.bean.DataDefinition;
import org.simantics.simulation.ontology.SimulationResource;
import org.simantics.simulation.project.IExperimentManager;
import org.simantics.structural2.variables.Connection;
+import org.simantics.structural2.variables.StandardProceduralChildVariable;
import org.simantics.structural2.variables.VariableConnectionPointDescriptor;
import gnu.trove.map.hash.THashMap;
public class Functions {
+
+ private static class PrimitivePropertyStatementsProcedure implements AsyncProcedure<DirectStatements> {
+
+ public DirectStatements result;
+
+ @Override
+ public void execute(AsyncReadGraph graph, DirectStatements result) {
+ this.result = result;
+ }
+
+ @Override
+ public void exception(AsyncReadGraph graph, Throwable throwable) {
+ }
+
+ }
+
+ @SCLValue(type = "VariableMap")
+ public static VariableMap primitiveProperties = new VariableMapImpl() {
+
+ @Override
+ public Variable getVariable(ReadGraph graph, Variable context, String name) throws DatabaseException {
+ return All.getStandardPropertyDomainPropertyVariableFromValue(graph, context, name);
+ }
+
+ @Override
+ public Map<String, Variable> getVariables(final ReadGraph graph, Variable context, Map<String, Variable> map) throws DatabaseException {
+
+ Variable parent = context.getParent(graph);
+
+ DocumentationResource DOC = DocumentationResource.getInstance(graph);
+
+ if(parent instanceof StandardProceduralChildVariable) {
+
+ StandardProceduralChildVariable procedural = (StandardProceduralChildVariable)parent;
+ for(Variable property : procedural.getProperties(graph/*, DocumentationResource.URIs.Document_AttributeRelation*/)) {
+ if(property instanceof StandardAssertedGraphPropertyVariable) {
+ StandardAssertedGraphPropertyVariable ass = (StandardAssertedGraphPropertyVariable)property;
+ if("datadefinitions".equals(ass.property.name) || "commands".equals(ass.property.name)) {
+ Object value = property.getPossibleValue(graph);
+ if(value != null) map.put(ass.property.name, new ConstantPropertyVariable(parent, ass.property.name, value, null));
+ }
+ continue;
+ }
+ Resource predicate = property.getPossiblePredicateResource(graph);
+ if(predicate != null) {
+ PropertyInfo info = graph.syncRequest(new PropertyInfoRequest(predicate));
+ if(info.hasClassification(DocumentationResource.URIs.Document_AttributeRelation)) {
+ Variable prop = parent.getProperty(graph, predicate);
+ Object value = prop.getValue(graph);
+ if(map == null) map = new HashMap<String,Variable>();
+ map.put(info.name, new ConstantPropertyVariable(parent, info.name, value, null));
+ }
+ }
+ }
+
+ } else {
+
+ DirectQuerySupport dqs = graph.getService(DirectQuerySupport.class);
+ PrimitivePropertyStatementsProcedure foo = new PrimitivePropertyStatementsProcedure();
+
+ dqs.forEachDirectPersistentStatement(graph, parent.getRepresents(graph), foo);
+ for(Statement stm : foo.result) {
+ Resource predicate = stm.getPredicate();
+ PropertyInfo info = graph.syncRequest(new PropertyInfoRequest(predicate));
+ if(info.isHasProperty && info.hasClassification(DocumentationResource.URIs.Document_AttributeRelation)) {
+ if(map == null) map = new HashMap<String,Variable>();
+ Variable prop = new StandardGraphPropertyVariable(graph, parent, predicate);
+ Object value = prop.getValue(graph);
+ map.put(info.name, new ConstantPropertyVariable(parent, info.name, value, null));
+ }
+ }
+
+ Variable prop = new StandardGraphPropertyVariable(graph, parent, DOC.Properties_dataDefinitions);
+ Object value = prop.getPossibleValue(graph);
+ if(value != null) map.put("dataDefinitions", new ConstantPropertyVariable(parent, "dataDefinitions", value, null));
+ prop = new StandardGraphPropertyVariable(graph, parent, DOC.Properties_commands);
+ value = prop.getPossibleValue(graph);
+ if(value != null) map.put("commands", new ConstantPropertyVariable(parent, "commands", value, null));
+
+ }
+
+ if(map == null) return Collections.emptyMap();
+
+ return map;
+
+ }
+
+ };
+
@SCLValue(type = "VariableMap")
public static VariableMap inputSpaceChildren = new VariableMapImpl() {
Variable root = Variables.getRootVariable(graph);
return new DocumentProxyChildVariable(context, context, root, ProxyChildVariable.CONTEXT_BEGIN);
}
-
+
@Override
public Variable getVariable(ReadGraph graph, Variable context, String name) throws DatabaseException {
if(ProxyChildVariable.CONTEXT_BEGIN.equals(name)) return getProxy(graph, context);
return All.standardChildDomainChildren.getVariable(graph, context, name);
-
+
}
@Override
if(map == null) map = new THashMap<String,Variable>();
map.put(ProxyChildVariable.CONTEXT_BEGIN, getProxy(graph, context));
return map;
-
+
}
-
+
};
-
+
static class DocumentProxyChildVariable extends ProxyChildVariable {
public DocumentProxyChildVariable(Variable base, Variable parent, Variable other, String name) {
super(base, parent, other, name);
}
-
+
@Override
public Variable create(Variable base, Variable parent, Variable other, String name) {
return new DocumentProxyChildVariable(base, parent, other, name);
}
-
+
public Variable getPossibleChild(ReadGraph graph, String name) throws DatabaseException {
-
+
if(CONTEXT_END.equals(name)) {
if(other instanceof ProxyChildVariable) {
// The context is also a proxy - let it do the job
return new RootVariable(this, base.getRepresents(graph));
}
}
-
+
return super.getPossibleChild(graph, name);
-
+
}
-
+
public Collection<Variable> getChildren(ReadGraph graph) throws DatabaseException {
Collection<Variable> result = super.getChildren(graph);
result.add(new RootVariable(this, base.getRepresents(graph)));
}
return result;
-
- }
-
+
+ }
+
}
-
+
static class RootVariable extends StandardGraphChildVariable {
public RootVariable(DocumentProxyChildVariable parent, Resource resource) {
super(parent, null, resource);
}
-
+
@Override
public String getName(ReadGraph graph) throws DatabaseException {
return ProxyChildVariable.CONTEXT_END;
}
-
+
@SuppressWarnings("deprecation")
@Override
public Variable getNameVariable(ReadGraph graph) throws DatabaseException {
return new ConstantPropertyVariable(this, Variables.NAME, ProxyChildVariable.CONTEXT_END, Bindings.STRING);
}
-
+
}
@SCLValue(type = "ReadGraph -> Resource -> Variable -> Variable")
}
return Variables.getVariable(graph, uri);
}
-
+
public static Variable stateVariable(ReadGraph graph, Variable self) throws DatabaseException {
Variable session = graph.syncRequest(new ProxySessionRequest(self));
if (session == null)
throw new DatabaseException("No state for " + self.getURI(graph));
return session.getPossibleChild(graph, "__scl__");
}
-
+
@SCLValue(type = "ReadGraph -> Resource -> Variable -> Variable")
public static Variable state(ReadGraph graph, Resource converter, Variable context) throws DatabaseException {
Variable session = graph.syncRequest(new ProxySessionRequest(context));
public static Variable session(ReadGraph graph, Resource converter, Variable context) throws DatabaseException {
return graph.syncRequest(new ProxySessionRequest(context));
}
-
+
@SCLValue(type = "ReadGraph -> Resource -> Variable -> Variable")
public static Variable experiment(ReadGraph graph, Resource converter, Variable context) throws DatabaseException {
// Try if experiment (run) has been used as the input
while(var != null && !graph.isInstanceOf(var.getRepresents(graph), SR.Run)) {
var = var.getParent(graph);
}
-
+
if(var != null) {
IExperiment exp = getExperiment(graph, var);
if(exp == null)
return null;
}
-
+
return var;
}
-
+
@SCLValue(type = "ReadGraph -> Resource -> Variable -> Variable")
public static Variable model(ReadGraph graph, Resource converter, Variable context) throws DatabaseException {
Variable var = input(graph, converter, context);
while(var != null && !graph.isInstanceOf(var.getRepresents(graph), MOD.StructuralModel)) {
var = var.getParent(graph);
}
-
+
return var;
}
-
+
private static Collection<Variable> getBroadcasted(ReadGraph graph, Variable target) throws DatabaseException {
-
+
ArrayList<Variable> result = new ArrayList<Variable>();
-
+
DocumentationResource DOC = DocumentationResource.getInstance(graph);
Variable broadcasted = target.getPossibleProperty(graph, DOC.Relations_broadcasted);
if(broadcasted != null) result.add(broadcasted);
-
+
for(Variable child : DocumentServerUtils.getChildrenInOrdinalOrder(graph, target)) {
result.addAll(getBroadcasted(graph, child));
}
-
+
return result;
-
+
}
private static List<Command> getCommands(ReadGraph graph, Collection<Variable> commandVariables, String trigger, CommandContext constants, boolean broadcast) throws DatabaseException {
-
+
if(commandVariables.isEmpty()) return Collections.emptyList();
-
+
String t = trigger;
TreeMap<Integer, List<Command>> sequences = new TreeMap<Integer, List<Command>>();
-
+
DocumentationResource DOC = DocumentationResource.getInstance(graph);
-
+
int count = 0;
for (Variable c : commandVariables) {
-
+
if(trigger == null)
t = c.getName(graph);
-
+
Connection conn = c.getValue(graph);
Variable targetConnectionPoint = DocumentServerUtils.getPossibleCommandTriggerConnectionPoint(graph, c, conn);
if (targetConnectionPoint != null) {
Variable target = targetConnectionPoint.getParent(graph);
if (target != null) {
-
+
Boolean enabled = target.getPossiblePropertyValue(graph, DOC.Properties_exists, Bindings.BOOLEAN);
if(enabled != null && !enabled) continue;
-
+
Integer ordinal;
if (broadcast) {
ordinal = ++count;
ordinal = Integer.parseInt(o);
} catch (NumberFormatException e) {}
}
-
+
String constantKey = target.getPossiblePropertyValue(graph, "constantKey");
String constantValue = target.getPossiblePropertyValue(graph, "constantValue");
-
+
CommandContextMutable newConstants = (CommandContextMutable)constants;
if(constantKey != null && constantValue != null) {
if(!constantKey.isEmpty()) {
newConstants.putString(constantKey, constantValue);
}
}
-
+
String requiredKey = target.getPossiblePropertyValue(graph, "requiredKey");
if(requiredKey != null && !requiredKey.isEmpty()) {
if (newConstants == constants) {
}
newConstants.putRow(CommandContext.REQUIRED_KEYS, Collections.<Object>singletonList(requiredKey));
}
-
+
String forbiddenKey = target.getPossiblePropertyValue(graph, "forbiddenKey");
if(forbiddenKey != null && !forbiddenKey.isEmpty()) {
if (newConstants == constants) {
Command command = new Command(DocumentServerUtils.getId(graph, target), t,
targetConnectionPoint.getName(graph), newConstants);
sequences.put(ordinal, Collections.singletonList(command));
-
+
}
}
commands.add(command);
}
}
-
+
return commands;
}
dataDefinitions.add(new DataDefinition(DocumentServerUtils.getId(graph, data),
sourceProperty, targetProperty));
-
+
} else if (graph.isInheritedFrom(type, DOC.Components_DefVars)) {
List<String> sourcesProperty = toList(dataDefinition.getPropertyValue(graph, DOC.Properties_sources), String.class);
return Collections.<T>emptyList();
}
}
-
+
public static AbstractEventHandler emptyOnClick(ReadGraph graph) throws DatabaseException {
return new EventHandler() {
-
@Override
public ServerResponse handle(ReadGraph graph, CommandContext parameters) throws DatabaseException {
return null;
}
-
};
}
-
+
public static AbstractEventHandler writeEventHandler(ReadGraph graph, final Variable variable, final Function fn) {
-
+
final Session session = graph.getSession();
-
+
return new AbstractEventHandler() {
-
+
@Override
public CommandResult handle(final CommandContext parameters) {
-
+
final SCLReportingHandler printer = (SCLReportingHandler)SCLContext.getCurrent().get(SCLReportingHandler.REPORTING_HANDLER);
-
+
try {
-
+
String result = session.sync(new WriteResultRequest<String>() {
-
+
@Override
public String perform(WriteGraph graph) throws DatabaseException {
SCLContext sclContext = SCLContext.getCurrent();
sclContext.put("graph", oldGraph);
sclContext.put(SCLReportingHandler.REPORTING_HANDLER, oldPrinter);
}
-
+
return null;
-
+
}
-
+
});
-
+
return new SuccessResponse(result);
-
+
} catch (Throwable e) {
Logger.defaultLogError(e);
return new org.simantics.document.server.serverResponse.Error(e.getMessage());
}
-
+
}
-
+
};
}
-
+
public static AbstractEventHandler readEventHandler(ReadGraph graph, final Variable variable, final Function fn) {
-
+
final Session session = graph.getSession();
-
+
return new AbstractEventHandler() {
-
+
@Override
public CommandResult handle(final CommandContext parameters) {
-
+
final SCLReportingHandler printer = (SCLReportingHandler)SCLContext.getCurrent().get(SCLReportingHandler.REPORTING_HANDLER);
-
+
try {
-
+
String result = session.sync(new UniqueRead<String>() {
-
+
@Override
public String perform(ReadGraph graph) throws DatabaseException {
SCLContext sclContext = SCLContext.getCurrent();
sclContext.put("graph", oldGraph);
sclContext.put(SCLReportingHandler.REPORTING_HANDLER, oldPrinter);
}
-
+
return null;
-
+
}
-
+
});
-
+
return new SuccessResponse(result);
-
+
} catch (Throwable e) {
Logger.defaultLogError(e);
return new org.simantics.document.server.serverResponse.Error(e.getMessage());
}
-
+
}
-
+
};
}
public static AbstractEventHandler readEventHandler2(ReadGraph graph, final Function fn) {
-
+
final Session session = graph.getSession();
-
+
return new AbstractEventHandler() {
-
+
@Override
public CommandResult handle(final CommandContext parameters) {
-
+
final SCLReportingHandler printer = (SCLReportingHandler)SCLContext.getCurrent().get(SCLReportingHandler.REPORTING_HANDLER);
-
+
try {
-
+
CommandResult result = session.sync(new UniqueRead<CommandResult>() {
-
+
@Override
public CommandResult perform(ReadGraph graph) throws DatabaseException {
SCLContext sclContext = SCLContext.getCurrent();
sclContext.put("graph", oldGraph);
sclContext.put(SCLReportingHandler.REPORTING_HANDLER, oldPrinter);
}
-
+
return null;
-
+
}
-
+
});
-
+
return result;
-
+
} catch (Throwable e) {
Logger.defaultLogError(e);
return new org.simantics.document.server.serverResponse.Error(e.getMessage());
}
-
+
}
-
+
};
}
if(anyFunction == null) return null;
final List<TCon> effects = ServerSCLHandlerValueRequest.getEffects(graph, anyFunction);
-
+
final Function1<CommandContext, CommandResult> fn = anyFunction.getValue(graph);
String expression = anyFunction.getPropertyValue(graph, "expression");
-
+
final Session session = graph.getSession();
-
+
return new AbstractResponseHandler(expression) {
-
+
private String formatError(RequestProcessor proc, Throwable t) {
-
+
try {
-
+
return proc.syncRequest(new UniqueRead<String>() {
@Override
message.append(" handler=" + path + "\n");
message.append(" expression=" + expr + "\n");
message.append(" message=" + t.getMessage() + "\n");
-
+
StringWriter sw = new StringWriter();
t.printStackTrace(new PrintWriter(sw));
message.append(" stack trace=" + sw);
-
+
return message.toString();
}
-
+
});
-
+
} catch (DatabaseException e) {
-
+
return e.getMessage();
-
+
}
-
+
}
-
+
@Override
public CommandResult handle(final CommandContext parameters) {
-
+
IConsole console = parameters.getValue("__console__");
SCLReportingHandler printer = (console != null) ? new ConsoleSCLReportingHandler(console)
: (SCLReportingHandler) SCLContext.getCurrent().get(SCLReportingHandler.REPORTING_HANDLER);
-
+
try {
-
+
Object result = null;
if(effects.contains(Types.WRITE_GRAPH)) {
}
});
-
+
} else if(effects.contains(Types.READ_GRAPH)) {
result = session.sync(new UniqueRead<Object>() {
@Override
public Object perform(ReadGraph graph) throws DatabaseException {
-
+
SCLContext sclContext = SCLContext.getCurrent();
Object oldGraph = sclContext.put("graph", graph);
Object oldPrinter = sclContext.put(SCLReportingHandler.REPORTING_HANDLER, printer);
-
+
try {
Object response = fn.apply(parameters);
return response;
sclContext.put("graph", oldGraph);
sclContext.put(SCLReportingHandler.REPORTING_HANDLER, oldPrinter);
}
-
+
}
});
} else {
-
+
SCLContext sclContext = SCLContext.getCurrent();
Object oldPrinter = sclContext.put(SCLReportingHandler.REPORTING_HANDLER, printer);
try {
if (result instanceof org.simantics.document.server.serverResponse.Error) {
return (CommandResult)result;
}
-
+
if (result instanceof CommandResult) {
return (CommandResult)result;
} else {
CommandContextMutable assignments = new CommandContextImpl();
assignments.putValue("result", result);
return new ServerResponse(200, "", assignments);
- }
-
+ }
+
} catch (Throwable e) {
return new org.simantics.document.server.serverResponse.Error(formatError(Simantics.getSession(), e));
}
-
+
}
-
+
};
}
-
+
public static AbstractEventHandler writeEventHandler2(ReadGraph graph, final Function fn) {
-
+
final Session session = graph.getSession();
-
+
return new AbstractEventHandler() {
-
+
@Override
public CommandResult handle(final CommandContext parameters) {
-
+
final SCLReportingHandler printer = (SCLReportingHandler)SCLContext.getCurrent().get(SCLReportingHandler.REPORTING_HANDLER);
-
+
try {
-
+
CommandResult result = session.syncRequest(new WriteResultRequest<CommandResult>() {
-
+
@Override
public CommandResult perform(WriteGraph graph) throws DatabaseException {
SCLContext sclContext = SCLContext.getCurrent();
sclContext.put("graph", oldGraph);
sclContext.put(SCLReportingHandler.REPORTING_HANDLER, oldPrinter);
}
-
+
return null;
-
+
}
-
+
});
-
+
return result;
-
+
} catch (Throwable e) {
Logger.defaultLogError(e);
return new org.simantics.document.server.serverResponse.Error(e.getMessage());
}
-
+
}
-
+
};
}
public static AbstractEventHandler eventHandler2(ReadGraph graph, final Function fn) {
-
+
return new AbstractEventHandler() {
-
+
@Override
public CommandResult handle(final CommandContext parameters) {
-
+
final SCLReportingHandler printer = (SCLReportingHandler)SCLContext.getCurrent().get(SCLReportingHandler.REPORTING_HANDLER);
-
+
try {
-
+
SCLContext sclContext = SCLContext.getCurrent();
Object oldPrinter = sclContext.put(SCLReportingHandler.REPORTING_HANDLER, printer);
try {
}
return null;
-
+
} catch (Throwable e) {
Logger.defaultLogError(e);
return new org.simantics.document.server.serverResponse.Error(e.getMessage());
}
-
+
}
-
+
};
}
public static AbstractEventHandler eventHandler(ReadGraph graph, final Function fn) {
-
+
return new AbstractEventHandler() {
-
+
@Override
public CommandResult handle(final CommandContext parameters) {
-
+
final SCLReportingHandler printer = (SCLReportingHandler)SCLContext.getCurrent().get(SCLReportingHandler.REPORTING_HANDLER);
-
+
try {
String result = "";
-
+
SCLContext sclContext = SCLContext.getCurrent();
Object oldPrinter = sclContext.put(SCLReportingHandler.REPORTING_HANDLER, printer);
try {
} finally {
sclContext.put(SCLReportingHandler.REPORTING_HANDLER, oldPrinter);
}
-
+
return new SuccessResponse(result);
-
+
} catch (Throwable e) {
Logger.defaultLogError(e);
return new org.simantics.document.server.serverResponse.Error(e.getMessage());
}
-
+
}
-
+
};
}
return null;
}
-
+
public static CommandContextMutable putTuple(CommandContextMutable context, String key, Object tuple) {
List<Object> list = new ArrayList<Object>();
if (tuple instanceof Tuple) {
Collections.addAll(list, ((Tuple)tuple).toArray());
} else {
- list.add(tuple);
+ list.add(tuple);
}
context.putRow(key, list);
return context;
}
-
+
public static List<Object> getTuples(CommandContext context, String key) {
List<List<Object>> rows = context.getRows(key);
List<Object> tuples = new ArrayList<Object>();
}
return tuples;
}
-
+
public static String printContext(CommandContext context) {
return context.toString();
}
-
+
@SCLValue(type = "AbstractEventHandler")
public static AbstractEventHandler emptyEvent = new AbstractEventHandler() {
};
public static String sclStateKey(ReadGraph graph, Variable base, Variable self, String ref) throws DatabaseException {
-
+
String baseURI = base.getURI(graph);
-
+
String selfURI = self.getURI(graph);
-
+
String prefix = selfURI.substring(0, selfURI.indexOf(ProxyChildVariable.CONTEXT_BEGIN));
String suffix = selfURI.substring(selfURI.lastIndexOf(ProxyChildVariable.CONTEXT_END) + ProxyChildVariable.CONTEXT_END.length());
String stripped = prefix + suffix;
-
+
String relative = Variables.getRelativeRVI(baseURI, stripped);
-
+
return Variables.getRVI(relative, ref);
-
+
}
-
+
public static Variable sclStateVariable(ReadGraph graph, Variable base, Variable self, String ref) throws DatabaseException {
-
+
String id = sclStateKey(graph, base, self, ref);
Variable sclVar = base.getPossibleChild(graph, "__scl__");
if(sclVar == null) return null;
-
+
return sclVar.getPossibleProperty(graph, id);
-
+
}
-
+
public static Object sclStateValueOrDefault(ReadGraph graph, Variable base, Variable self, String ref, Object defaultValue) throws DatabaseException {
-
+
Variable stateVariable = sclStateVariable(graph, base, self, ref);
if (stateVariable != null) {
-
+
return stateVariable.getValue(graph);
-
+
} else {
-
+
String id = sclStateKey(graph, base, self, ref);
SCLRealm realm = SCLSessionManager.getOrCreateSCLRealm(base.getURI(graph) + "/__scl__");
realm.getConnection().setVariable(id, getSCLType(defaultValue), defaultValue);
-
+
return defaultValue;
-
+
}
}
-
+
public static void setSclStateValue(WriteGraph graph, Variable base, Variable self, String ref, Object value) throws DatabaseException {
-
+
String id = sclStateKey(graph, base, self, ref);
SCLRealm realm = SCLSessionManager.getOrCreateSCLRealm(base.getURI(graph)+"/__scl__");
realm.getConnection().setVariable(id, getSCLType(value), value);
realm.refreshVariablesSync();
-
+
}
-
+
public static Object projectComponentState(ReadGraph graph, Variable self, String ref, Object defaultValue) throws DatabaseException {
Resource project = Simantics.getProjectResource();
Variable component = self.getParent(graph);
Variable projectVariable = Variables.getVariable(graph, project);
return sclStateValueOrDefault(graph, projectVariable, component, ref, defaultValue);
}
-
+
public static void setProjectComponentState(WriteGraph graph, Variable self, String ref, Object value) throws DatabaseException {
Resource project = Simantics.getProjectResource();
Variable component = self.getParent(graph);
Variable projectVariable = Variables.getVariable(graph, project);
setSclStateValue(graph, projectVariable, component, ref, value);
}
-
+
private static Type getSCLType(Object value) throws DatabaseException {
Binding b = Bindings.getBindingUnchecked(value.getClass());
Datatype t = b.type();
public static String documentModelContributionLabel(ReadGraph graph, Variable var) throws DatabaseException {
return var.getName(graph);
}
-
+
public static Object getPropertyValueCached(ReadGraph graph, Variable variable, String name, Binding binding) throws DatabaseException {
Variable property = graph.syncRequest(new VariableProperty(variable, name));
return graph.syncRequest(new VariableValueWithBinding<Object>(property, binding));
return graph.syncRequest(new ParentExistsRequest(variable.getParent(graph)));
}
-
+
}
public static class PathExistsRequest extends VariableRead<Boolean> {
@Override
public Boolean perform(ReadGraph graph) throws DatabaseException {
-
+
Variable widget = variable.getParent(graph);
-
+
Boolean exists = widget.getPossiblePropertyValue(graph, "exists");
if (exists == null || !exists) return false;
-
+
if (!graph.syncRequest(new ParentExistsRequest(widget.getParent(graph)))) return false;
-
+
DocumentationResource DOC = DocumentationResource.getInstance(graph);
- Collection <Variable> cps = widget.getProperties(graph, DOC.Relations_parentRelation);
+ Collection <Variable> cps = widget.getProperties(graph, DocumentationResource.URIs.Relations_parentRelation);
for (Variable cp : cps) {
-
+
Connection conn = cp.getValue(graph);
- Variable otherCp = DocumentServerUtils.getPossibleOtherConnectionPoint(graph, cp, conn);
+ Variable otherCp = DocumentServerUtils.getPossibleChildConnectionPoint(graph, cp, conn);
if (otherCp != null) {
Variable parentWidget = otherCp.getParent(graph);
if (parentWidget.<Boolean>getPropertyValue(graph, "pathExists")) {
}
}
}
-
+
Resource type = widget.getType(graph);
return graph.isInheritedFrom(type, DOC.Components_ParentlessComponent) ||
(graph.isInheritedFrom(type, DOC.DocumentComponent) && cps.isEmpty());
}
- }
-
+ }
+
@SCLValue(type = "ReadGraph -> Resource -> Variable -> Boolean")
public static boolean pathExists(ReadGraph graph, Resource converter, Variable context) throws DatabaseException {
return graph.syncRequest(new PathExistsRequest(context));
}
-
-
+
}
\ No newline at end of file