ClassLoaderUtils.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *     http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */

  17. package org.apache.commons.lang3;

  18. import java.net.URL;
  19. import java.net.URLClassLoader;
  20. import java.util.Arrays;
  21. import java.util.Objects;

  22. /**
  23.  * Helps work with {@link ClassLoader}.
  24.  *
  25.  * @since 3.10
  26.  */
  27. public class ClassLoaderUtils {

  28.     private static final URL[] EMPTY_URL_ARRAY = {};

  29.     /**
  30.      * Gets the system class loader's URLs, if any.
  31.      *
  32.      * @return the system class loader's URLs, if any.
  33.      * @since 3.13.0
  34.      */
  35.     public static URL[] getSystemURLs() {
  36.         return getURLs(ClassLoader.getSystemClassLoader());
  37.     }

  38.     /**
  39.      * Gets the current thread's context class loader's URLs, if any.
  40.      *
  41.      * @return the current thread's context class loader's URLs, if any.
  42.      * @since 3.13.0
  43.      */
  44.     public static URL[] getThreadURLs() {
  45.         return getURLs(Thread.currentThread().getContextClassLoader());
  46.     }

  47.     private static URL[] getURLs(final ClassLoader cl) {
  48.         return cl instanceof URLClassLoader ? ((URLClassLoader) cl).getURLs() : EMPTY_URL_ARRAY;
  49.     }

  50.     /**
  51.      * Converts the given class loader to a String calling {@link #toString(URLClassLoader)}.
  52.      *
  53.      * @param classLoader to URLClassLoader to convert.
  54.      * @return the formatted string.
  55.      */
  56.     public static String toString(final ClassLoader classLoader) {
  57.         if (classLoader instanceof URLClassLoader) {
  58.             return toString((URLClassLoader) classLoader);
  59.         }
  60.         return Objects.toString(classLoader);
  61.     }

  62.     /**
  63.      * Converts the given URLClassLoader to a String in the format {@code "URLClassLoader.toString() + [URL1, URL2, ...]"}.
  64.      *
  65.      * @param classLoader to URLClassLoader to convert.
  66.      * @return the formatted string.
  67.      */
  68.     public static String toString(final URLClassLoader classLoader) {
  69.         return classLoader != null ? classLoader + Arrays.toString(classLoader.getURLs()) : "null";
  70.     }

  71.     /**
  72.      * Make private in 4.0.
  73.      *
  74.      * @deprecated TODO Make private in 4.0.
  75.      */
  76.     @Deprecated
  77.     public ClassLoaderUtils() {
  78.         // empty
  79.     }
  80. }