/** * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright (C) 2007 Ronny Brandt (Ronny_Brandt@web.de). * * All rights reserved. * * * * This work was done as a project at the Chair for Software Technology, * * Dresden University Of Technology, Germany (http://st.inf.tu-dresden.de). * * It is understood that any modification not identified as such is not * * covered by the preceding statement. * * * * This work is free software; you can redistribute it and/or modify it * * under the terms of the GNU Library General Public License as published * * by the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This work is distributed in the hope that it will be useful, but WITHOUT * * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public * * License for more details. * * * * You should have received a copy of the GNU Library General Public License * * along with this library; if not, you can view it online at * * http://www.fsf.org/licensing/licenses/gpl.html. * * * * To submit a bug report, send a comment, or get the latest news on this * * project, please visit the website: http://dresden-ocl.sourceforge.net. * * For more information on OCL and related projects visit the OCL Portal: * * http://st.inf.tu-dresden.de/ocl * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ package org.dresdenocl.modelinstance.base; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Map; import java.util.Set; import java.util.WeakHashMap; import org.dresdenocl.essentialocl.EssentialOclPlugin; import org.dresdenocl.model.IModel; import org.dresdenocl.modelinstance.IModelInstance; import org.dresdenocl.modelinstancetype.types.ComplexType; import org.dresdenocl.modelinstancetype.types.IModelInstanceElement; import org.dresdenocl.modelinstancetype.types.IModelInstanceFactory; import org.dresdenocl.modelinstancetype.types.IModelInstanceObject; import org.dresdenocl.modelinstancetype.types.IModelInstanceVoid; import org.dresdenocl.pivotmodel.Operation; import org.dresdenocl.pivotmodel.Property; import org.dresdenocl.pivotmodel.Type; /** * <p> * An abstract implementation of {@link IModelInstance}. * </p> * * @author Ronny Brandt: Implemented first version * @author Claas Wilke: Refactored and added Java-Doc. */ public abstract class AbstractModelInstance implements IModelInstance { /** The {@link IModel} of this {@link IModelInstance}. */ protected IModel myModel; /** Contains all {@link IModelInstanceObject}s of this model instance. */ protected Set<IModelInstanceObject> myModelInstanceObjects = new HashSet<IModelInstanceObject>(); /** * <p> * Contains all {@link IModelInstanceObject}s of this model instance ordered * by their type's name. * </p> * <strong>This map is a {@link WeakHashMap}. If the adapted {@link Type} * does not exist any more, the adapter is also disposed.</strong> */ protected Map<Type, Set<IModelInstanceObject>> myModelInstanceObjectsByType = new WeakHashMap<Type, Set<IModelInstanceObject>>(); /** * The {@link IModelInstanceFactory} used to created adapters for the * {@link IModelInstanceElement}s. */ protected IModelInstanceFactory myModelInstanceFactory; /** The name of the model instance. */ protected String myName = ""; /** * <p> * A helper method that adapts the result of an {@link Operation} invocation * or a {@link Property} access of the excepted given {@link Type}. * * @param adapteeResult * The {@link Object} result that shall be adapted. * @param type * The Type to which the result shall be adapted. * @param factory * The {@link JavaModelInstanceFactory} used to adapt the result. * @return The adapted results as an {@link IModelInstanceElement}. */ public static IModelInstanceElement adaptInvocationResult( Object adapteeResult, Type type, IModelInstanceFactory factory) { IModelInstanceElement result; /* Check if the result is expected as void. */ if (type.equals(EssentialOclPlugin.getOclLibraryProvider() .getOclLibrary().getOclVoid())) { result = IModelInstanceVoid.INSTANCE; } else { result = factory.createModelInstanceElement(adapteeResult, type); } return result; } /* * (non-Javadoc) * * @see * org.dresdenocl.modelbus.modelinstance.IModelInstance#getElementTypes * () */ public Set<Type> getAllImplementedTypes() { Set<Type> result = new HashSet<Type>(); for (IModelInstanceElement modelObject : this.myModelInstanceObjects) { Type type; type = modelObject.getType(); /* Handle ComplexTypes especially. */ if (type instanceof ComplexType) { for (Type anImplementedType : ((ComplexType) type) .getImplementedTypes()) { result.add(anImplementedType); } } else { result.add(type); } } return result; } /* * (non-Javadoc) * * @see * org.dresdenocl.modelbus.modelinstance.IModelInstance#getAllInstances * (org.dresdenocl.pivotmodel.Type) */ public Set<IModelInstanceObject> getAllInstances(Type type) { if (type == null) { throw new IllegalArgumentException( "Parameter type must not be null"); } // no else. Set<IModelInstanceObject> result; result = new HashSet<IModelInstanceObject>(); for (Type aType : this.myModelInstanceObjectsByType.keySet()) { /* Check all elements of the type or sub types. */ if (aType.conformsTo(type)) { result.addAll(this.myModelInstanceObjectsByType.get(aType)); } // no else. } // end for. return result; } /* * (non-Javadoc) * * @seeorg.dresdenocl.modelbus.modelinstance.IModelInstance# * getAllModelInstanceObjects() */ public List<IModelInstanceObject> getAllModelInstanceObjects() { return new ArrayList<IModelInstanceObject>(this.myModelInstanceObjects); } /* * (non-Javadoc) * * @see org.dresdenocl.modelbus.IModelInstance#getDisplayName() */ public String getDisplayName() { return this.myName; } /* * (non-Javadoc) * * @see org.dresdenocl.modelbus.IModelInstance#getModel() */ public IModel getModel() { return this.myModel; } /* * (non-Javadoc) * * @seeorg.dresdenocl.modelbus.modelinstance.IModelInstance# * getModelInstanceFactory() */ public IModelInstanceFactory getModelInstanceFactory() { return this.myModelInstanceFactory; } /* * (non-Javadoc) * * @see * org.dresdenocl.modelbus.IModelInstance#isInstanceOf(tudresden. * ocl20 .pivot.modelbus.IModel) */ public boolean isInstanceOf(IModel model) { if (model == null) { throw new IllegalArgumentException( "Parameter 'model' must not be null."); } // no else. return this.myModel.equals(model); } /* * (non-Javadoc) * * @see * org.dresdenocl.modelinstance.IModelInstance#removeModelInstanceElement * (org.dresdenocl.modelinstancetype.types.IModelInstanceObject) */ public void removeModelInstanceElement(IModelInstanceObject imiObject) { Set<IModelInstanceObject> objectsByType; if (this.myModelInstanceObjectsByType.containsKey(imiObject.getType())) { objectsByType = this.myModelInstanceObjectsByType.get(imiObject .getType()); objectsByType.remove(imiObject); if (objectsByType.size() > 0) { this.myModelInstanceObjectsByType.put(imiObject.getType(), objectsByType); } else { this.myModelInstanceObjectsByType.remove(imiObject.getType()); } } // no else. this.myModelInstanceObjects.remove(imiObject); } /** * <p> * Adds a given {@link IModelInstanceObject} to the {@link Type} mapping of * this {@link AbstractModelInstance}. * </p> * * @param modelInstanceObject * The {@link IModelInstanceObject} that shall be added to the * {@link Type} mapping. */ protected void addModelInstanceObjectToCache( IModelInstanceObject modelInstanceObject) { Type type; type = modelInstanceObject.getType(); /* Handle ComplexTypes especially. */ if (type instanceof ComplexType) { for (Type anImplementedType : ((ComplexType) type) .getImplementedTypes()) { if (this.myModelInstanceObjectsByType .containsKey(anImplementedType)) { this.myModelInstanceObjectsByType.get(anImplementedType) .add(modelInstanceObject); } else { Set<IModelInstanceObject> modelObjects; modelObjects = new HashSet<IModelInstanceObject>(); modelObjects.add(modelInstanceObject); myModelInstanceObjectsByType.put(anImplementedType, modelObjects); } } // end for. } else { if (this.myModelInstanceObjectsByType.containsKey(type)) { this.myModelInstanceObjectsByType.get(type).add( modelInstanceObject); } else { Set<IModelInstanceObject> modelObjects; modelObjects = new HashSet<IModelInstanceObject>(); modelObjects.add(modelInstanceObject); myModelInstanceObjectsByType.put(type, modelObjects); } } } /** * <p> * A helper method that adds all adapted {@link IModelInstanceObject} of * this {@link AbstractModelInstance} contained in the filed * {@link AbstractModelInstance#myModelInstanceObjects} to the {@link Type} * mapping of this {@link AbstractModelInstance}. * </p> */ protected void initializeTypeMapping() { for (IModelInstanceObject modelInstanceObject : this.myModelInstanceObjects) { this.addModelInstanceObjectToCache(modelInstanceObject); } } }