📄 collectionvalue.java
字号:
/* * USE - UML based specification environment * Copyright (C) 1999-2004 Mark Richters, University of Bremen * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program 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 * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *//* $ProjectHeader: use 2-3-0-release.1 Mon, 12 Sep 2005 20:18:33 +0200 green $ */package org.tzi.use.uml.ocl.value;import java.util.Collection;import java.util.Iterator;import org.tzi.use.uml.ocl.type.Type;import org.tzi.use.util.CollectionComparator;import org.tzi.use.uml.ocl.expr.ExpInvalidException;import java.util.HashSet;import java.util.Set;import org.tzi.use.uml.ocl.type.TypeFactory;/** * Base class for collection values. * * @version $ProjectVersion: 2-3-0-release.1 $ * @author Mark Richters * @see SetValue * @see SequenceValue * @see BagValue */public abstract class CollectionValue extends Value { private Type fElemType; // store frequently needed element type too CollectionValue(Type t, Type elemType) { super(t); fElemType = elemType; } public Type elemType() { return fElemType; } public void setElemType( Type t ) { fElemType = t; if (this instanceof SetValue) { setType( TypeFactory.mkSet(fElemType)); } else if (this instanceof BagValue) { setType( TypeFactory.mkBag(fElemType)); } else if (this instanceof SequenceValue) { setType( TypeFactory.mkSequence(fElemType)); } else { setType( TypeFactory.mkCollection(fElemType)); } } // public abstract void add(Value v); public abstract Iterator iterator(); public abstract int size(); public abstract boolean isEmpty(); public abstract boolean includes(Value v); public abstract boolean includesAll(CollectionValue v); public abstract boolean excludesAll(CollectionValue v); public abstract int count(Value v); public abstract Collection collection(); public int compareTo(Object o) { if (o == this ) return 0; if (o instanceof UndefinedValue ) return +1; if (o instanceof CollectionValue) { CollectionValue c = (CollectionValue)o; int res = new CollectionComparator().compare(collection(), c.collection()); if (c.getClass().equals( getClass() ) ) { return res; } else { return (res != 0) ? res : +1; } } throw new ClassCastException(); } /** * Returns the value for the type parameter of this collection. */ protected Type inferElementType() throws ExpInvalidException { if (collection().size() == 0) { return fElemType; } Value[] values = (Value[])collection().toArray(new Value[]{}); // easy case: one or more elements of equal type Type t0 = values[0].type(); boolean sameTypes = true; for (int i = 1; i < values.length; i++) if (! t0.equals(values[i].type()) ) { sameTypes = false; break; } if (sameTypes ) return t0; // determine common supertypes = intersection of all // supertypes of all elements Set cs = new HashSet(); cs.addAll(values[0].type().allSupertypes()); for (int i = 1; i < values.length; i++) { cs.retainAll(values[i].type().allSupertypes()); // return immediately if intersection is empty if (cs.isEmpty() ) throw new ExpInvalidException("Type mismatch, " + this.getClass().toString() + " element " + (i + 1) + " does not have a common supertype " + "with previous elements."); } // System.err.println("*** common supertypes: " + cs); // determine the least common supertype // if there is only one common supertype return it if (cs.size() == 1 ) return (Type) cs.iterator().next(); // search for a type that is less than or equal to all other types t0 = null; Iterator it1 = cs.iterator(); outerLoop: while (it1.hasNext() ) { Type t1 = (Type) it1.next(); Iterator it2 = cs.iterator(); while (it2.hasNext() ) { Type t2 = (Type) it2.next(); if (! t1.isSubtypeOf(t2) ) continue outerLoop; } t0 = t1; break; } // System.err.println("*** least common supertype: " + t0); if (t0 != null ) return t0; // FIXME: deal with other cases: t1 < t, t2 < t, t1 and t2 unrelated. throw new ExpInvalidException("Cannot determine type of " + this.getClass().toString() + "."); } protected void deriveRuntimeType() { try { setElemType(inferElementType()); } catch( ExpInvalidException e) { throw new RuntimeException(e); } } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -