Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: eb791be64b0ce9153e2ca54750e4e0bfd6e799a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*****************************************************************************
 * Copyright (c) 2014, 2015 CEA LIST, Christian W. Damus, 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:
 *   CEA LIST - Initial API and implementation
 *   Christian W. Damus - bug 465416
 *
 *****************************************************************************/

package org.eclipse.papyrus.infra.sync;

import java.util.Collection;
import java.util.Collections;
import java.util.List;

import org.eclipse.emf.common.command.Command;
import org.eclipse.emf.common.command.CommandWrapper;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EReference;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.ecore.util.EContentsEList;
import org.eclipse.emf.ecore.util.EcoreUtil;
import org.eclipse.emf.ecore.util.FeatureMapUtil;
import org.eclipse.emf.edit.command.AddCommand;
import org.eclipse.emf.edit.command.DeleteCommand;
import org.eclipse.emf.edit.command.RemoveCommand;
import org.eclipse.emf.edit.command.SetCommand;

import com.google.common.base.Objects;

/**
 * A synchronization feature for synchronizing {@link EReference}s between {@link EObject}s.
 *
 * @author Laurent Wouters
 *
 * @param <M>
 *            The type of the underlying model element common to all synchronized items in a single bucket
 */
public abstract class EObjectEReferenceSyncFeature<M extends EObject> extends EStructuralFeatureSyncFeature<M, EObject> {
	/**
	 * Initialized this feature
	 *
	 * @param bucket
	 *            The bucket doing the synchronization
	 */
	public EObjectEReferenceSyncFeature(SyncBucket<M, EObject, Notification> bucket, EReference reference, EReference... more) {
		super(bucket, reference, more);
	}

	@Override
	protected List<? extends EObject> getContents(EObject backend) {
		return new EContentsEList<EObject>(backend, features);
	}

	@Override
	protected EObject getNotifier(EObject backend) {
		return backend;
	}

	@Override
	protected EObject getModelOfNotifier(EObject backendNotifier) {
		return backendNotifier;
	}

	/**
	 * Obtains a command that simply copies the new model element into the same feature of the target.
	 */
	@Override
	protected Command doGetAddCommand(final SyncItem<M, EObject> from, final SyncItem<M, EObject> to, final EObject newSource) {
		EReference reference = getReferencingFeature(from.getBackend(), newSource);
		final EObject copy = EcoreUtil.copy(newSource);

		return new CommandWrapper(reference.isMany()
				? AddCommand.create(getEditingDomain(), to.getBackend(), reference, copy)
				: SetCommand.create(getEditingDomain(), to.getBackend(), reference, copy)) {

			@Override
			public Collection<?> getResult() {
				return Collections.singletonList(copy);
			}
		};
	}

	@Override
	protected Command doGetRemoveCommand(final SyncItem<M, EObject> from, final EObject oldSource, final SyncItem<M, EObject> to, final EObject oldTarget) {
		EReference reference = getReferencingFeature(to.getBackend(), oldTarget);

		return reference.isContainment()
				? createDeleteCommand(oldTarget)
				: reference.isMany()
						? RemoveCommand.create(getEditingDomain(), to.getBackend(), reference, oldTarget)
						: SetCommand.create(getEditingDomain(), to.getBackend(), reference, SetCommand.UNSET_VALUE);
	}

	protected Command createDeleteCommand(EObject object) {
		return DeleteCommand.create(getEditingDomain(), object);
	}

	protected EReference getReferencingFeature(EObject owner, EObject referenced) {
		EReference result = null;

		for (int i = 0; (result == null) && (i < features.length); i++) {
			if (contains(owner, features[i], referenced)) {
				result = (EReference) features[i]; // We only allow references in the constructor
			}
		}

		return result;
	}

	private boolean contains(EObject owner, EStructuralFeature feature, Object value) {
		return FeatureMapUtil.isMany(owner, feature)
				? ((Collection<?>) owner.eGet(feature)).contains(value)
				: Objects.equal(owner.eGet(feature), value);
	}
}

Back to the top