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

org.snapscript.studio.agent.debug.ScopeExtractor Maven / Gradle / Ivy

There is a newer version: 1.4.6
Show newest version
package org.snapscript.studio.agent.debug;

import java.util.Collections;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.CopyOnWriteArraySet;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.AtomicReference;

import org.snapscript.core.Context;
import org.snapscript.core.ResourceManager;
import org.snapscript.core.scope.Scope;
import org.snapscript.studio.agent.ProcessMode;

public class ScopeExtractor implements ScopeBrowser {

   private final AtomicReference evaluate;
   private final ScopeNodeEvaluator evaluator;
   private final ScopeNodeTraverser traverser;
   private final AtomicBoolean execute;
   private final AtomicInteger counter;
   private final Set watch;
   private final Set local;
   private final Context context;
   private final String path;
   
   public ScopeExtractor(Context context, Scope scope, String path) {
      this.traverser = new ScopeNodeTraverser(context, scope);
      this.evaluator = new ScopeNodeEvaluator(context, scope);
      this.evaluate = new AtomicReference();
      this.watch = new CopyOnWriteArraySet();
      this.local = new CopyOnWriteArraySet();
      this.execute = new AtomicBoolean();
      this.counter = new AtomicInteger();
      this.context = context;
      this.path = path;
   }
   
   public ScopeContext build(boolean grabSource, boolean expandVariables) {
      int change = counter.get();   
      boolean refresh = execute.getAndSet(false);
      String expression = evaluate.get();
      ResourceManager manager = context.getManager();  
      String source = null;
      
      if(grabSource) {
         source = manager.getString(path);
      }
      if(expandVariables){
         Map> variables = traverser.expand(local);
         Map> evaluation = evaluator.expand(watch, expression, refresh);
        
         ScopeVariableTree tree = new ScopeVariableTree.Builder(change)
            .withLocal(variables)
            .withEvaluation(evaluation)
            .build();
         
         return new ScopeContext(tree, source);
      }
      ScopeVariableTree tree = new ScopeVariableTree.Builder(change)
         .withLocal(Collections.EMPTY_MAP)
         .withEvaluation(Collections.EMPTY_MAP)
         .build();
   
      return new ScopeContext(tree, source);
   }
   
   @Override
   public void browse(Set expand) {
      local.clear();
      local.addAll(expand);
      counter.getAndIncrement();
   }
   
   @Override
   public void evaluate(Set expand, String expression) {
      evaluate(expand, expression, false);
   }

   @Override
   public void evaluate(Set expand, String expression, boolean refresh) {
      watch.clear();
      watch.addAll(expand);
      evaluate.set(expression);
      execute.set(refresh); // should we execute same expression again
      counter.getAndIncrement();
   }
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy