All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.snapscript.core.link.FutureStatement Maven / Gradle / Ivy

package org.snapscript.core.link;

import java.util.concurrent.FutureTask;

import org.snapscript.core.Execution;
import org.snapscript.core.Statement;
import org.snapscript.core.constraint.Constraint;
import org.snapscript.core.error.InternalStateException;
import org.snapscript.core.module.Path;
import org.snapscript.core.scope.Scope;

public class FutureStatement extends Statement {
   
   private final FutureTask result;
   private final Path path;
   
   public FutureStatement(FutureTask result, Path path) {
      this.result = result;
      this.path = path;
   }

   @Override
   public void create(Scope scope) throws Exception {
      Statement definition = result.get();
      
      if(definition == null) {
         throw new InternalStateException("Could not define '" + path + "'");
      }
      definition.create(scope);
   }
   
   @Override
   public boolean define(Scope scope) throws Exception {
      Statement definition = result.get();
      
      if(definition == null) {
         throw new InternalStateException("Could not compile '" + path + "'");
      }
      return definition.define(scope);
   }
   
   @Override
   public Execution compile(Scope scope, Constraint returns) throws Exception {
      Statement definition = result.get();
      
      if(definition == null) {
         throw new InternalStateException("Could not validate '" + path + "'");
      }
      return definition.compile(scope, returns);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy