use of org.jetbrains.idea.devkit.projectRoots.Sandbox in project intellij-community by JetBrains.
the class PluginRunConfiguration method getOptionsForPredefinedLogFile.
@Nullable
@Override
public LogFileOptions getOptionsForPredefinedLogFile(PredefinedLogFile predefinedLogFile) {
if (IDEA_LOG.equals(predefinedLogFile.getId())) {
final Module module = getModule();
final Sdk ideaJdk = module != null ? IdeaJdk.findIdeaJdk(ModuleRootManager.getInstance(module).getSdk()) : null;
if (ideaJdk != null) {
final String sandboxHome = ((Sandbox) ideaJdk.getSdkAdditionalData()).getSandboxHome();
if (sandboxHome != null) {
return new LogFileOptions(IDEA_LOG, sandboxHome + "/system/log/" + IDEA_LOG, predefinedLogFile.isEnabled(), true, false);
}
}
}
return super.getOptionsForPredefinedLogFile(predefinedLogFile);
}
use of org.jetbrains.idea.devkit.projectRoots.Sandbox in project intellij-community by JetBrains.
the class PluginBuildUtil method getPluginExPath.
@NonNls
@Nullable
public static String getPluginExPath(Module module) {
final Sdk jdk = IdeaJdk.findIdeaJdk(ModuleRootManager.getInstance(module).getSdk());
if (jdk == null) {
return null;
}
String sandboxHome = ((Sandbox) jdk.getSdkAdditionalData()).getSandboxHome();
if (sandboxHome == null)
return null;
try {
sandboxHome = new File(sandboxHome).getCanonicalPath();
} catch (IOException e) {
return null;
}
return sandboxHome + File.separator + "plugins" + File.separator + module.getName();
}
use of org.jetbrains.idea.devkit.projectRoots.Sandbox in project intellij-community by JetBrains.
the class PluginRunConfiguration method getState.
@Override
public RunProfileState getState(@NotNull final Executor executor, @NotNull final ExecutionEnvironment env) throws ExecutionException {
final Module module = getModule();
if (module == null) {
throw new ExecutionException(DevKitBundle.message("run.configuration.no.module.specified"));
}
final ModuleRootManager rootManager = ModuleRootManager.getInstance(module);
final Sdk jdk = rootManager.getSdk();
if (jdk == null) {
throw CantRunException.noJdkForModule(module);
}
final Sdk ideaJdk = IdeaJdk.findIdeaJdk(jdk);
if (ideaJdk == null) {
throw new ExecutionException(DevKitBundle.message("sdk.type.incorrect.common"));
}
String sandboxHome = ((Sandbox) ideaJdk.getSdkAdditionalData()).getSandboxHome();
if (sandboxHome == null) {
throw new ExecutionException(DevKitBundle.message("sandbox.no.configured"));
}
try {
sandboxHome = new File(sandboxHome).getCanonicalPath();
} catch (IOException e) {
throw new ExecutionException(DevKitBundle.message("sandbox.no.configured"));
}
final String canonicalSandbox = sandboxHome;
//copy license from running instance of idea
IdeaLicenseHelper.copyIDEALicense(sandboxHome);
final JavaCommandLineState state = new JavaCommandLineState(env) {
@Override
protected JavaParameters createJavaParameters() throws ExecutionException {
final JavaParameters params = new JavaParameters();
ParametersList vm = params.getVMParametersList();
fillParameterList(vm, VM_PARAMETERS);
fillParameterList(params.getProgramParametersList(), PROGRAM_PARAMETERS);
Sdk usedIdeaJdk = ideaJdk;
String alternativeIdePath = getAlternativeJrePath();
if (isAlternativeJreEnabled() && !StringUtil.isEmptyOrSpaces(alternativeIdePath)) {
final Sdk configuredJdk = ProjectJdkTable.getInstance().findJdk(alternativeIdePath);
if (configuredJdk != null) {
usedIdeaJdk = configuredJdk;
} else {
try {
usedIdeaJdk = (Sdk) usedIdeaJdk.clone();
} catch (CloneNotSupportedException e) {
throw new ExecutionException(e.getMessage());
}
final SdkModificator sdkToSetUp = usedIdeaJdk.getSdkModificator();
sdkToSetUp.setHomePath(alternativeIdePath);
sdkToSetUp.commitChanges();
}
}
String ideaJdkHome = usedIdeaJdk.getHomePath();
boolean fromIdeaProject = IdeaJdk.isFromIDEAProject(ideaJdkHome);
if (!fromIdeaProject) {
String bootPath = "/lib/boot.jar";
vm.add("-Xbootclasspath/a:" + ideaJdkHome + toSystemDependentName(bootPath));
}
vm.defineProperty("idea.config.path", canonicalSandbox + File.separator + "config");
vm.defineProperty("idea.system.path", canonicalSandbox + File.separator + "system");
vm.defineProperty("idea.plugins.path", canonicalSandbox + File.separator + "plugins");
vm.defineProperty("idea.classpath.index.enabled", "false");
if (!vm.hasProperty(JetBrainsProtocolHandler.REQUIRED_PLUGINS_KEY) && PluginModuleType.isOfType(module)) {
final String id = DescriptorUtil.getPluginId(module);
if (id != null) {
vm.defineProperty(JetBrainsProtocolHandler.REQUIRED_PLUGINS_KEY, id);
}
}
if (SystemInfo.isMac) {
vm.defineProperty("idea.smooth.progress", "false");
vm.defineProperty("apple.laf.useScreenMenuBar", "true");
vm.defineProperty("apple.awt.fileDialogForDirectories", "true");
}
if (SystemInfo.isXWindow) {
if (VM_PARAMETERS == null || !VM_PARAMETERS.contains("-Dsun.awt.disablegrab")) {
// See http://devnet.jetbrains.net/docs/DOC-1142
vm.defineProperty("sun.awt.disablegrab", "true");
}
}
if (!vm.hasProperty(PlatformUtils.PLATFORM_PREFIX_KEY)) {
String buildNumber = IdeaJdk.getBuildNumber(ideaJdkHome);
if (buildNumber != null) {
String prefix = IntelliJPlatformProduct.fromBuildNumber(buildNumber).getPlatformPrefix();
if (prefix != null) {
vm.defineProperty(PlatformUtils.PLATFORM_PREFIX_KEY, prefix);
}
}
}
params.setWorkingDirectory(ideaJdkHome + File.separator + "bin" + File.separator);
params.setJdk(usedIdeaJdk);
if (fromIdeaProject) {
OrderEnumerator enumerator = OrderEnumerator.orderEntries(module).recursively();
for (VirtualFile file : enumerator.getAllLibrariesAndSdkClassesRoots()) {
params.getClassPath().add(file);
}
} else {
for (String path : Arrays.asList("log4j.jar", "jdom.jar", "trove4j.jar", "openapi.jar", "util.jar", "extensions.jar", "bootstrap.jar", "idea_rt.jar", "idea.jar")) {
params.getClassPath().add(ideaJdkHome + toSystemDependentName("/lib/" + path));
}
}
params.getClassPath().addFirst(((JavaSdkType) usedIdeaJdk.getSdkType()).getToolsPath(usedIdeaJdk));
params.setMainClass("com.intellij.idea.Main");
return params;
}
};
return state;
}
Aggregations