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

com.querydsl.codegen.utils.support.ClassUtils Maven / Gradle / Ivy

/*
 * Copyright 2010, Mysema Ltd
 *
 * 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 com.querydsl.codegen.utils.support;

import java.lang.reflect.Modifier;
import java.util.*;

/**
 * @author tiwe
 */
public final class ClassUtils {

  private static final Set JAVA_LANG = Collections.singleton("java.lang");

  public static String getName(Class cl) {
    return getName(cl, JAVA_LANG, Collections.emptySet());
  }

  public static String getFullName(Class cl) {
    if (cl.isArray()) {
      return getFullName(cl.getComponentType()) + "[]";
    }
    final String name = cl.getName();
    if (name.indexOf('$') > 0) {
      return getFullName(cl.getDeclaringClass()) + "." + cl.getSimpleName();
    }
    return name;
  }

  public static String getPackageName(Class cl) {
    while (cl.isArray()) {
      cl = cl.getComponentType();
    }
    final String name = cl.getName();
    final int i = name.lastIndexOf('.');
    if (i > 0) {
      return name.substring(0, i);
    } else {
      return "";
    }
  }

  public static String getName(Class cl, Set packages, Set classes) {
    if (cl.isArray()) {
      return getName(cl.getComponentType(), packages, classes) + "[]";
    }
    final String canonicalName = cl.getName().replace('$', '.');
    final int i = cl.getName().lastIndexOf('.');
    if (classes.contains(canonicalName)) {
      return cl.getSimpleName();
    } else if (cl.getEnclosingClass() != null) {
      return getName(cl.getEnclosingClass(), packages, classes) + "." + cl.getSimpleName();
    } else if (i == -1) {
      return canonicalName;
    } else if (packages.contains(canonicalName.substring(0, i))) {
      return canonicalName.substring(i + 1);
    } else {
      return canonicalName;
    }
  }

  public static Class normalize(Class clazz) {
    if (List.class.isAssignableFrom(clazz)) {
      return List.class;
    } else if (Set.class.isAssignableFrom(clazz)) {
      return Set.class;
    } else if (Collection.class.isAssignableFrom(clazz)) {
      return Collection.class;
    } else if (Map.class.isAssignableFrom(clazz)) {
      return Map.class;
      // check for Easy Mock or Byte Buddy generated classes
    } else if (clazz.getName().contains("$$") || clazz.getName().contains("$ByteBuddy$")) {
      Class zuper = clazz.getSuperclass();
      if (zuper != null && !Object.class.equals(zuper)) {
        return zuper;
      }
    } else if (!Modifier.isPublic(clazz.getModifiers())) {
      return normalize(clazz.getSuperclass());
    }
    return clazz;
  }

  private ClassUtils() {}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy