You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.1 KiB
72 lines
2.1 KiB
5 years ago
|
package com.fr.start;
|
||
|
|
||
|
import com.fr.general.ComparatorUtils;
|
||
|
import com.fr.process.engine.core.AbstractJavaRuntime;
|
||
|
import com.fr.stable.StableUtils;
|
||
|
import com.fr.stable.StringUtils;
|
||
|
import com.fr.stable.os.OperatingSystem;
|
||
|
|
||
|
/**
|
||
|
* 设计器Java运行环境
|
||
|
*
|
||
|
* @author hades
|
||
|
* @version 10.0
|
||
|
* Created by hades on 2019/9/22
|
||
|
*/
|
||
|
public class DesignerJavaRuntime extends AbstractJavaRuntime {
|
||
|
|
||
|
private static final String DOT = ".";
|
||
|
private static final String INSTALL4J = ".install4j";
|
||
|
private static final String JAVA_EXEC = "java";
|
||
|
private static final String WIN_JRE_BIN = StableUtils.pathJoin("jre", "bin");
|
||
|
private static final String MAC_JRE_BIN = StableUtils.pathJoin("jre.bundle", "Contents", "Home", "jre", "bin");
|
||
|
private static final String[] DEBUG_OPTIONS = new String[]{"-Dfile.encoding=UTF-8", "-Xmx2048m"};
|
||
|
|
||
|
private static final DesignerJavaRuntime INSTANCE = new DesignerJavaRuntime();
|
||
|
|
||
|
public static DesignerJavaRuntime getInstance() {
|
||
|
return INSTANCE;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String getJavaExec() {
|
||
|
String installHome = StableUtils.getInstallHome();
|
||
|
if (!isInstallVersion()) {
|
||
|
return JAVA_EXEC;
|
||
|
}
|
||
|
if (OperatingSystem.isWindows()) {
|
||
|
return StableUtils.pathJoin(installHome, WIN_JRE_BIN, JAVA_EXEC);
|
||
|
}
|
||
|
if (OperatingSystem.isMacos()) {
|
||
|
|
||
|
return StableUtils.pathJoin(installHome, INSTALL4J, MAC_JRE_BIN, JAVA_EXEC);
|
||
|
}
|
||
|
if (OperatingSystem.isUnix()) {
|
||
|
return StableUtils.pathJoin(installHome, WIN_JRE_BIN, JAVA_EXEC);
|
||
|
|
||
|
}
|
||
|
return StringUtils.EMPTY;
|
||
|
}
|
||
|
|
||
|
private boolean isInstallVersion() {
|
||
|
return !ComparatorUtils.equals(StableUtils.getInstallHome(), DOT);
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 非安装版本需要添加下内存参数
|
||
|
* 工程中可根据需要修改
|
||
|
*
|
||
|
* @return 参数
|
||
|
*/
|
||
|
@Override
|
||
|
public String[] getJvmOptions() {
|
||
|
if (isInstallVersion()) {
|
||
|
return super.getJvmOptions();
|
||
|
} else {
|
||
|
return DEBUG_OPTIONS;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|