aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/moe/nea/modernjava/launch/relaunch/JavaScanner.java
blob: e50e5d4f1ce9d74032fb669ddf9f3b2d96eb9b3b (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
package moe.nea.modernjava.launch.relaunch;

import moe.nea.modernjava.launch.util.PropertyNames;
import moe.nea.modernjava.launch.util.TextIoUtils;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang3.SystemUtils;

import java.io.File;
import java.util.ArrayList;
import java.util.List;

public class JavaScanner {

	public static final String JAVA_BINARY_PATH = "bin/java" + (SystemUtils.IS_OS_WINDOWS ? ".exe" : "");
	public static final String JAVA_COMPILER_PATH = "bin/javac" + (SystemUtils.IS_OS_WINDOWS ? ".exe" : "");

	public boolean isJavaHome(File potential) {
		if (new File(potential, JAVA_BINARY_PATH).exists()) {
			return true;
		}
		return false;
	}

	private List<LocalJavaVersion> versionList = new ArrayList<>();

	public void scanDirectory(File file) {
		scanDirectory(file, 1);
	}

	public void scanDirectory(File file, int depthLimit) {
		if (depthLimit < 0) return;
		if (isJavaHome(file)) {
			versionList.add(new LocalJavaVersion(file));
		} else {
			File[] files = file.listFiles();
			if (files == null) return;
			for (File listFile : files) {
				if (listFile.isDirectory()) {
					scanDirectory(listFile, depthLimit - 1);
				}
			}
		}
	}

	public void prettyPrint() {
		String s = "Fun fact these are the found Java Runtime Environments:\n";
		for (LocalJavaVersion localJavaVersion : versionList) {
			s += localJavaVersion.prettyPrint();
		}
		System.out.println(s);
	}

	public void scanDefaultPaths() {
		File home = new File(System.getProperty("user.home"));
		scanDirectory(new File(home, ".sdkman/candidates/java"));
		scanDirectory(new File(home, ".jdks"));
		scanDirectory(new File("/usr"), 0);
		String[] paths = System.getProperty(PropertyNames.JAVA_SCAN_PATH, "").split(File.pathSeparator);
		for (String path : paths) {
			if (!path.isEmpty()) {
				scanDirectory(new File(path).getParentFile(), 3);
			}
		}
	}

	public LocalJavaVersion findCandidate() {
		LocalJavaVersion bestFit = null;
		for (LocalJavaVersion localJavaVersion : versionList) {
			if (localJavaVersion.isJdk() && localJavaVersion.getMajorVersion() == 16) {
				bestFit = localJavaVersion;
			}
		}
		return bestFit;
	}

	public static class LocalJavaVersion {
		private final File javaHome;
		private String versionString;

		public LocalJavaVersion(File javaHome) {
			this.javaHome = javaHome;
		}

		public File getJavaHome() {
			return javaHome;
		}

		public File getJavaBinary() {
			return new File(javaHome, JAVA_BINARY_PATH);
		}

		public boolean isJdk() {
			return new File(javaHome, JAVA_COMPILER_PATH).exists();
		}

		public String getVersionString() {
			if (versionString == null) {
				ProcessBuilder processBuilder = new ProcessBuilder();
				processBuilder.command(getJavaBinary().getAbsolutePath(), "-version");
				processBuilder.redirectInput(ProcessBuilder.Redirect.PIPE);
				processBuilder.redirectOutput(ProcessBuilder.Redirect.PIPE);
				processBuilder.redirectError(ProcessBuilder.Redirect.PIPE);
				try {
					Process process = processBuilder.start();
					process.waitFor();
					versionString = IOUtils.toString(process.getInputStream()) + IOUtils.toString(process.getErrorStream());
				} catch (Exception e) {
					e.printStackTrace();
					versionString = "<invalid>";
				}
			}
			return versionString;
		}

		public String prettyPrint() {
			return javaHome.getAbsolutePath() + ":\n"
					+ "\tJava Binary: " + getJavaBinary().getAbsolutePath() + "\n"
					+ "\tMajor Version: " + getMajorVersion() + "\n"
					+ "\tFull Version: " + getVersion() + "\n"
					+ "\tIs Jdk: " + isJdk() + "\n"
					;
		}

		public String getVersion() {
			String v = getVersionString();
			String[] s = v.split("\"");
			if (s.length < 2) return null;
			return s[1];
		}

		public int getMajorVersion() {
			try {
				return Integer.parseInt(getVersion().split("\\.")[0]);
			} catch (Exception e) {
				return -1;
			}
		}
	}
}