|
| 1 | + |
| 2 | +import java.net.URLClassLoader; |
| 3 | +import java.net.URL; |
| 4 | +import java.net.URI; |
| 5 | +import java.net.URISyntaxException; |
| 6 | +import java.net.URLConnection; |
| 7 | +import java.io.IOException; |
| 8 | +import java.io.File; |
| 9 | +import java.nio.file.Paths; |
| 10 | +import java.util.ArrayList; |
| 11 | +import java.io.InputStream; |
| 12 | +import java.io.FileOutputStream; |
| 13 | + |
| 14 | +public class InternalClassLoader extends URLClassLoader { |
| 15 | + public InternalClassLoader(String name, ClassLoader parent) { |
| 16 | + super(name, new URL[0], parent); |
| 17 | + try { |
| 18 | + System.out.println(getScriptPath()); |
| 19 | + } catch (Exception e) {} |
| 20 | + } |
| 21 | + |
| 22 | + private boolean isJarsLoaded = false; |
| 23 | + |
| 24 | + public synchronized Class loadClass(String name) throws ClassNotFoundException { |
| 25 | + System.out.println("Class " + name); |
| 26 | + if (!isJarsLoaded) { |
| 27 | + try { |
| 28 | + add(new URL("https://repo1.maven.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar")); |
| 29 | + } catch (Exception e) {e.printStackTrace();} |
| 30 | + isJarsLoaded = true; |
| 31 | + } |
| 32 | + return super.loadClass(name); |
| 33 | + } |
| 34 | + |
| 35 | + |
| 36 | + public static String getScriptPath() { |
| 37 | + try { |
| 38 | + return new File(InternalClassLoader.class.getProtectionDomain().getCodeSource().getLocation().getPath()).getCanonicalPath(); |
| 39 | + } catch (IOException e) { |
| 40 | + e.printStackTrace(); |
| 41 | + throw new RuntimeException("Can't find source file"); |
| 42 | + } |
| 43 | + } |
| 44 | + |
| 45 | + public InternalClassLoader(ClassLoader parent) { |
| 46 | + this("classpath", parent); |
| 47 | + } |
| 48 | + |
| 49 | + public InternalClassLoader() { |
| 50 | + this(Thread.currentThread().getContextClassLoader()); |
| 51 | + } |
| 52 | + |
| 53 | + public String downloadFromURL(URL url) throws IOException { |
| 54 | + InputStream is = null; |
| 55 | + FileOutputStream fos = null; |
| 56 | + String localFilename = url.toString().substring(url.toString().lastIndexOf("/")+1, url.toString().length()); |
| 57 | + String tempDir = System.getProperty("java.io.tmpdir"); |
| 58 | + String outputPath = tempDir + "/" + localFilename; |
| 59 | + System.out.printf("Downloading %s to %s\n", url, outputPath); |
| 60 | + |
| 61 | + try { |
| 62 | + //connect |
| 63 | + URLConnection urlConn = url.openConnection(); |
| 64 | + |
| 65 | + //get inputstream from connection |
| 66 | + is = urlConn.getInputStream(); |
| 67 | + fos = new FileOutputStream(outputPath); |
| 68 | + |
| 69 | + // 4KB buffer |
| 70 | + byte[] buffer = new byte[4096]; |
| 71 | + int length; |
| 72 | + |
| 73 | + // read from source and write into local file |
| 74 | + while ((length = is.read(buffer)) > 0) { |
| 75 | + fos.write(buffer, 0, length); |
| 76 | + } |
| 77 | + return outputPath; |
| 78 | + } finally { |
| 79 | + try { |
| 80 | + if (is != null) { |
| 81 | + is.close(); |
| 82 | + } |
| 83 | + } finally { |
| 84 | + if (fos != null) { |
| 85 | + fos.close(); |
| 86 | + } |
| 87 | + } |
| 88 | + System.out.println("Downloading done"); |
| 89 | + } |
| 90 | + } |
| 91 | + |
| 92 | + void add(URL url) { |
| 93 | + try { |
| 94 | + URI uri = url.toURI(); |
| 95 | + if (uri.getScheme().equals("https")) { |
| 96 | + System.out.println("scheme https"); |
| 97 | + url = new File(downloadFromURL(url)).toURI().toURL(); |
| 98 | + System.out.println(url); |
| 99 | + } |
| 100 | + System.out.println("aaaaaaaaaa"); |
| 101 | + |
| 102 | + System.out.println(url); |
| 103 | + addURL(url); |
| 104 | + |
| 105 | + } |
| 106 | + catch (URISyntaxException e) {e.printStackTrace();} |
| 107 | + catch (IOException e) {e.printStackTrace();} |
| 108 | + for (URL u : this.getURLs()) { |
| 109 | + System.out.println(u); |
| 110 | + } |
| 111 | + } |
| 112 | + |
| 113 | + public static InternalClassLoader findAncestor(ClassLoader cl) { |
| 114 | + do { |
| 115 | + |
| 116 | + if (cl instanceof InternalClassLoader) |
| 117 | + return (InternalClassLoader) cl; |
| 118 | + |
| 119 | + cl = cl.getParent(); |
| 120 | + } while (cl != null); |
| 121 | + |
| 122 | + return null; |
| 123 | + } |
| 124 | + |
| 125 | + /* |
| 126 | + * Required for Java Agents when this classloader is used as the system classloader |
| 127 | + */ |
| 128 | + @SuppressWarnings("unused") |
| 129 | + private void appendToClassPathForInstrumentation(String jarfile) throws IOException { |
| 130 | + add(Paths.get(jarfile).toRealPath().toUri().toURL()); |
| 131 | + } |
| 132 | +} |
0 commit comments