Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilippe Roland2014-01-27 14:32:42 +0000
committerPhilippe Roland2014-01-27 14:32:42 +0000
commita72327757a400fdf968a30498ed66f21ccf75843 (patch)
tree076fc0ac25cd6536888fc58f155c034f18162b95
parent61fe1560ac4f7d2d667c116648cbe5a2eb6a10ef (diff)
downloadorg.eclipse.papyrus-a72327757a400fdf968a30498ed66f21ccf75843.tar.gz
org.eclipse.papyrus-a72327757a400fdf968a30498ed66f21ccf75843.tar.xz
org.eclipse.papyrus-a72327757a400fdf968a30498ed66f21ccf75843.zip
421991 - [Control Mode] When loading a control model the resources
should not be set to modified Backported to trunk
-rw-r--r--plugins/infra/core/org.eclipse.papyrus.infra.core/src/org/eclipse/papyrus/infra/core/resource/ProxyModificationTrackingAdapter.java264
1 files changed, 136 insertions, 128 deletions
diff --git a/plugins/infra/core/org.eclipse.papyrus.infra.core/src/org/eclipse/papyrus/infra/core/resource/ProxyModificationTrackingAdapter.java b/plugins/infra/core/org.eclipse.papyrus.infra.core/src/org/eclipse/papyrus/infra/core/resource/ProxyModificationTrackingAdapter.java
index 417e650abfb..1c3e510af84 100644
--- a/plugins/infra/core/org.eclipse.papyrus.infra.core/src/org/eclipse/papyrus/infra/core/resource/ProxyModificationTrackingAdapter.java
+++ b/plugins/infra/core/org.eclipse.papyrus.infra.core/src/org/eclipse/papyrus/infra/core/resource/ProxyModificationTrackingAdapter.java
@@ -1,128 +1,136 @@
-/*****************************************************************************
- * Copyright (c) 2013 Atos.
- *
- *
- * 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:
- * Mathieu Velten (Atos) mathieu.velten@atos.net - Initial API and implementation
- *
- *****************************************************************************/
-package org.eclipse.papyrus.infra.core.resource;
-
-import java.util.ArrayList;
-import java.util.Collection;
-import java.util.List;
-
-import org.eclipse.emf.common.notify.Notification;
-import org.eclipse.emf.common.util.TreeIterator;
-import org.eclipse.emf.ecore.EObject;
-import org.eclipse.emf.ecore.EStructuralFeature;
-import org.eclipse.emf.ecore.EStructuralFeature.Setting;
-import org.eclipse.emf.ecore.resource.Resource;
-import org.eclipse.emf.ecore.util.EContentAdapter;
-import org.eclipse.emf.ecore.util.EcoreUtil;
-import org.eclipse.papyrus.infra.core.utils.EMFHelper;
-
-/**
- * This adapter handles "modified" flag of resources for tricky cases :
- *
- * - when there is a change in an URI all the resources containing a proxy
- * to the modified resource should be marked as modified
- *
- * - when adding/removing objects from resources they should be marked as modified,
- * and all the resources containing a proxy too
- *
- * - when doing control/uncontrol operations the resource of the parent object
- * should be marked as modified
- *
- * @author mvelten
- *
- */
-public class ProxyModificationTrackingAdapter extends EContentAdapter {
-
- @Override
- protected void setTarget(Resource target) {
- basicSetTarget(target);
- }
-
- @Override
- protected void unsetTarget(Resource target) {
- basicUnsetTarget(target);
- }
-
- @Override
- protected void setTarget(EObject target) {
- }
-
- @Override
- protected void unsetTarget(EObject target) {
- }
-
- @Override
- public void notifyChanged(Notification n) {
- Object notifier = n.getNotifier();
-
- if (notifier instanceof Resource) {
- Resource r = (Resource)notifier;
-
- if (n.getEventType() == Notification.SET && n.getFeatureID(Resource.class) == Resource.RESOURCE__URI) {
- r.setModified(true);
-
- TreeIterator<Object> properContents = EcoreUtil.getAllProperContents(r, false);
- while(properContents.hasNext()) {
- Object obj = properContents.next();
- if (obj instanceof EObject) {
- setReferencingResourcesAsModified((EObject)obj);
- }
- }
-
- } else {
- List objects = new ArrayList();
-
- switch(n.getEventType()) {
- case Notification.ADD_MANY:
- objects = (List<?>)n.getNewValue();
- break;
- case Notification.REMOVE_MANY:
- objects = (List<?>)n.getOldValue();
- break;
- case Notification.ADD:
- objects.add(n.getNewValue());
- break;
- case Notification.REMOVE:
- objects.add(n.getOldValue());
- break;
- }
-
- if (!objects.isEmpty()) {
- r.setModified(true);
- }
-
- for (Object o : objects) {
- if (o instanceof EObject) {
- setReferencingResourcesAsModified((EObject)o);
- }
- }
- }
- }
-
- super.notifyChanged(n);
- }
-
- protected void setReferencingResourcesAsModified(EObject eObj) {
- Collection<Setting> references = EMFHelper.getUsages(eObj);
- for (Setting setting : references) {
- EStructuralFeature f = setting.getEStructuralFeature();
- if(setting.getEObject() != null && !f.isDerived() && !f.isTransient()) {
- Resource refResource = setting.getEObject().eResource();
- if(refResource != null) {
- refResource.setModified(true);
- }
- }
- }
- }
-}
+/*****************************************************************************
+ * Copyright (c) 2013 Atos.
+ *
+ *
+ * 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:
+ * Mathieu Velten (Atos) mathieu.velten@atos.net - Initial API and implementation
+ *
+ *****************************************************************************/
+package org.eclipse.papyrus.infra.core.resource;
+
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.List;
+
+import org.eclipse.emf.common.notify.Notification;
+import org.eclipse.emf.common.util.TreeIterator;
+import org.eclipse.emf.ecore.EObject;
+import org.eclipse.emf.ecore.EStructuralFeature;
+import org.eclipse.emf.ecore.EStructuralFeature.Setting;
+import org.eclipse.emf.ecore.resource.Resource;
+import org.eclipse.emf.ecore.util.EContentAdapter;
+import org.eclipse.emf.ecore.util.EcoreUtil;
+import org.eclipse.papyrus.infra.core.utils.EMFHelper;
+
+/**
+ * This adapter handles "modified" flag of resources for tricky cases :
+ *
+ * - when there is a change in an URI all the resources containing a proxy
+ * to the modified resource should be marked as modified
+ *
+ * - when adding/removing objects from resources they should be marked as modified,
+ * and all the resources containing a proxy too
+ *
+ * - when doing control/uncontrol operations the resource of the parent object
+ * should be marked as modified
+ *
+ * @author mvelten
+ *
+ */
+public class ProxyModificationTrackingAdapter extends EContentAdapter {
+
+ @Override
+ protected void setTarget(Resource target) {
+ basicSetTarget(target);
+ }
+
+ @Override
+ protected void unsetTarget(Resource target) {
+ basicUnsetTarget(target);
+ }
+
+ @Override
+ protected void setTarget(EObject target) {
+ }
+
+ @Override
+ protected void unsetTarget(EObject target) {
+ }
+
+ @Override
+ public void notifyChanged(Notification n) {
+ Object notifier = n.getNotifier();
+
+ if(notifier instanceof Resource.Internal) {
+ Resource.Internal r = (Resource.Internal)notifier;
+
+ if (n.getEventType() == Notification.SET && n.getFeatureID(Resource.class) == Resource.RESOURCE__URI) {
+ r.setModified(true);
+
+ TreeIterator<Object> properContents = EcoreUtil.getAllProperContents(r, false);
+ while(properContents.hasNext()) {
+ Object obj = properContents.next();
+ if (obj instanceof EObject) {
+ setReferencingResourcesAsModified((EObject)obj);
+ }
+ }
+
+ } else {
+ List objects = new ArrayList();
+
+ switch(n.getEventType()) {
+ case Notification.ADD_MANY:
+ objects = (List<?>)n.getNewValue();
+ break;
+ case Notification.REMOVE_MANY:
+ objects = (List<?>)n.getOldValue();
+ break;
+ case Notification.ADD:
+ objects.add(n.getNewValue());
+ break;
+ case Notification.REMOVE:
+ objects.add(n.getOldValue());
+ break;
+ }
+
+ if(!r.isLoading()) {
+ if(!objects.isEmpty()) {
+ r.setModified(true);
+ }
+
+ for(Object o : objects) {
+ if(o instanceof EObject) {
+ TreeIterator<Object> properContents = EcoreUtil.getAllProperContents((EObject)o, false);
+ while(properContents.hasNext()) {
+ Object obj = properContents.next();
+ if(obj instanceof EObject) {
+ setReferencingResourcesAsModified((EObject)obj);
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+
+ super.notifyChanged(n);
+ }
+
+ protected void setReferencingResourcesAsModified(EObject eObj) {
+ Collection<Setting> references = EMFHelper.getUsages(eObj);
+ for (Setting setting : references) {
+ EStructuralFeature f = setting.getEStructuralFeature();
+ if(setting.getEObject() != null && !f.isDerived() && !f.isTransient()) {
+ Resource.Internal refResource = (org.eclipse.emf.ecore.resource.Resource.Internal)setting.getEObject().eResource();
+ if(refResource != null && !refResource.isLoading()) {
+ refResource.setModified(true);
+ }
+ }
+ }
+ }
+}

Back to the top