Skip to content

Commit 34d17c8

Browse files
committed
java/java_autoload
Signed-off-by: lucasew <[email protected]>
1 parent 0c0db62 commit 34d17c8

File tree

4 files changed

+156
-0
lines changed

4 files changed

+156
-0
lines changed

java/java_autoload/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.class
+132
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
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+
}

java/java_autoload/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
TODO: find a way to dynamically load a class from the Internet
2+
3+
BTW you need to javac the java file for this to "work"

java/java_autoload/main

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/usr/bin/env -S java --source 11 -Djava.system.class.loader=InternalClassLoader
2+
// --class-path https://repo1.maven.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar
3+
// -verbose
4+
// --class-path /tmp/log4j-1.2.17.jar
5+
6+
import org.apache.log4j.Logger;
7+
class main {
8+
9+
final static Logger logger = Logger.getLogger(main.class);
10+
11+
public static void main(String []args) {
12+
System.out.println("funciona?");
13+
System.out.println(Thread.currentThread().getContextClassLoader());
14+
System.out.println(System.getProperty("sun.java.command"));
15+
System.out.println(System.getenv("JAVA_MAIN_CLASS"));
16+
logger.info("Test");
17+
}
18+
}
19+
20+

0 commit comments

Comments
 (0)