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

org.snapscript.core.ScopeMerger Maven / Gradle / Ivy

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

public class ScopeMerger {

   private final PathConverter converter;
   private final Context context;
   
   public ScopeMerger(Context context) {
      this.converter = new FilePathConverter();
      this.context = context;
   }
   
   public Scope merge(Model model, String name) {
      Path path = converter.createPath(name);
      
      if(path == null) {
         throw new InternalStateException("Module '" +name +"' does not have a path"); 
      }
      return merge(model, name, path);
   }
   
   public Scope merge(Model model, String name, Path path) {
      ModuleRegistry registry = context.getRegistry();
      Module module = registry.addModule(name, path);
      
      if(module == null) {
         throw new InternalStateException("Module '" +name +"' not found");
      }
      return new ModelScope(model, module);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy