X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=eclipse%2Fplugins%2Forg.argeo.slc.ide.ui%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fide%2Fui%2Flaunch%2Fosgi%2FOsgiBootEquinoxLaunchConfiguration.java;h=6d1ebaf8b98281d310546ae889ac44e0d55d58cf;hb=56b28607f4c35706f0428b1b358b0e2033eb8448;hp=ab2db16d2543da00053d9c76a6ad0db194e5deb3;hpb=1ec88bb547b163d84d4e3eecc87cf78ecbd28f6c;p=gpl%2Fargeo-slc.git diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/osgi/OsgiBootEquinoxLaunchConfiguration.java b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/osgi/OsgiBootEquinoxLaunchConfiguration.java index ab2db16d2..6d1ebaf8b 100644 --- a/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/osgi/OsgiBootEquinoxLaunchConfiguration.java +++ b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/osgi/OsgiBootEquinoxLaunchConfiguration.java @@ -1,22 +1,16 @@ package org.argeo.slc.ide.ui.launch.osgi; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.Properties; - import org.argeo.slc.ide.ui.SlcIdeUiPlugin; import org.eclipse.core.resources.IFile; +import org.eclipse.core.resources.IResource; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.debug.core.ILaunch; import org.eclipse.debug.core.ILaunchConfiguration; import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy; -import org.eclipse.jface.dialogs.ErrorDialog; import org.eclipse.pde.ui.launcher.EquinoxLaunchConfiguration; -import org.eclipse.swt.widgets.Display; +/** OSGiBoot launch configuration. */ public class OsgiBootEquinoxLaunchConfiguration extends EquinoxLaunchConfiguration { public final static String ID = SlcIdeUiPlugin.ID @@ -26,40 +20,28 @@ public class OsgiBootEquinoxLaunchConfiguration extends public void launch(ILaunchConfiguration configuration, String mode, ILaunch launch, IProgressMonitor monitor) throws CoreException { super.launch(configuration, mode, launch, monitor); - - // TODO: add launch listener to be notified when is terminated and - // refresh resources - - // IFile propertiesFile = (IFile) configuration.getMappedResources()[0]; - // propertiesFile.getProject().refreshLocal(IResource.DEPTH_INFINITE, - // monitor); + // Refresh resources before launching + final IFile propertiesFile = (IFile) configuration.getMappedResources()[0]; + propertiesFile.getParent().refreshLocal(IResource.DEPTH_INFINITE, + monitor); } @Override protected void preLaunchCheck(ILaunchConfiguration configuration, ILaunch launch, IProgressMonitor monitor) throws CoreException { - System.out.println("Launching... " + launch); - IFile propertiesFile = (IFile) configuration.getMappedResources()[0]; - - Properties properties = null; - try { - properties = OsgiLaunchHelper.readProperties(propertiesFile); - } catch (CoreException e) { - ErrorDialog.openError(Display.getCurrent().getActiveShell(), - "Error", "Cannot execute launch shortcut", e.getStatus()); - return; - } - - List bundlesToStart = new ArrayList(); - Map systemPropertiesToAppend = new HashMap(); - OsgiLaunchHelper.interpretProperties(properties, bundlesToStart, - systemPropertiesToAppend); + // System.out.println("Launching... " + launch); ILaunchConfigurationWorkingCopy wc = configuration.getWorkingCopy(); - OsgiLaunchHelper.updateLaunchConfiguration(wc, bundlesToStart, - systemPropertiesToAppend, null); + OsgiLaunchHelper.updateLaunchConfiguration(wc); wc.doSave(); - super.preLaunchCheck(configuration, launch, monitor); + + // Note that if a Java project contains a build.properties it has to + // declare the sources otherwise it will be skipped in the generation of + // the dev.properties file! + + // for(Object bundleId:fAllBundles.keySet()){ + // System.out.println(bundleId+"="+fAllBundles.get(bundleId)); + // } } }