aboutsummaryrefslogtreecommitdiff
path: root/src/lombok/javac/apt/PKG.java
blob: 2ecf1c7adbfa0a6b3f17ecb0a30a0b36ee772cc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package lombok.javac.apt;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;

import lombok.Lombok;


class PKG {
	private PKG() {}
	
	static boolean isInstanceOf(Object o, String className) {
		if ( o == null ) return false;
		return isInstanceOf(o.getClass(), className);
	}
	
	static boolean isInstanceOf(Class<?> c, String className) {
		if ( c == Object.class || c == null ) return false;
		
		if ( c.getName().equals(className) ) return true;
		
		if ( isInstanceOf(c.getSuperclass(), className) ) return true;
		for ( Class<?> iface : c.getInterfaces() ) {
			if ( isInstanceOf(iface, className) ) return true;
		}
		
		return false;
	}
	
	static byte[] readResource(String name) {
		return readResource(PKG.class.getClassLoader(), name);
	}
	
	static byte[] readResource(ClassLoader loader, String name) {
		InputStream in = loader.getResourceAsStream(name);
		if ( in == null ) throw Lombok.sneakyThrow(new IOException("Not found: " + name));
		
		try {
			return readStream(in);
		} catch (IOException e) {
			throw Lombok.sneakyThrow(e);
		}
	}
	
	static byte[] readStream(InputStream in) throws IOException {
		ByteArrayOutputStream baos = new ByteArrayOutputStream();
		byte[] b = new byte[65536];
		while ( true ) {
			int r = in.read(b);
			if ( r == -1 ) break;
			if ( r > 0 ) baos.write(b, 0, r);
		}
		return baos.toByteArray();
	}
}