Package com.subgraph.vega.impl.scanner.modules.scripting

Source Code of com.subgraph.vega.impl.scanner.modules.scripting.ScriptCompiler

/*******************************************************************************
* Copyright (c) 2011 Subgraph.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     Subgraph - initial API and implementation
******************************************************************************/
package com.subgraph.vega.impl.scanner.modules.scripting;

import java.io.IOException;
import java.io.Reader;

import org.mozilla.javascript.Context;
import org.mozilla.javascript.RhinoException;
import org.mozilla.javascript.Script;
import org.mozilla.javascript.Scriptable;

public class ScriptCompiler {
 
  private final Scriptable parentScope;
 
  public ScriptCompiler(Scriptable scope) {
    this.parentScope = scope;
  }
 
  public boolean compile(ScriptFile scriptFile) {
    try {
      final Context cx = Context.enter();
      final Scriptable scope = newScope(cx);
      return compile(scriptFile, cx, scope);
    } finally {
      Context.exit();
    }
  }

  public boolean compile(ScriptFile scriptFile, Context cx, Scriptable scope) {
    try {
      final Scriptable compiledScript =  compileReader(scriptFile.createReader(), scriptFile.getPath(), cx, scope);
      if(compiledScript != null)  {
        scriptFile.setCompiledScript(compiledScript);
        return true;
      } else {
        return false;
      }
    } catch (IOException e) {
      scriptFile.setCompileFailed("I/O error compiling script "+ scriptFile.getPath() + ": "+ e.getMessage());
      return false;
    } catch (RhinoException e) {
      final String msg = "Failed to compile script "+ scriptFile.getPath();
      scriptFile.setCompileFailed(new RhinoExceptionFormatter(msg, e).toString());
      return false;
    } catch (Exception e) {
      scriptFile.setCompileFailed("Unexpected exception compiling script: "+ e);
      return false;
    }
  }
   
  public Scriptable compileReader(Reader r, String path, Context cx, Scriptable scriptScope) throws IOException {
    cx.setLanguageVersion(Context.VERSION_1_7);
    final Script script = cx.compileReader(r, path, 1, null);     
    script.exec(cx, scriptScope);
    return scriptScope;
  }
 
  public Scriptable newScope(Context cx) {
    final Scriptable scope = cx.newObject(parentScope);
    scope.setPrototype(parentScope);
    scope.setParentScope(null);
    return scope;
  }
}
TOP

Related Classes of com.subgraph.vega.impl.scanner.modules.scripting.ScriptCompiler

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.