diff options
author | David Herman <davidherman@google.com> | 2014-11-14 00:12:12 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-11-14 00:12:13 +0000 |
commit | 4f44cf72bc552a666b0fa89b2f3141ab97cd1aa1 (patch) | |
tree | d6d9b2d1382fc4e95d0ad3f316d14deeac6900b7 | |
parent | 892639ff55d3425b1f82559c8a646a600ab9f328 (diff) | |
parent | ea29cd16b2ae3f04294165ba0b5e4d839dfc8406 (diff) | |
download | sdk-4f44cf72bc552a666b0fa89b2f3141ab97cd1aa1.zip sdk-4f44cf72bc552a666b0fa89b2f3141ab97cd1aa1.tar.gz sdk-4f44cf72bc552a666b0fa89b2f3141ab97cd1aa1.tar.bz2 |
Merge "New -path arg for find_java" into studio-1.0-dev
-rwxr-xr-x | find_java/src/source/find_java.h | 3 | ||||
-rw-r--r-- | find_java/src/source/find_java_exe.cpp | 32 | ||||
-rwxr-xr-x | find_java/src/source/find_java_lib.cpp | 23 |
3 files changed, 42 insertions, 16 deletions
diff --git a/find_java/src/source/find_java.h b/find_java/src/source/find_java.h index fe7da4d..49b5fd9 100755 --- a/find_java/src/source/find_java.h +++ b/find_java/src/source/find_java.h @@ -30,7 +30,8 @@ #define MIN_JAVA_VERSION_MINOR 6
#define MIN_JAVA_VERSION TO_JAVA_VERSION(MIN_JAVA_VERSION_MAJOR, MIN_JAVA_VERSION_MINOR)
-int checkJavaInPath(const CPath &path, bool isJdk = false, int minVersion = MIN_JAVA_VERSION);
+int findJavaInPath(const CPath &path, CPath *outJavaPath, bool isJdk = false,
+ int minVersion = MIN_JAVA_VERSION);
int findJavaInEnvPath(CPath *outJavaPath, bool isJdk = false,
int minVersion = MIN_JAVA_VERSION);
int findJavaInRegistry(CPath *outJavaPath, bool isJdk = false,
diff --git a/find_java/src/source/find_java_exe.cpp b/find_java/src/source/find_java_exe.cpp index e311646..50ca024 100644 --- a/find_java/src/source/find_java_exe.cpp +++ b/find_java/src/source/find_java_exe.cpp @@ -48,13 +48,14 @@ static int showHelpMessage() { "Outputs the path of the first Java.exe found on the local system.\n"
"Returns code 0 when found, 1 when not found.\n"
"Options:\n"
- "-h / -help : This help.\n"
- "-t / -test : Internal test.\n"
- "-e / -error : Print an error message to the console if Java.exe isn't found.\n"
- "-j / -jdk : Only returns java.exe found in a JDK.\n"
- "-s / -short : Print path in short DOS form.\n"
- "-w / -javaw : Search a matching javaw.exe; defaults to java.exe if not found.\n"
- "-m / -minv # : Pass in a minimum version to use (default: 1.6).\n"
+ "-h / -help : This help.\n"
+ "-t / -test : Internal test.\n"
+ "-e / -error : Print an error message to the console if Java.exe isn't found.\n"
+ "-j / -jdk : Only returns java.exe found in a JDK.\n"
+ "-s / -short : Print path in short DOS form.\n"
+ "-p / -path `dir` : A custom path to search first. Pass in JDK base dir if -j is set.\n"
+ "-w / -javaw : Search a matching javaw.exe; defaults to java.exe if not found.\n"
+ "-m / -minv # : Pass in a minimum version to use (default: 1.6).\n"
"-v / -version: Only prints the Java version found.\n"
);
return 2;
@@ -118,6 +119,7 @@ int main(int argc, char* argv[]) { bool isJdk = false;
bool shouldPrintError = false;
int minVersion = MIN_JAVA_VERSION;
+ const char *customPathStr = NULL;
for (int i = 1; i < argc; i++) {
if (strncmp(argv[i], "-t", 2) == 0) {
@@ -130,6 +132,12 @@ int main(int argc, char* argv[]) { } else if (strncmp(argv[i], "-e", 2) == 0) {
shouldPrintError = true;
+ } else if (strncmp(argv[i], "-p", 2) == 0) {
+ i++;
+ if (i == argc) {
+ return showHelpMessage();
+ }
+ customPathStr = argv[i];
} else if (strncmp(argv[i], "-d", 2) == 0) {
gIsDebug = true;
@@ -157,7 +165,15 @@ int main(int argc, char* argv[]) { // Find the first suitable version of Java we can use.
CPath javaPath;
- int version = findJavaInEnvPath(&javaPath, isJdk, minVersion);
+
+ int version = 0;
+ if (customPathStr != NULL) {
+ CPath customPath(customPathStr);
+ version = findJavaInPath(customPath, &javaPath, isJdk, minVersion);
+ }
+ if (version == 0) {
+ version = findJavaInEnvPath(&javaPath, isJdk, minVersion);
+ }
if (version == 0) {
version = findJavaInRegistry(&javaPath, isJdk, minVersion);
}
diff --git a/find_java/src/source/find_java_lib.cpp b/find_java/src/source/find_java_lib.cpp index 93bc705..134c38b 100755 --- a/find_java/src/source/find_java_lib.cpp +++ b/find_java/src/source/find_java_lib.cpp @@ -124,19 +124,28 @@ static int checkBinPath(CPath *inOutPath) { }
// Test for the existence of java.exe in a custom path
-int checkJavaInPath(const CPath &path, int minVersion) {
+int findJavaInPath(const CPath &path, CPath *outJavaPath, bool isJdk, int minVersion) {
SetLastError(0);
- int currVersion = 0;
+ int version = 0;
CPath temp(path);
- currVersion = checkBinPath(&temp);
- if (currVersion > minVersion) {
- if (gIsDebug) {
- fprintf(stderr, "Java %d found in path: %s\n", currVersion, temp.cstr());
+ if (!isJdk) {
+ version = checkPath(&temp);
+ }
+ else {
+ if (isJdkPath(temp)) {
+ version = checkBinPath(&temp);
}
}
- return currVersion;
+ if (version >= minVersion) {
+ if (gIsDebug) {
+ fprintf(stderr, "Java %d found in path: %s\n", version, temp.cstr());
+ }
+ *outJavaPath = temp;
+ return version;
+ }
+ return 0;
}
// Search java.exe in the environment
|