blob: 06ef73ec3f54dfbee6f20c8cdea810019ef8aa33 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.launching;
import java.io.File;
import org.eclipse.debug.core.ILaunchManager;
import org.eclipse.jdt.launching.AbstractVMInstall;
import org.eclipse.jdt.launching.IVMInstallType;
import org.eclipse.jdt.launching.IVMRunner;
public class MacOSXVMInstall extends AbstractVMInstall {
MacOSXVMInstall(IVMInstallType type, String id) {
super(type, id);
}
@Override
public IVMRunner getVMRunner(String mode) {
if (ILaunchManager.RUN_MODE.equals(mode))
return new StandardVMRunner(this);
if (ILaunchManager.DEBUG_MODE.equals(mode))
return new StandardVMDebugger(this);
return null;
}
@Override
public String getJavaVersion() {
File installLocation= getInstallLocation();
if (installLocation != null) {
File executable= StandardVMType.findJavaExecutable(installLocation);
if (executable != null) {
MacOSXVMInstallType installType = (MacOSXVMInstallType) getVMInstallType();
String vmVersion= installType.getVMVersion(installLocation, executable);
// strip off extra info
StringBuffer version= new StringBuffer();
for (int i= 0; i < vmVersion.length(); i++) {
char ch= vmVersion.charAt(i);
if (Character.isDigit(ch) || ch == '.') {
version.append(ch);
} else {
break;
}
}
if (version.length() > 0) {
return version.toString();
}
}
}
return null;
}
}