source code formatting.
[utils] / support / general / src / main / java / org / wamblee / general / ClassLoaderUtils.java
1 /*
2  * Copyright 2006 the original author or authors.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.general;
17
18 import java.io.File;
19 import java.io.IOException;
20
21 import java.lang.reflect.Method;
22
23 import java.net.URL;
24 import java.net.URLClassLoader;
25
26
27 /**
28  * Utility for working with the class loader. Based on the ClassPathHacker
29  * example found on the internet.
30  */
31 public class ClassLoaderUtils {
32     // No logging in this class to keep the required class libraries
33     // limited to the standard java classes. This allows use of the
34     // utilities in an environment with a very limited classpath. 
35     private static final String JAR_SUFFIX = ".jar";
36
37     /**
38      * Adds all jars in the given directory to the class path.
39      * @param aDirectory Directory.
40      * @throws IOException
41      */
42     public static void addJarsInDirectory(File aDirectory)
43         throws IOException {
44         System.out.println("directory '" + aDirectory + "'");
45
46         for (File aFile : aDirectory.listFiles()) {
47             System.out.println("Considering '" + aFile.getCanonicalPath() +
48                 "'");
49
50             if (aFile.getName().toLowerCase().endsWith(JAR_SUFFIX)) {
51                 System.out.println("Adding '" + aFile.getCanonicalPath() +
52                     "' to classpath.");
53                 addFile(aFile);
54             }
55         }
56     }
57
58     /**
59      * Adds a file to the classpath.
60      * @param aFilename Filename to add.
61      * @throws IOException
62      */
63     public static void addFile(String aFilename) throws IOException {
64         File f = new File(aFilename);
65         addFile(f);
66     }
67
68     /**
69      * Adds a file to the classpath.
70      * @param aFile File to add.
71      * @throws IOException
72      */
73     public static void addFile(File aFile) throws IOException {
74         addURL(aFile.toURL());
75     }
76
77     /**
78      * Adds a url to the classpath.
79      * @param aUrl Url to add.
80      * @throws IOException
81      */
82     public static void addURL(URL aUrl) throws IOException {
83         URLClassLoader sysloader = (URLClassLoader) ClassLoader.getSystemClassLoader();
84         Class sysclass = URLClassLoader.class;
85
86         try {
87             Method method = sysclass.getDeclaredMethod("addURL",
88                     new Class[] { URL.class });
89             method.setAccessible(true);
90             method.invoke(sysloader, new Object[] { aUrl });
91         } catch (Throwable t) {
92             t.printStackTrace();
93             throw new IOException(
94                 "Error, could not add URL to system classloader");
95         }
96     }
97 }