Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Faltermeier2017-09-04 14:17:40 +0000
committerJohannes Faltermeier2017-09-04 15:15:36 +0000
commit01d3e33469cb157107d097c2a4ceb98333128d8b (patch)
tree118fe72b45946dca13e2902f76a15cc904282197
parentf61dbc6cad61b8d41e0d4cef5c2f39624e12d396 (diff)
downloadorg.eclipse.emf.edapt-01d3e33469cb157107d097c2a4ceb98333128d8b.tar.gz
org.eclipse.emf.edapt-01d3e33469cb157107d097c2a4ceb98333128d8b.tar.xz
org.eclipse.emf.edapt-01d3e33469cb157107d097c2a4ceb98333128d8b.zip
Bug 521252 - ArrayStoreException below EcoreReconstructorSwitchBase.add1.3.0_MS2
(thrown in BasicEList.assign) * Catch exception and show dialog telling user about incomplete history Change-Id: I8b13dcfd8446bc7ef4a650f782dcf51d46a15246 Signed-off-by: Johannes Faltermeier <jfaltermeier@eclipsesource.com>
-rw-r--r--plugins/org.eclipse.emf.edapt.common/src/org/eclipse/emf/edapt/internal/common/LoggingUtils.java33
-rw-r--r--plugins/org.eclipse.emf.edapt.history.editor/src/org/eclipse/emf/edapt/history/instantiation/ui/ReleaseHandler.java57
2 files changed, 73 insertions, 17 deletions
diff --git a/plugins/org.eclipse.emf.edapt.common/src/org/eclipse/emf/edapt/internal/common/LoggingUtils.java b/plugins/org.eclipse.emf.edapt.common/src/org/eclipse/emf/edapt/internal/common/LoggingUtils.java
index f78c274..a0b3e57 100644
--- a/plugins/org.eclipse.emf.edapt.common/src/org/eclipse/emf/edapt/internal/common/LoggingUtils.java
+++ b/plugins/org.eclipse.emf.edapt.common/src/org/eclipse/emf/edapt/internal/common/LoggingUtils.java
@@ -11,7 +11,13 @@
*******************************************************************************/
package org.eclipse.emf.edapt.internal.common;
+import java.io.PrintWriter;
+import java.io.StringWriter;
+import java.util.ArrayList;
+import java.util.List;
+
import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.MultiStatus;
import org.eclipse.core.runtime.Plugin;
import org.eclipse.core.runtime.Status;
@@ -25,6 +31,8 @@ import org.eclipse.core.runtime.Status;
*/
public final class LoggingUtils {
+ private static final String LINE_SEPARATOR = "line.separator"; //$NON-NLS-1$
+
/** Constructor. */
private LoggingUtils() {
// hidden, since this class only provides static helper methods
@@ -74,4 +82,29 @@ public final class LoggingUtils {
final String pluginId = plugin.getBundle().getSymbolicName();
return new Status(severity, pluginId, code, message, exception);
}
+
+ /** Creates a multi status. */
+ public static IStatus createMultiStatus(Plugin plugin, int severity, String message, Throwable exception) {
+ if (plugin == null) {
+ return null;
+ }
+ final String pluginId = plugin.getBundle().getSymbolicName();
+
+ final StringWriter stringWriter = new StringWriter();
+ final PrintWriter printWriter = new PrintWriter(stringWriter);
+ exception.printStackTrace(printWriter);
+ final String trace = stringWriter.toString();
+
+ final List<IStatus> childStatuses = new ArrayList<IStatus>();
+ for (final String line : trace.split(System.getProperty(LINE_SEPARATOR))) {
+ childStatuses.add(new Status(severity, pluginId, line));
+ }
+
+ return new MultiStatus(
+ pluginId,
+ IStatus.ERROR,
+ childStatuses.toArray(new IStatus[childStatuses.size()]),
+ message,
+ exception);
+ }
}
diff --git a/plugins/org.eclipse.emf.edapt.history.editor/src/org/eclipse/emf/edapt/history/instantiation/ui/ReleaseHandler.java b/plugins/org.eclipse.emf.edapt.history.editor/src/org/eclipse/emf/edapt/history/instantiation/ui/ReleaseHandler.java
index 00414cb..e04bf93 100644
--- a/plugins/org.eclipse.emf.edapt.history.editor/src/org/eclipse/emf/edapt/history/instantiation/ui/ReleaseHandler.java
+++ b/plugins/org.eclipse.emf.edapt.history.editor/src/org/eclipse/emf/edapt/history/instantiation/ui/ReleaseHandler.java
@@ -11,22 +11,27 @@
*******************************************************************************/
package org.eclipse.emf.edapt.history.instantiation.ui;
+import java.lang.reflect.InvocationTargetException;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
+import org.eclipse.core.runtime.IStatus;
import org.eclipse.emf.common.command.Command;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.EPackage;
import org.eclipse.emf.ecore.presentation.EcoreEditor;
import org.eclipse.emf.edapt.history.instantiation.ReleaseCommand;
import org.eclipse.emf.edapt.history.instantiation.UpdatePackageNamespaceCommand;
+import org.eclipse.emf.edapt.history.presentation.HistoryEditorPlugin;
import org.eclipse.emf.edapt.history.reconstruction.EcoreForwardReconstructor;
import org.eclipse.emf.edapt.history.recorder.EditingDomainListener;
+import org.eclipse.emf.edapt.internal.common.LoggingUtils;
import org.eclipse.emf.edapt.internal.common.MetamodelExtent;
import org.eclipse.emf.edapt.spi.history.History;
import org.eclipse.emf.edapt.spi.history.Release;
import org.eclipse.emf.edit.domain.EditingDomain;
+import org.eclipse.jface.dialogs.ErrorDialog;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.window.Window;
import org.eclipse.jface.wizard.WizardDialog;
@@ -65,25 +70,37 @@ public class ReleaseHandler extends EditingDomainListenerHandlerBase {
/** Release the metamodel. */
private void release(MetamodelExtent extent, EditingDomainListener listener) {
- final EditingDomain domain = listener.getEditingDomain();
- if (!isNsURIChanged(extent, listener.getHistory().getLastRelease())) {
- final History history = listener.getHistory();
- final List<EPackage> rootPackages = history.getRootPackages();
- final ReleaseWizard releaseWizard = new ReleaseWizard(rootPackages);
- final WizardDialog dialog = new WizardDialog(Display.getDefault().getActiveShell(), releaseWizard);
- if (dialog.open() == Window.OK) {
- for (final EPackage ePackage : rootPackages) {
- if (!releaseWizard.updatePackage(ePackage)) {
- continue;
+ try {
+ final EditingDomain domain = listener.getEditingDomain();
+ if (!isNsURIChanged(extent, listener.getHistory().getLastRelease())) {
+ final History history = listener.getHistory();
+ final List<EPackage> rootPackages = history.getRootPackages();
+ final ReleaseWizard releaseWizard = new ReleaseWizard(rootPackages);
+ final WizardDialog dialog = new WizardDialog(Display.getDefault().getActiveShell(), releaseWizard);
+ if (dialog.open() == Window.OK) {
+ for (final EPackage ePackage : rootPackages) {
+ if (!releaseWizard.updatePackage(ePackage)) {
+ continue;
+ }
+ final String source = releaseWizard.getSource(ePackage);
+ final String target = releaseWizard.getTarget(ePackage);
+ updateNamespaceURI(domain, Collections.singletonList(ePackage), source, target);
}
- final String source = releaseWizard.getSource(ePackage);
- final String target = releaseWizard.getTarget(ePackage);
- updateNamespaceURI(domain, Collections.singletonList(ePackage), source, target);
+ addRelease(domain, listener, null);
}
+ } else {
addRelease(domain, listener, null);
}
- } else {
- addRelease(domain, listener, null);
+ } catch (final InvocationTargetException ex) {
+ ErrorDialog.openError(
+ Display.getDefault().getActiveShell(),
+ "Error during release", //$NON-NLS-1$
+ "An error occurred during the release. Did you record all changes?", //$NON-NLS-1$
+ LoggingUtils.createMultiStatus(
+ HistoryEditorPlugin.getPlugin(),
+ IStatus.ERROR,
+ "Exception during reconstruction...", //$NON-NLS-1$
+ ex.getTargetException()));
}
}
@@ -105,11 +122,17 @@ public class ReleaseHandler extends EditingDomainListenerHandlerBase {
/**
* Check whether all namespace URIs have changed w.r.t. to a certain
* release.
+ *
+ * @throws InvocationTargetException in case the reconstructor throws any exception
*/
- private boolean isNsURIChanged(MetamodelExtent extent, Release release) {
+ private boolean isNsURIChanged(MetamodelExtent extent, Release release) throws InvocationTargetException {
final EcoreForwardReconstructor reconstructor = new EcoreForwardReconstructor(
URI.createURI("before")); //$NON-NLS-1$
- reconstructor.reconstruct(release, true);
+ try {
+ reconstructor.reconstruct(release, true);
+ } catch (final RuntimeException ex) {
+ throw new InvocationTargetException(ex);
+ }
return isNsURIChanged(extent.getRootPackages(), reconstructor);
}

Back to the top