blob: 7b3bd95c4ec5d1a6ee4ea426e95664c675fbaf19 [file] [log] [blame]
/*
* Copyright (c) 2005, 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 - initial API and implementation
*
* $Id: UMLHandler.java,v 1.2 2006/12/14 15:49:34 khussey Exp $
*/
package org.eclipse.uml2.uml.internal.resource;
import java.util.HashMap;
import java.util.Map;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.EFactory;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EPackage;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.emf.ecore.resource.impl.ResourceImpl;
import org.eclipse.emf.ecore.xmi.XMLHelper;
import org.eclipse.emf.ecore.xmi.XMLResource;
import org.eclipse.emf.ecore.xmi.impl.SAXXMIHandler;
import org.eclipse.emf.ecore.xml.type.AnyType;
public class UMLHandler
extends SAXXMIHandler {
protected final Map<URI, Map<String, EObject>> urisToProxies = new HashMap<URI, Map<String, EObject>>();
public UMLHandler(XMLResource xmiResource, XMLHelper helper,
Map<?, ?> options) {
super(xmiResource, helper, options);
}
@Override
public void endDocument() {
super.endDocument();
if (extendedMetaData != null) {
for (EPackage demandedPackage : extendedMetaData.demandedPackages()) {
String nsURI = demandedPackage.getNsURI();
if (nsURI != null) {
if (urisToLocations != null) {
URI locationURI = urisToLocations.get(nsURI);
if (locationURI != null) {
Resource resource = new ResourceImpl();
resource.setURI(locationURI);
resource.getContents().add(demandedPackage);
}
}
for (Map.Entry<String, String> entry : helper
.getPrefixToNamespaceMap()) {
if (nsURI.equals(entry.getValue())) {
demandedPackage.setNsPrefix(entry.getKey());
}
}
}
}
}
}
@Override
protected EObject validateCreateObjectFromFactory(EFactory factory,
String typeName, EObject newObject, EStructuralFeature feature) {
if (!(objects.peek() instanceof AnyType) && newObject != null
&& newObject.eIsProxy() && !sameDocumentProxies.contains(newObject)) {
URI proxyURI = ((InternalEObject) newObject).eProxyURI();
Map<String, EObject> typeNamesToProxies = urisToProxies
.get(proxyURI);
if (typeNamesToProxies == null) {
urisToProxies.put(proxyURI,
typeNamesToProxies = new HashMap<String, EObject>());
}
EObject proxy = typeNamesToProxies.get(typeName);
if (proxy == null) {
typeNamesToProxies.put(typeName, proxy = newObject);
}
// canonicalize proxies
newObject = proxy;
}
return super.validateCreateObjectFromFactory(factory, typeName,
newObject, feature);
}
}