Package org.stjs.generator.utils

Source Code of org.stjs.generator.utils.ClassUtils

/**
*  Copyright 2011 Alexandru Craciun, Eyal Kaspi
*
*  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.stjs.generator.utils;

import java.lang.annotation.Annotation;
import java.util.regex.Pattern;

import org.stjs.generator.JavascriptClassGenerationException;
import org.stjs.javascript.annotation.STJSBridge;

public final class ClassUtils {
  /**
   * these are packages that don't have the annotation but are considered as bridges
   */
  private static final Pattern IMPLICIT_BRIDGE = Pattern.compile("java\\.lang.*|org\\.junit.*");

  // private static Map<Class<?>, String> primitiveArrayId;

  private ClassUtils() {
    //
  }

  public static Class<?> getClazz(ClassLoader builtProjectClassLoader, String className) {
    try {
      return builtProjectClassLoader.loadClass(className);
    }
    catch (ClassNotFoundException e) {
      throw new JavascriptClassGenerationException(className, "Cannot load class:" + e);
    }
  }

  @SuppressWarnings("unchecked")
  public static boolean isBridge(ClassLoader builtProjectClassLoader, Class<?> clazz) {
    boolean ok = hasAnnotation(clazz, (Class<? extends Annotation>) getClazz(builtProjectClassLoader, STJSBridge.class.getName()));
    if (ok) {
      return ok;
    }
    if (IMPLICIT_BRIDGE.matcher(clazz.getName()).matches()) {
      return true;
    }
    return false;
  }

  public static boolean hasAnnotation(Class<?> clazz, Class<? extends Annotation> annotationClass) {
    return getAnnotation(clazz, annotationClass) != null;
  }

  public static <T extends Annotation> T getAnnotation(Class<?> clazz, Class<T> annotationClass) {
    if (clazz == null) {
      return null;
    }
    // TODO : cache?
    T ann = clazz.getAnnotation(annotationClass);
    if (ann != null) {
      return ann;
    }

    if (clazz.getPackage() == null) {
      return null;
    }

    return clazz.getPackage().getAnnotation(annotationClass);
  }

  public static String getPropertiesFileName(String className) {
    return className.replace('.', '/') + ".stjs";
  }

}
TOP

Related Classes of org.stjs.generator.utils.ClassUtils

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.