/* * Copyright 2014 NAVER Corp. * * 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.navercorp.pinpoint.common.util; /** * @author hyungil.jeong */ public final class ClassUtils { private static final Object CLASS_NOT_LOADED = null; private static final char PACKAGE_SEPARATOR = '.'; private ClassUtils() { } public static boolean isLoaded(String name) { return isLoaded(name, ClassLoaderUtils.getDefaultClassLoader()); } public static boolean isLoaded(String name, ClassLoader classLoader) { if (name == null) { throw new IllegalArgumentException("name must not be null"); } ClassLoader classLoaderToUse = classLoader; if (classLoaderToUse == null) { classLoaderToUse = ClassLoaderUtils.getDefaultClassLoader(); } try { return (classLoaderToUse.loadClass(name) != CLASS_NOT_LOADED); } catch (ClassNotFoundException ignore) { // Swallow } return false; } public static String getPackageName(String fqcn) { if (fqcn == null) { throw new IllegalArgumentException("fully-qualified class name must not be null"); } final int lastPackageSeparatorIndex = fqcn.lastIndexOf(PACKAGE_SEPARATOR); if (lastPackageSeparatorIndex == -1) { return ""; } return fqcn.substring(0, lastPackageSeparatorIndex); } }