Android Open Source - anode Runtime Native






From Project

Back to project page anode.

License

The source code is released under:

Apache License

If you think the Android project anode listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright 2011-2012 Paddy Byers/*from   w w  w .j  a  v  a  2  s . c o m*/
 *
 *   Licensed under the Apache License, Version 2.0 (the "License");
 *   you may not use this file except in compliance with the License.
 *   You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 *   Unless required by applicable law or agreed to in writing, software
 *   distributed under the License is distributed on an "AS IS" BASIS,
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *   See the License for the specific language governing permissions and
 *   limitations under the License.
 */

package org.meshpoint.anode;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;

import android.content.Context;
import android.util.Log;

/**
 * Wraps the native jni node.js library
 * This is a static class only
 * @author paddy
 */
final class RuntimeNative {
  
  private static String TAG = "anode::RuntimeNative";
  private static String RUNTIME_LIBRARY = "libjninode.so";
  private static String BRIDGE_LIBRARY = "bridge.node";
  
  static final int SIGINT  = 2;
  static final int SIGABRT = 6;
  static final int SIGKILL = 9;
  static final int SIGTERM = 15;
  
  /**
   * Initialise the native interface
   * @param ctx the Context associated with the invoking activity,
   * used to locate the assets
   * @throws IOException if there was a problem accessing the native library file
   * @throws UnsatisifiedLinkError if there was a problem initialising the native library
   */
  static void init(Context ctx, String[] argv) throws IOException {
    char sep = File.separatorChar;
    String packageName = ctx.getPackageName();
    
    // Example: `/data/data/org.mypackage.android/node_modules`
    // TODO: make the node dynamic library not depend on assumed /data/data filesystem structure
    String modulePath = sep + "data" + sep + "data" + sep + packageName + sep + "node_modules";
    String runtimePath = sep + "data" + sep + "data" + sep + packageName + sep + "app";
    
    try {
      extractLib(ctx, runtimePath, RUNTIME_LIBRARY);
      System.load(runtimePath + '/' + RUNTIME_LIBRARY);
      extractLib(ctx, modulePath, BRIDGE_LIBRARY);
      System.load(modulePath + '/' + BRIDGE_LIBRARY);
      Log.v(TAG, "init: loaded libraries: modulePath = " + modulePath);
      nodeInit(argv, modulePath);
    } catch(UnsatisfiedLinkError e) {
      Log.v(TAG, "init: unable to load library: " + e);
      throw e;
    } catch (IOException e) {
      Log.v(TAG, "init: unable to write library to file: " + e);
      throw e;
    }
  }
  
  /**
   * Initialise the native node runtime
   */
  static native void nodeInit(String[] argv, String modulePath);
  
  /**
   * Dispose the native node runtime
   */
  static native void nodeDispose();
  
  /**
   * Create a node.js isolate
   * @return isolate handle, or 0 if error
   */
  static native long create();
  
  /**
   * Launch the node.js runtime. The thread that enters this method
   * will block until the runtime exits.
   * It is critical that a thread blocked in this method is not forcibly
   * terminated by the calling application, except in the case that the
   * entire application is about to exit, or native library resources
   * may be leaked
   * @param isolate the isolate handle
   * @param argv the options and arguments to pass to the node.js invocation
   * @return 0 if successful, else an error code
   */
  static native int start(long isolate, String[] argv);
  
  /**
   * Stop a running runtime. An event will be delivered to the runtime that
   * simulates the delivery of the specified signal.
   * The supported events/signals are:
   * SIGINT:  interrupt a current blocked operation; may be caught by a handler
   *          in the runtime 
   * SIGTERM: request termination of the runtime; may be caught by a handler
   *          in the runtime 
   * SIGKILL: request termination of the runtime; may be caught by a handler
   *          in the runtime 
   * SIGABRT: forcibly terminate the runtime instance 
   * @param isolate the isolate handle
   * @param signum the signal number
   * @return 0 if successful, error code otherwise
   */
  static native int stop(long isolate, int signum);
  
  /**
   * Dispose a native isolate instance
   */
  static native void isolateDispose(long isolate);
  
  /**
   * Extract the library from assets to the default library location.
   * @throws IOException 
   */
  private static void extractLib(Context ctx, String path, String name) throws IOException {
    File dir, so, pkg;
    if(!(dir = new File(path)).exists())
      dir.mkdirs();
    
    if((so = new File(dir, name)).exists()) {
      /* check to see if this timestamp pre-dates
       * the current package */
      if((pkg = new File(ctx.getPackageResourcePath())).exists()) {
        if(pkg.lastModified() < so.lastModified()) {
          Log.v(TAG, "extractLib: library up to date");
          return;
        }
      }
      Log.v(TAG, "extractLib: library present but out of date");
      so.delete();
    }
    Log.v(TAG, "extractLib: copying library");
    InputStream in = ctx.getAssets().open(name);
    FileOutputStream out = new FileOutputStream(so);
    int read;
    byte[] buf = new byte[8192];
    while((read = in.read(buf)) != -1)
        out.write(buf, 0, read);
    in.close();
    out.flush();
    out.close();
    so.setExecutable(true);
  }
}




Java Source Code List

org.meshpoint.anode.AndroidContext.java
org.meshpoint.anode.AnodeActivity.java
org.meshpoint.anode.AnodeReceiver.java
org.meshpoint.anode.AnodeService.java
org.meshpoint.anode.Constants.java
org.meshpoint.anode.Isolate.java
org.meshpoint.anode.RuntimeNative.java
org.meshpoint.anode.Runtime.java
org.meshpoint.anode.bridge.BridgeNative.java
org.meshpoint.anode.bridge.Env.java
org.meshpoint.anode.bridge.Env.java
org.meshpoint.anode.bridge.FinalizeQueue.java
org.meshpoint.anode.bridge.ModuleClassLoader.java
org.meshpoint.anode.bridge.ModuleContext.java
org.meshpoint.anode.bridge.SynchronousOperation.java
org.meshpoint.anode.error.GeneralError.java
org.meshpoint.anode.error.InternalError.java
org.meshpoint.anode.error.ReferenceError.java
org.meshpoint.anode.error.ScriptError.java
org.meshpoint.anode.error.TypeError.java
org.meshpoint.anode.idl.BoundInterface.java
org.meshpoint.anode.idl.Callback.java
org.meshpoint.anode.idl.Dictionary.java
org.meshpoint.anode.idl.Dictionary.java
org.meshpoint.anode.idl.IDLInterface.java
org.meshpoint.anode.idl.IDLInterface.java
org.meshpoint.anode.idl.InterfaceManager.java
org.meshpoint.anode.idl.InterfaceManager.java
org.meshpoint.anode.idl.StubUtil.java
org.meshpoint.anode.idl.Types.java
org.meshpoint.anode.java.Array.java
org.meshpoint.anode.java.Base.java
org.meshpoint.anode.java.Base.java
org.meshpoint.anode.java.ByteArray.java
org.meshpoint.anode.java.DoubleArray.java
org.meshpoint.anode.java.IntegerArray.java
org.meshpoint.anode.java.LongArray.java
org.meshpoint.anode.java.ObjectArray.java
org.meshpoint.anode.js.JSArray.java
org.meshpoint.anode.js.JSByteArray.java
org.meshpoint.anode.js.JSDoubleArray.java
org.meshpoint.anode.js.JSFunction.java
org.meshpoint.anode.js.JSIntegerArray.java
org.meshpoint.anode.js.JSInterface.java
org.meshpoint.anode.js.JSLongArray.java
org.meshpoint.anode.js.JSObjectArray.java
org.meshpoint.anode.js.JSObject.java
org.meshpoint.anode.js.JSValue.java
org.meshpoint.anode.module.IModuleContext.java
org.meshpoint.anode.module.IModuleContext.java
org.meshpoint.anode.module.IModule.java
org.meshpoint.anode.module.IModule.java
org.meshpoint.anode.stub.DictionaryStubGenerator.java
org.meshpoint.anode.stub.PlatformStubGenerator.java
org.meshpoint.anode.stub.StubGenerator.java
org.meshpoint.anode.stub.UserStubGenerator.java
org.meshpoint.anode.stub.util.DirectoryClassLoader.java
org.meshpoint.anode.stub.util.StubGen.java
org.meshpoint.anode.type.ICollection.java
org.meshpoint.anode.type.IFunction.java
org.meshpoint.anode.type.IIndexedCollection.java
org.meshpoint.anode.util.AndroidLog.java
org.meshpoint.anode.util.ArgProcessor.java
org.meshpoint.anode.util.Log.java
org.meshpoint.anode.util.ModuleUtils.java
org.meshpoint.anode.util.PrintStreamLog.java
org.meshpoint.anode.util.TarExtractor.java
org.meshpoint.anode.util.ZipExtractor.java
org.w3c.dom.Array.java
org.w3c.dom.Array.java
org.w3c.dom.ByteArray.java
org.w3c.dom.ByteArray.java
org.w3c.dom.DoubleArray.java
org.w3c.dom.DoubleArray.java
org.w3c.dom.IntegerArray.java
org.w3c.dom.IntegerArray.java
org.w3c.dom.LongArray.java
org.w3c.dom.LongArray.java
org.w3c.dom.ObjectArray.java
org.w3c.dom.ObjectArray.java
org.w3c.dom.PrimitiveArray.java
org.w3c.dom.PrimitiveArray.java