Android Open Source - anode Interface Manager






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 ww.  jav a  2 s  . co 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.idl;

import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;

import org.meshpoint.anode.bridge.Env;
import org.meshpoint.anode.idl.IDLInterface.Attribute;
import org.meshpoint.anode.idl.IDLInterface.Operation;

public class InterfaceManager {

  private static InterfaceManager mgr = new InterfaceManager(null, true);
  private ClassLoader classLoader;
  private boolean initClasses;
  private ArrayList<IDLInterface> interfaces;
  private HashMap<String, IDLInterface> nameMap;
  private HashMap<Class<?>, IDLInterface> classMap;
  
  /******************
   * public API
   ******************/
  
  public static InterfaceManager getInstance() { return mgr; }

  public InterfaceManager(ClassLoader classLoader, boolean initClasses) {
    this.classLoader = classLoader;
    this.initClasses = initClasses;
    interfaces = new ArrayList<IDLInterface>();
    nameMap = new HashMap<String, IDLInterface>();
    classMap = new HashMap<Class<?>, IDLInterface>();
  }
  
  ClassLoader getClassLoader() {
    return (classLoader != null) ? classLoader : Env.getCurrent().getClassLoader();
  }

  public synchronized IDLInterface getById(short id) {
    return interfaces.get(classId2Idx(id));
  }
  
  public synchronized IDLInterface getByName(String name) {
    IDLInterface result = nameMap.get(name);
    if(result != null)
      return result;
    
    try {
      Class<?> javaClass;
      if(initClasses)
        javaClass = Class.forName(name, true, getClassLoader());
      else
        javaClass = getClassLoader().loadClass(name);
      result = getByClass(javaClass);
    } catch (ClassNotFoundException e) {}
    return result;
  }
  
  public synchronized IDLInterface getByClass(Class<?> javaClass) {
    IDLInterface result = classMap.get(javaClass);
    if(result == null)
      result = loadClass(javaClass);
    return result;
  }

  public Class<?> getStubClass(IDLInterface iface, int mode) throws ClassNotFoundException {
    String stubClassName = StubUtil.getStubPackage(mode) + '.' + iface.getStubClassname();
    return getClassLoader().loadClass(stubClassName);
  }
  
  /****************
   * class loading
   ****************/
  public IDLInterface loadClass(Class<?> javaClass) {
    IDLInterface result;
    synchronized(this) {
      result = classMap.get(javaClass);
      if(result != null) return result;
    }
    result = defineClass(javaClass);
    return result;
  }

  private IDLInterface defineClass(Class<?> javaClass) {
    String canonicalName = javaClass.getCanonicalName().intern();
    /* terminate when at Object or some other framework class */
    if(canonicalName.startsWith("java.lang") || canonicalName.startsWith("org.meshpoint.anode."))
      return null;

    /* add to manager, and resolve parent */
    IDLInterface result = new IDLInterface(this, javaClass);
    result.modifiers = javaClass.getModifiers();
    if(javaClass.isInterface()) {
      Class<?>[] parentInterfaces = javaClass.getInterfaces();
      if(parentInterfaces.length == 1)
        result.parent = loadClass(parentInterfaces[0]);
    } else {
      Class<?> parentClass = javaClass.getSuperclass();
      if(parentClass != null)
        result.parent = loadClass(parentClass);
    }

    /* resolve fields */
    ArrayList<Attribute> attributeList = new ArrayList<Attribute>();
    for(Field f : javaClass.getDeclaredFields()) {
      int modifiers = f.getModifiers();
      if(!f.isSynthetic() && ((modifiers & Modifier.PUBLIC)) != 0) {
        int type = Types.fromJavaType(this, f.getGenericType());
        if(type != Types.TYPE_INVALID) {
          Attribute attr = result.new Attribute();
          attr.name = f.getName();
          attr.type = type;
          attr.modifiers = modifiers;
          attributeList.add(attr);
        }
      }
    }
    result.attributes = attributeList.toArray(new Attribute[attributeList.size()]);
    Arrays.sort(result.attributes);
    
    /* resolve methods */
    ArrayList<Operation> operationList = new ArrayList<Operation>();
    for(Method m : javaClass.getDeclaredMethods()) {
      int modifiers = m.getModifiers();
      if(!m.isSynthetic() && ((modifiers & Modifier.PUBLIC)) != 0) {
        int type = Types.fromJavaType(this, m.getGenericReturnType());
        if(type != Types.TYPE_INVALID) {
          Operation op = result.new Operation();
          op.name = m.getName();
          op.type = type;
          op.modifiers = modifiers;
          Type[] argTypes = m.getGenericParameterTypes();
          int argCount = argTypes.length;
          op.args = new int[argCount];
          for(int i = 0; i < argCount; i++) {
            type = Types.fromJavaType(this, argTypes[i]);
            if(type == Types.TYPE_INVALID) {
              op = null;
              break;
            }
            op.args[i] = type;
          }
          if(op != null)
            operationList.add(op);
        }
      }
    }
    result.operations = operationList.toArray(new Operation[operationList.size()]);
    Arrays.sort(result.operations);
    
    return result;
  }
  
  /**********************
   * private
   **********************/

  public static int classId2Idx(short classId) {
    return classId >> 1;
  }

  private static short idx2ClassId(int idx, boolean isDict) {
    return (short)((idx << 1) + (isDict ? 1 : 0));
  }

  synchronized short put(IDLInterface iface) {
    short result = iface.getId();
    if(result == -1) {
      result = idx2ClassId(interfaces.size(), iface.isValueType());
      interfaces.add(iface);
      nameMap.put(iface.getName(), iface);
      classMap.put(iface.getJavaClass(), iface);
    }
    return result;
  }
}




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