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

com.contrastsecurity.cassandra.migration.utils.ClassUtils Maven / Gradle / Ivy

/**
 * Copyright 2010-2015 Axel Fontaine
 * 

* 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.contrastsecurity.cassandra.migration.utils; import com.contrastsecurity.cassandra.migration.CassandraMigrationException; import java.io.UnsupportedEncodingException; import java.net.URLDecoder; import java.security.ProtectionDomain; import java.util.ArrayList; import java.util.List; /** * Utility methods for dealing with classes. */ public class ClassUtils { /** * Prevents instantiation. */ private ClassUtils() { // Do nothing } /** * Creates a new instance of this class. * * @param className The fully qualified name of the class to instantiate. * @param classLoader The ClassLoader to use. * @param The type of the new instance. * @return The new instance. * @throws Exception Thrown when the instantiation failed. */ @SuppressWarnings({"unchecked"}) // Must be synchronized for the Maven Parallel Junit runner to work public static synchronized T instantiate(String className, ClassLoader classLoader) throws Exception { return (T) Class.forName(className, true, classLoader).newInstance(); } /** * Instantiate all these classes. * * @param classes A fully qualified class names to instantiate. * @param classLoader The ClassLoader to use. * @param The common type for all classes. * @return The list of instances. */ public static List instantiateAll(String[] classes, ClassLoader classLoader) { List clazzes = new ArrayList(); for (String clazz : classes) { if (StringUtils.hasLength(clazz)) { try { clazzes.add(ClassUtils.instantiate(clazz, classLoader)); } catch (Exception e) { throw new CassandraMigrationException("Unable to instantiate class: " + clazz, e); } } } return clazzes; } /** * Determine whether the {@link Class} identified by the supplied name is present * and can be loaded. Will return {@code false} if either the class or * one of its dependencies is not present or cannot be loaded. * * @param className the name of the class to check * @param classLoader The ClassLoader to use. * @return whether the specified class is present */ public static boolean isPresent(String className, ClassLoader classLoader) { try { classLoader.loadClass(className); return true; } catch (Throwable ex) { // Class or one of its dependencies is not present... return false; } } /** * Computes the short name (name without package) of this class. * * @param aClass The class to analyse. * @return The short name. */ public static String getShortName(Class aClass) { String name = aClass.getName(); return name.substring(name.lastIndexOf(".") + 1); } /** * Retrieves the physical location on disk of this class. * * @param aClass The class to get the location for. * @return The absolute path of the .class file. */ public static String getLocationOnDisk(Class aClass) { try { ProtectionDomain protectionDomain = aClass.getProtectionDomain(); if (protectionDomain == null) { //Android return null; } String url = protectionDomain.getCodeSource().getLocation().getPath(); return URLDecoder.decode(url, "UTF-8"); } catch (UnsupportedEncodingException e) { //Can never happen. return null; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy