blob: e6578b373d438f9a2c2cd9671196ed4ccca06653 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2002, 2004, 2006 IBM Corporation 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:
* IBM Corporation - initial API and implementation
****************************************************************************/
package org.eclipse.gmf.runtime.diagram.core.internal.listener;
import java.util.Collection;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
import org.eclipse.emf.common.command.Command;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EReference;
import org.eclipse.emf.transaction.RecordingCommand;
import org.eclipse.emf.transaction.TransactionalEditingDomain;
import org.eclipse.emf.transaction.TriggerListener;
import org.eclipse.gmf.runtime.common.core.util.StringStatics;
import org.eclipse.gmf.runtime.emf.core.util.PackageUtil;
import org.eclipse.gmf.runtime.notation.Diagram;
import org.eclipse.gmf.runtime.notation.NotationPackage;
/**
* The following class implements the Notation semantic procedures.
*
* @author rafikj, cmahoney
*/
public class NotationSemProc extends TriggerListener {
private static NotationPackage notation = NotationPackage.eINSTANCE;
private static Set autoNamedElements = new HashSet();
private static Set nonAutoNamedElements = new HashSet();
static {
autoNamedElements.add(notation.getDiagram());
}
private boolean shouldHandleNotification(Notification notification){
if (notification.getNotifier() instanceof EObject &&
notification.getFeature() instanceof EReference &&
((EReference)notification.getFeature()).isContainment()){
Object newValue = notification.getNewValue();
if (newValue!=null){
if (newValue instanceof Diagram)
return true;
if (newValue instanceof Collection){
Collection collection = (Collection)newValue;
for (Iterator iter = collection.iterator(); iter.hasNext();) {
if (iter.next() instanceof Diagram)
return true;
}
}
}
}
return false;
}
/**
* Handle sem-proc event.
*/
protected Command trigger(TransactionalEditingDomain editingDomain, Notification notification) {
if (!shouldHandleNotification(notification))
return null;
int eventType = notification.getEventType();
Object notifier = notification.getNotifier();
Object feature = notification.getFeature();
Object newValue = notification.getNewValue();
if (notifier instanceof EObject) {
EObject eObject = (EObject) notifier;
if ((feature instanceof EReference)
&& (((EReference) feature).isContainment())) {
if ((eventType == Notification.ADD)
&& (newValue instanceof EObject)) {
return getAutoNameCommand(editingDomain, eObject, (EReference) feature, (EObject) newValue);
} else if ((eventType == Notification.ADD_MANY)
&& (newValue instanceof Collection)) {
return getAutoNameCommand(editingDomain, eObject, (EReference) feature,
(Collection) newValue);
} else if (((eventType == Notification.SET) || (eventType == Notification.UNSET))) {
if (newValue instanceof EObject) {
return getAutoNameCommand(editingDomain, eObject, (EReference) feature,
(EObject) newValue);
}
}
}
}
return null;
}
/**
* Returns a command that will auto-name the collection of
* <code>EObjects</code> passed in.
*
* @param editingDomain
* @param container
* @param reference
* @param objects
* @return
*/
private Command getAutoNameCommand(
TransactionalEditingDomain editingDomain, final EObject container,
final EReference reference, final Collection objects) {
return new RecordingCommand(editingDomain) {
protected void doExecute() {
autoName(container, reference, objects);
}
};
}
/**
* Returns a command that will auto-name the <code>EObject</code> passed
* in.
*
* @param editingDomain
* @param container
* @param reference
* @param eObject
* @return
*/
private Command getAutoNameCommand(
TransactionalEditingDomain editingDomain, final EObject container,
final EReference reference, final EObject eObject) {
return new RecordingCommand(editingDomain) {
protected void doExecute() {
autoName(container, reference, eObject);
}
};
}
/**
* Can I auto-name object?
*/
private static boolean canAutoName(EClass eClass) {
if (autoNamedElements.contains(eClass))
return true;
if (nonAutoNamedElements.contains(eClass))
return false;
Iterator i = eClass.getESuperTypes().iterator();
while (i.hasNext()) {
if (canAutoName((EClass) i.next()))
return true;
}
return false;
}
/**
* Auto-name objects.
*/
private static void autoName(EObject container, EReference reference,
Collection objects) {
for (Iterator i = objects.iterator(); i.hasNext();) {
Object object = i.next();
if (object instanceof EObject) {
EObject eObject = (EObject) object;
autoName(container, reference, eObject);
}
}
}
/**
* Auto-name object.
*/
private static void autoName(EObject container, EReference reference,
EObject eObject) {
String name = null;
if (eObject instanceof Diagram){
name = ((Diagram) eObject).getName();
if (((name == null) || (name.equals(StringStatics.BLANK))
&& (canAutoName(eObject.eClass())))) {
name = PackageUtil.getLocalizedName(eObject.eClass());
if (reference.isMany()) {
Set set = new HashSet();
Iterator i = ((Collection) container.eGet(reference))
.iterator();
while (i.hasNext()) {
Object sibling = i.next();
if (sibling != null) {
String n = null;
if (sibling instanceof Diagram)
n = ((Diagram) sibling).getName();
if (n != null)
set.add(n);
}
}
for (int j = 1; j <= Integer.MAX_VALUE; j++) {
String n = name + j;
if (!set.contains(n)) {
name = n;
break;
}
}
}
((Diagram) eObject).setName(name);
}
}
}
}