1 package org.simantics.document.server.request;
3 import java.util.Collections;
6 import org.simantics.databoard.Bindings;
7 import org.simantics.db.ReadGraph;
8 import org.simantics.db.Resource;
9 import org.simantics.db.common.procedure.adapter.TransientCacheListener;
10 import org.simantics.db.common.request.IndexRoot;
11 import org.simantics.db.common.request.PossibleTypedParent;
12 import org.simantics.db.common.request.UnaryRead;
13 import org.simantics.db.exception.DatabaseException;
14 import org.simantics.db.layer0.scl.AbstractExpressionCompilationContext;
15 import org.simantics.db.layer0.scl.AbstractExpressionCompilationRequest;
16 import org.simantics.db.layer0.util.RuntimeEnvironmentRequest2;
17 import org.simantics.db.layer0.variable.Variable;
18 import org.simantics.document.base.ontology.DocumentationResource;
19 import org.simantics.document.server.request.ServerSCLValueRequest.CompilationContext;
20 import org.simantics.layer0.Layer0;
21 import org.simantics.scl.compiler.common.names.Name;
22 import org.simantics.scl.compiler.constants.StringConstant;
23 import org.simantics.scl.compiler.elaboration.expressions.EApply;
24 import org.simantics.scl.compiler.elaboration.expressions.EConstant;
25 import org.simantics.scl.compiler.elaboration.expressions.ELiteral;
26 import org.simantics.scl.compiler.elaboration.expressions.EVariable;
27 import org.simantics.scl.compiler.elaboration.expressions.Expression;
28 import org.simantics.scl.compiler.elaboration.modules.SCLValue;
29 import org.simantics.scl.compiler.environment.Environment;
30 import org.simantics.scl.compiler.environment.Environments;
31 import org.simantics.scl.compiler.environment.specification.EnvironmentSpecification;
32 import org.simantics.scl.compiler.runtime.RuntimeEnvironment;
33 import org.simantics.scl.compiler.top.SCLExpressionCompilationException;
34 import org.simantics.scl.compiler.types.Type;
35 import org.simantics.scl.compiler.types.Types;
36 import org.simantics.scl.compiler.types.kinds.Kinds;
37 import org.simantics.scl.runtime.SCLContext;
38 import org.simantics.scl.runtime.function.Function1;
39 import org.simantics.structural2.scl.ComponentTypeProperty;
40 import org.simantics.structural2.scl.FindPossibleComponentTypeRequest;
41 import org.simantics.structural2.scl.ReadComponentTypeInterfaceRequest;
42 import org.simantics.utils.datastructures.Pair;
43 import org.slf4j.Logger;
44 import org.slf4j.LoggerFactory;
46 public class ServerSCLValueRequest extends AbstractExpressionCompilationRequest<CompilationContext, Object> {
48 private final Pair<Resource,Resource> componentTypeAndRoot;
49 private final Resource literal;
50 protected String possibleExpectedValueType;
52 public static class CompilationContext extends AbstractExpressionCompilationContext {
53 public final Map<String, ComponentTypeProperty> propertyMap;
55 public CompilationContext(RuntimeEnvironment runtimeEnvironment,
56 Map<String, ComponentTypeProperty> propertyMap) {
57 super(runtimeEnvironment);
58 this.propertyMap = propertyMap;
62 private ServerSCLValueRequest(Pair<Resource,Resource> componentTypeAndRoot, Resource literal, String possibleExpectedValueType) {
63 assert(literal != null);
64 this.literal = literal;
65 this.componentTypeAndRoot = componentTypeAndRoot;
66 this.possibleExpectedValueType = possibleExpectedValueType;
69 public ServerSCLValueRequest(ReadGraph graph, Variable context) throws DatabaseException {
70 this(getComponentTypeAndRoot(graph, context), context.getRepresents(graph), resolveExpectedValueType(graph, context.getPredicateResource(graph)));
73 public ServerSCLValueRequest(ReadGraph graph, Resource s, Resource o, Resource p) throws DatabaseException {
74 this(getComponentTypeAndRoot(graph, s, o), o, resolveExpectedValueType(graph, p));
77 private static Pair<Resource,Resource> getComponentTypeAndRoot(ReadGraph graph, Variable property) throws DatabaseException {
78 Variable parent = property.getParent(graph);
79 Resource represents = parent.getRepresents(graph);
80 if(represents != null) {
81 Resource type = graph.syncRequest(new FindPossibleComponentTypeRequest(represents));
83 Resource root = graph.syncRequest(new IndexRoot(type));
84 return Pair.make(type, root);
87 parent = parent.getParent(graph);
88 Resource root = graph.syncRequest(new IndexRoot(property.getRepresents(graph)));
89 return Pair.make(parent.getType(graph), root);
92 private static Pair<Resource,Resource> getComponentTypeAndRoot(ReadGraph graph, Resource component, Resource literal) throws DatabaseException {
93 if(component != null) {
94 Resource type = graph.syncRequest(new FindPossibleComponentTypeRequest(component));
96 Resource root = graph.syncRequest(new IndexRoot(type));
97 // System.err.println("getComponentTypeAndRoot3 " + graph.getPossibleURI(component) + " => " + graph.getPossibleURI(type) + " " + graph.getPossibleURI(root));
98 return Pair.make(type, root);
100 Resource doc = graph.syncRequest(new PossibleTypedParent(component, DocumentationResource.getInstance(graph).Document));
102 Resource componentType = graph.getSingleType(doc);
103 Resource root = graph.syncRequest(new IndexRoot(doc));
104 return Pair.make(componentType, root);
106 System.err.println("component = " + component);
107 Resource root = graph.syncRequest(new IndexRoot(component));
108 // Resource componentType = graph.getSingleType(doc);
109 return Pair.make(null, root);
112 // TODO: For Antti to consider and fix later
113 // Introduced to handle procedural user components where component == null
114 } else if (literal != null) {
115 Resource root = graph.syncRequest(new IndexRoot(literal));
116 return Pair.make(null, root);
118 throw new DatabaseException("Couldn't resolve component type and root for component == null && literal == null");
122 public static Object compileAndEvaluate(ReadGraph graph, Variable context) throws DatabaseException {
123 SCLContext sclContext = SCLContext.getCurrent();
124 Object oldGraph = sclContext.get("graph");
126 Function1<Object,Object> exp = compile(graph, context);
127 sclContext.put("graph", graph);
128 return exp.apply(context);
129 } catch (DatabaseException e) {
130 throw (DatabaseException)e;
131 } catch (Throwable t) {
132 throw new DatabaseException(t);
134 sclContext.put("graph", oldGraph);
138 public static Function1<Object, Object> compile(ReadGraph graph, Variable context) throws DatabaseException {
139 return graph.syncRequest(new ServerSCLValueRequest(graph, context), TransientCacheListener.instance());
142 public static Function1<Object, Object> compile(ReadGraph graph, Resource s, Resource o, Resource p) throws DatabaseException {
143 return graph.syncRequest(new ServerSCLValueRequest(graph, s, o, p), TransientCacheListener.instance());
147 protected String getExpressionText(ReadGraph graph)
148 throws DatabaseException {
149 Layer0 L0 = Layer0.getInstance(graph);
150 return graph.getRelatedValue(literal, L0.SCLValue_expression, Bindings.STRING);
153 protected RuntimeEnvironmentRequest2 getRuntimeEnvironmentRequest(Resource componentType, Resource indexRoot) {
154 return new RuntimeEnvironmentRequest2(componentType, indexRoot) {
156 protected void fillEnvironmentSpecification(
157 EnvironmentSpecification environmentSpecification) {
163 protected CompilationContext getCompilationContext(ReadGraph graph)
164 throws DatabaseException {
165 return graph.syncRequest(new UnaryRead<Pair<Resource,Resource>,CompilationContext>(componentTypeAndRoot) {
167 public CompilationContext perform(ReadGraph graph)
168 throws DatabaseException {
169 RuntimeEnvironment runtimeEnvironment = graph.syncRequest(getRuntimeEnvironmentRequest(parameter.first, parameter.second));
170 Map<String, ComponentTypeProperty> propertyMap;
171 if (parameter.first != null) {
173 graph.syncRequest(new ReadComponentTypeInterfaceRequest(parameter.first, runtimeEnvironment.getEnvironment()),
174 TransientCacheListener.<Map<String, ComponentTypeProperty>>instance());
176 // TODO: Antti to consider
177 // To handle procedural user components
178 propertyMap = Collections.emptyMap();
180 return new CompilationContext(runtimeEnvironment, propertyMap);
186 protected Type getContextVariableType() {
190 private static Expression accessInputVariable(Environment environment,
191 org.simantics.scl.compiler.elaboration.expressions.Variable contextVariable) {
192 SCLValue variableParentFunction = environment.getValue(VARIABLE_PARENT);
193 return new EApply(new EConstant(variableParentFunction),
194 new EApply(new EConstant(variableParentFunction),
195 new EVariable(contextVariable)));
198 protected static Name PROPERTY_VALUE_CACHED = Name.create("Document/All", "propertyValueCached");
200 protected static Expression getProperty(Environment environment, Expression variable, String propertyName, Type type) {
202 new EConstant(environment.getValue(FROM_DYNAMIC), type),
204 new EConstant(environment.getValue(PROPERTY_VALUE_CACHED), Types.DYNAMIC),
206 new ELiteral(new StringConstant(propertyName))));
209 protected static Expression getPropertyFlexible(Environment environment, Expression variable, String propertyName, Type type) {
210 return makeTypeFlexible(environment, getProperty(environment, variable, propertyName, type), type);
213 protected static Expression standardGetProperty(
214 Environment environment,
215 org.simantics.scl.compiler.elaboration.expressions.Variable contextVariable,
218 return getPropertyFlexible(environment, accessInputVariable(environment, contextVariable), name, type);
223 protected Expression getVariableAccessExpression(
225 CompilationContext context,
226 org.simantics.scl.compiler.elaboration.expressions.Variable contextVariable,
227 String name) throws DatabaseException {
228 ComponentTypeProperty property = context.propertyMap.get(name);
230 return standardGetProperty(
231 context.runtimeEnvironment.getEnvironment(),
234 property.type == null ? Types.metaVar(Kinds.STAR) : property.type);
236 return getSpecialVariableAccessExpression(graph, context, contextVariable, name);
239 protected Expression getSpecialVariableAccessExpression(ReadGraph graph,
240 CompilationContext context,
241 org.simantics.scl.compiler.elaboration.expressions.Variable contextVariable,
242 String name) throws DatabaseException {
243 if(name.equals("input")) {
244 Environment environment = context.runtimeEnvironment.getEnvironment();
245 return accessInputVariable(environment, contextVariable);
247 else if(name.equals("self"))
248 return new EVariable(contextVariable);
254 protected Type getExpectedType(ReadGraph graph, CompilationContext context) throws DatabaseException {
255 return super.getExpectedType(graph, context);
260 public int hashCode() {
261 return 31*(31*getClass().hashCode() + literal.hashCode()) + componentTypeAndRoot.hashCode();
265 public boolean equals(Object obj) {
268 if(obj == null || obj.getClass() != getClass())
270 ServerSCLValueRequest other = (ServerSCLValueRequest)obj;
271 return literal.equals(other.literal) && componentTypeAndRoot.equals(other.componentTypeAndRoot);
274 public static Function1<Object, Object> validate(ReadGraph graph, Variable context) throws DatabaseException {
275 return graph.syncRequest(new ServerSCLValueValidationRequest(graph, context), TransientCacheListener.instance());
278 public static class ServerSCLValueValidationRequest extends ServerSCLValueRequest {
280 private static final Logger LOGGER = LoggerFactory.getLogger(ServerSCLHandlerValueRequest.class);
282 public ServerSCLValueValidationRequest(ReadGraph graph, Variable context) throws DatabaseException {
283 super(graph, context);
287 protected Type getExpectedType(ReadGraph graph, CompilationContext context) throws DatabaseException {
288 if(possibleExpectedValueType != null) {
290 return Environments.getType(context.runtimeEnvironment.getEnvironment(), possibleExpectedValueType);
291 } catch (SCLExpressionCompilationException e) {
292 LOGGER.error("Could not get type for " + String.valueOf(possibleExpectedValueType), e);
295 return super.getExpectedType(graph, context);