/******************************************************************************* * Copyright (c) 2008-2010 Sonatype, Inc. * 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: * Sonatype, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.m2e.internal.launch; import java.io.File; import java.util.Collections; import java.util.List; import org.osgi.framework.Bundle; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Status; import org.eclipse.debug.core.ILaunchConfiguration; import org.eclipse.osgi.util.NLS; import org.eclipse.m2e.actions.MavenLaunchConstants; import org.eclipse.m2e.core.internal.Bundles; import org.eclipse.m2e.core.internal.MavenPluginActivator; import org.eclipse.m2e.core.internal.launch.AbstractMavenRuntime; import org.eclipse.m2e.core.internal.launch.MavenRuntimeManagerImpl; /** * MavenLaunchUtils * * @author Igor Fedorenko */ @SuppressWarnings("restriction") public class MavenLaunchUtils { public static AbstractMavenRuntime getMavenRuntime(ILaunchConfiguration configuration) throws CoreException { MavenRuntimeManagerImpl runtimeManager = MavenPluginActivator.getDefault().getMavenRuntimeManager(); String name = configuration.getAttribute(MavenLaunchConstants.ATTR_RUNTIME, ""); //$NON-NLS-1$ AbstractMavenRuntime runtime = runtimeManager.getRuntime(name); if(runtime == null) { throw new CoreException(new Status(IStatus.ERROR, MavenLaunchConstants.PLUGIN_ID, -1, // NLS.bind(Messages.MavenLaunchUtils_error_no_maven_install, name), null)); } return runtime; } public static List<String> getCliResolver(AbstractMavenRuntime runtime) { String resolverBundleId; String runtimeVersion = runtime.getVersion(); if(runtimeVersion.startsWith("3.")) { //$NON-NLS-1$ resolverBundleId = "org.eclipse.m2e.workspace.cli"; //$NON-NLS-1$ } else { return Collections.emptyList(); // unsupported version of maven } Bundle resolver = Bundles.findDependencyBundle(MavenLaunchPlugin.getDefault().getBundle(), resolverBundleId); return Bundles.getClasspathEntries(resolver); } /** * @since 1.4 */ public static String quote(String string) { return string.indexOf(' ') > -1 ? "\"" + string + "\"" : string; //$NON-NLS-1$ //$NON-NLS-2$ } /** * @since 1.4 */ public static String toPath(List<String> cp) { StringBuilder sb = new StringBuilder(); for(String cpe : cp) { if(sb.length() > 0) { sb.append(File.pathSeparator); } sb.append(cpe); } return sb.toString(); } }