All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.evosuite.runtime.util.JavaExecCmdUtil Maven / Gradle / Ivy

The newest version!
package org.evosuite.runtime.util;

import java.io.File;
import java.util.Optional;

/**
 * Created by [email protected] for EvoSuite project (https://github.com/EvoSuite/evosuite)
 */
public class JavaExecCmdUtil {

  /**
   * Utility class, no public constructors
   */
  private JavaExecCmdUtil() {
  }

  /**
   * There is java environment configuration gap - ${JAVA_HOME}/bin/java != `which java` so just
   * start child process as "java" executable command drives to unexpected results. On generic Lunix
   * environment 'which java' may show not Oracle hotspot 8th jdk binary and evoSuite
   * master<->client communication will have no results.
   *
   * @param isFullOriginalJavaExecRequired - original behavior switch: "java" or JAVA_CMD from
   * (@link org.evosuite.EvoSuite#JAVA_CMD)
   * @return current runtime java executable path based on $JAVA_HOME environment variable
   * @apiNote under maven java.home property is ${JAVA_HOME}/jre/bin/java
   */
  public static String getJavaBinExecutablePath(final boolean isFullOriginalJavaExecRequired) {
    final String separator = System.getProperty("file.separator");
    final String JAVA_CMD =
        System.getProperty("java.home") + separator + "bin" + separator + "java";

    return getJavaHomeEnv()
        .map(javaHomeEnvVar ->
            new File(
                javaHomeEnvVar + File.separatorChar + "bin" + File.separatorChar + "java" +
                    getOsName()
                        .filter(osName -> osName.toLowerCase().contains("windows"))
                        .map(osName -> ".exe")
                        .orElse("")
            )
        )
        .filter(File::exists)
        .map(File::getPath)
        .orElse(isFullOriginalJavaExecRequired ? JAVA_CMD : "java");
  }

  /**
   * @see #getJavaBinExecutablePath(boolean)
   */
  public static String getJavaBinExecutablePath() {
    return getJavaBinExecutablePath(false);
  }

  private static Optional getJavaHomeEnv() {
    return Optional.ofNullable(System.getenv("JAVA_HOME"));
  }

  static Optional getOsName() {
    return Optional.ofNullable(System.getProperty("os.name"));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy