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

org.snapscript.compile.assemble.Program Maven / Gradle / Ivy

There is a newer version: 1.4.6
Show newest version
package org.snapscript.compile.assemble;

import org.snapscript.compile.Executable;
import org.snapscript.core.Context;
import org.snapscript.core.EmptyModel;
import org.snapscript.core.Model;
import org.snapscript.core.Path;
import org.snapscript.core.ProgramValidator;
import org.snapscript.core.Scope;
import org.snapscript.core.ScopeMerger;
import org.snapscript.core.Statement;
import org.snapscript.core.error.ErrorHandler;
import org.snapscript.core.link.Package;
import org.snapscript.core.link.PackageDefinition;

public class Program implements Executable{
   
   private final ScopeMerger merger;
   private final Package library;
   private final Context context;
   private final Model model;
   private final String name;
   private final Path path;
   
   public Program(Context context, Package library, Path path, String name){
      this.merger = new ScopeMerger(context);
      this.model = new EmptyModel();
      this.library = library;
      this.context = context;
      this.path = path;
      this.name = name;
   }
   
   @Override
   public void execute() throws Exception {
      execute(model);
   }
   
   @Override
   public void execute(Model model) throws Exception{ 
      Scope scope = merger.merge(model, name, path);
      PackageDefinition definition = library.define(scope); // define all types
      Statement statement = definition.compile(scope, null); // compile tree
      ProgramValidator validator = context.getValidator();
      ErrorHandler handler = context.getHandler();
      
      try {
         validator.validate(context); // validate program
         statement.execute(scope);
      } catch(Throwable cause) {
         handler.throwExternalError(scope, cause);
      }
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy