Source Code Cross Referenced for JMLObjectToObjectMap.java in  » Testing » KeY » org » jmlspecs » models » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Testing » KeY » org.jmlspecs.models 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        // @(#)$Id: JMLObjectToObjectMap.java 1.3 Wed, 25 May 2005 14:55:29 +0200 engelc $
002:
003:        // Copyright (C) 1998, 1999, 2002 Iowa State University
004:
005:        // This file is part of JML
006:
007:        // JML is free software; you can redistribute it and/or modify
008:        // it under the terms of the GNU General Public License as published by
009:        // the Free Software Foundation; either version 2, or (at your option)
010:        // any later version.
011:
012:        // JML is distributed in the hope that it will be useful,
013:        // but WITHOUT ANY WARRANTY; without even the implied warranty of
014:        // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
015:        // GNU General Public License for more details.
016:
017:        // You should have received a copy of the GNU General Public License
018:        // along with JML; see the file COPYING.  If not, write to
019:        // the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
020:
021:        package org.jmlspecs.models;
022:
023:        import java.util.Enumeration;
024:
025:        /** Maps (i.e., binary relations that are functional) from non-null
026:         *  elements of {@link Object} to non-null elements of {@link
027:         *  Object}.  The first type, <kbd>Object</kbd>, is called
028:         *  the domain type of the map; the second type,
029:         *  <kbd>Object</kbd>, is called the range type of the map.  A
030:         *  map can be seen as a set of pairs, of form <em>(dv, rv)</em>,
031:         *  consisting of an element of the domain type, <em>dv</em>, and an
032:         *  element of the range type, <em>rv</em>.  Alternatively, it can be
033:         *  seen as a function that maps each element of the domain to some of
034:         *  elements of the range type.
035:         *
036:         *  <p> This type is a subtype of {@link
037:         *  JMLObjectToObjectRelation}, and as such as can be treated as a
038:         *  binary relation or a set valued function also.  See the
039:         *  documentation for {@link JMLObjectToObjectRelation} and for the
040:         *  methods inherited from this supertype for more information.
041:         *
042:         *  <p> This type considers elements <kbd>val</kbd> and <kbd>dv</kbd>
043:         *  of the domain type, to be distinct just when
044:         *  <kbd>_val_not_equal_to_dv_</kbd>.  It considers elements of
045:         *  <kbd>r</kbd> and <kbd>rv</kbd> of the range type to be distinct
046:         *  just when <kbd>_r_not_equal_to_rv_</kbd>.  Cloning takes place for
047:         *  the domain or range elements if the corresponding domain or range
048:         *  type is {@link JMLType}.
049:         *
050:         * @version $Revision: 1.3 $
051:         * @author Gary T. Leavens
052:         * @author Clyde Ruby
053:         * @see JMLCollection
054:         * @see JMLType
055:         * @see JMLObjectToObjectRelation
056:         * @see JMLObjectToObjectRelationEnumerator
057:         * @see JMLObjectToObjectRelationImageEnumerator
058:         * @see JMLValueSet
059:         * @see JMLObjectSet
060:         * @see JMLObjectToObjectMap
061:         * @see JMLValueToObjectMap
062:         * @see JMLObjectToValueMap
063:         * @see JMLValueToValueMap
064:         * @see JMLObjectToObjectRelation#toFunction()
065:         */
066:        //-@ immutable
067:        public/*@ pure @*/
068:        class JMLObjectToObjectMap extends JMLObjectToObjectRelation {
069:
070:            /*@ public invariant isaFunction();
071:              @ public invariant_redundantly
072:              @        (\forall Object dv; isDefinedAt(dv);
073:              @                                  elementImage(dv).int_size() == 1);
074:              @*/
075:
076:            /** Initialize this map to be the empty mapping.
077:             * @see #EMPTY
078:             */
079:            /*@  public normal_behavior
080:              @    assignable theRelation, owner, elementType, containsNull;
081:              @    ensures theRelation.equals(new JMLValueSet());
082:              @    ensures_redundantly theRelation.isEmpty();
083:              @*/
084:            public JMLObjectToObjectMap() {
085:                super ();
086:            }
087:
088:            /** Initialize this map to be a mapping that maps the given domain
089:             * element to the given range element.
090:             * @see #singletonMap(Object, Object)
091:             * @see #JMLObjectToObjectMap(JMLObjectObjectPair)
092:             */
093:            /*@  public normal_behavior
094:              @    requires dv != null && rv != null;
095:              @    assignable theRelation, owner, elementType, containsNull;
096:              @    ensures (theRelation.int_size() == 1) && elementImage(dv).has(rv);
097:              @    ensures_redundantly isDefinedAt(dv);
098:              @*/
099:            public JMLObjectToObjectMap(/*@ non_null @*/Object dv,
100:            /*@ non_null @*/Object rv) {
101:                super (dv, rv);
102:            }
103:
104:            /** Initialize this map to be a mapping that maps the key in the
105:             * given pair to the value in that pair.
106:             * @see #singletonMap(JMLObjectObjectPair)
107:             * @see #JMLObjectToObjectMap(Object, Object)
108:             */
109:            /*@  public normal_behavior
110:              @    requires pair != null;
111:              @    assignable theRelation, owner, elementType, containsNull;
112:              @    ensures (theRelation.int_size() == 1)
113:              @         && elementImage(pair.key).has(pair.value);
114:              @    ensures_redundantly isDefinedAt(pair.key);
115:              @*/
116:            public JMLObjectToObjectMap(/*@ non_null @*/
117:            JMLObjectObjectPair pair) {
118:                super (pair.key, pair.value);
119:            }
120:
121:            /** Initialize this map based on the representation values given.
122:             */
123:            //@    requires ipset != null && dom != null && 0 <= sz;
124:            //@    assignable theRelation, owner, elementType, containsNull;
125:            //@    ensures imagePairSet_ == ipset && domain_ == dom && size_ == sz;
126:            protected JMLObjectToObjectMap(JMLValueSet ipset, JMLObjectSet dom,
127:                    int sz) {
128:                super (ipset, dom, sz);
129:            }
130:
131:            /** The empty JMLObjectToObjectMap.
132:             * @see #JMLObjectToObjectMap()
133:             */
134:            public static final/*@ non_null @*/JMLObjectToObjectMap EMPTY = new JMLObjectToObjectMap();
135:
136:            /** Return the singleton map containing the given association.
137:             * @see #JMLObjectToObjectMap(Object, Object)
138:             * @see #singletonMap(JMLObjectObjectPair)
139:             */
140:            /*@ public normal_behavior
141:              @    requires dv != null && rv != null;
142:              @    ensures \result != null
143:              @         && \result.equals(new JMLObjectToObjectMap(dv, rv));
144:              @*/
145:            public static/*@ pure @*//*@ non_null @*/
146:            JMLObjectToObjectMap singletonMap(/*@ non_null @*/Object dv,
147:            /*@ non_null @*/Object rv) {
148:                return new JMLObjectToObjectMap(dv, rv);
149:            }
150:
151:            /** Return the singleton map containing the association described
152:             * by the given pair.
153:             * @see #JMLObjectToObjectMap(JMLObjectObjectPair)
154:             * @see #singletonMap(Object, Object)
155:             */
156:            /*@ public normal_behavior
157:              @    requires pair != null;
158:              @    ensures \result != null
159:              @         && \result.equals(new JMLObjectToObjectMap(pair));
160:              @*/
161:            public static/*@ pure @*//*@ non_null @*/
162:            JMLObjectToObjectMap singletonMap(
163:                    /*@ non_null @*/JMLObjectObjectPair pair) {
164:                return new JMLObjectToObjectMap(pair);
165:            }
166:
167:            /** Tells whether this relation is a function.
168:             */
169:            /*@ also
170:              @    public normal_behavior
171:              @      ensures \result;
172:              @*/
173:            //@ pure
174:            public boolean isaFunction() {
175:                return true;
176:            }
177:
178:            /** Return the range element corresponding to dv, if there is one.
179:             *
180:             * @param dv the domain element for which an association is
181:             * sought (the key to the table).
182:             * @exception JMLNoSuchElementException when dv is not associated
183:             * to any range element by this.
184:             * @see JMLObjectToObjectRelation#isDefinedAt
185:             * @see JMLObjectToObjectRelation#elementImage
186:             * @see JMLObjectToObjectRelation#image
187:             */
188:            /*@  public normal_behavior
189:              @    requires isDefinedAt(dv);
190:              @    ensures elementImage(dv).has(\result);
191:              @ also
192:              @  public exceptional_behavior
193:              @    requires !isDefinedAt(dv);
194:              @    signals (JMLNoSuchElementException);
195:              @*/
196:            public/*@ non_null @*/Object apply(Object dv)
197:                    throws JMLNoSuchElementException {
198:                JMLObjectSet img = elementImage(dv);
199:                if (img.int_size() == 1) {
200:                    Object res = img.choose();
201:                    return res;
202:                } else {
203:                    throw new JMLNoSuchElementException("Map not defined at "
204:                            + dv);
205:                }
206:            }
207:
208:            /*@ also
209:              @   public normal_behavior
210:              @     ensures \result instanceof JMLObjectToObjectMap
211:              @          && ((JMLObjectToObjectMap)\result)
212:              @                .theRelation.equals(this.theRelation);
213:              @*/
214:            //@ pure
215:            public Object clone() {
216:                return new JMLObjectToObjectMap(imagePairSet_, domain_, size_);
217:            }
218:
219:            /** Return a new map that is like this but maps the given domain
220:             *  element to the given range element.  Any previously existing
221:             *  mapping for the domain element is removed first.
222:             * @see JMLObjectToObjectRelation#insert(Object, Object)
223:             */
224:            /*@  public normal_behavior
225:              @    requires dv != null && rv != null;
226:              @    requires !isDefinedAt(dv) ==> int_size() < Integer.MAX_VALUE;
227:              @    ensures \result.equals(this.removeDomainElement(dv).add(dv, rv));
228:              @*/
229:            public/*@ non_null @*/
230:            JMLObjectToObjectMap extend(/*@ non_null @*/Object dv,
231:            /*@ non_null @*/Object rv) {
232:                JMLObjectToObjectMap newMap = this .removeDomainElement(dv);
233:                newMap = newMap.disjointUnion(new JMLObjectToObjectMap(dv, rv));
234:                return newMap;
235:            }
236:
237:            /** Return a new map that is like this but has no association for the
238:             *  given domain element.
239:             * @see JMLObjectToObjectRelation#removeFromDomain
240:             */
241:            /*@  public normal_behavior
242:              @    ensures \result.equals(removeFromDomain(dv).toFunction());
243:              @    ensures_redundantly !isDefinedAt(dv) ==> \result.equals(this);
244:              @*/
245:            public/*@ non_null @*/
246:            JMLObjectToObjectMap removeDomainElement(Object dv) {
247:                return super .removeFromDomain(dv).toFunction();
248:            }
249:
250:            /** Return a new map that is the composition of this and the given
251:             *  map.  The composition is done in the usual order; that is, if
252:             *  the given map maps x to y and this maps y to z, then the
253:             *  result maps x to z.
254:             * @see #compose(JMLObjectToObjectMap)
255:             */
256:            /*@  public normal_behavior
257:              @    requires othMap != null;
258:              @    ensures (\forall JMLValueObjectPair pair; ;
259:              @                 \result.theRelation.has(pair) 
260:              @                    == (\exists Object val;
261:              @                            othMap.elementImage(pair.key).has(val);
262:              @                            this.elementImage(val).has(pair.value) 
263:              @                            )
264:              @                );
265:              @*/
266:            public/*@ non_null @*/
267:            JMLValueToObjectMap compose(
268:                    /*@ non_null @*/JMLValueToObjectMap othMap) {
269:                return super .compose(othMap).toFunction();
270:            }
271:
272:            /** Return a new map that is the composition of this and the given
273:             *  map.  The composition is done in the usual order; that is, if
274:             *  the given map maps x to y and this maps y to z, then the
275:             *  result maps x to z.
276:             * @see #compose(JMLValueToObjectMap)
277:             */
278:            /*@  public normal_behavior
279:              @    requires othMap != null;
280:              @    ensures (\forall JMLObjectObjectPair pair; ;
281:              @                 \result.theRelation.has(pair) 
282:              @                    == (\exists Object val;
283:              @                            othMap.elementImage(pair.key).has(val);
284:              @                            this.elementImage(val).has(pair.value) 
285:              @                            )
286:              @                );
287:              @*/
288:            public/*@ non_null @*/
289:            JMLObjectToObjectMap compose(
290:                    /*@ non_null @*/JMLObjectToObjectMap othMap) {
291:                return super .compose(othMap).toFunction();
292:            }
293:
294:            /** Return a new map that only maps elements in the given domain
295:             * to the corresponding range elements in this map.
296:             * @see #rangeRestrictedTo
297:             * @see JMLObjectToObjectRelation#restrictDomainTo
298:             */
299:            /*@  public normal_behavior
300:              @    requires dom != null;
301:              @    ensures (\forall JMLObjectObjectPair pair; ; 
302:              @                 \result.theRelation.has(pair)
303:              @                    == 
304:              @                       dom.has(pair.key) 
305:              @                    && elementImage(pair.key).has(pair.value)
306:              @                );
307:              @*/
308:            public/*@ non_null @*/
309:            JMLObjectToObjectMap restrictedTo(/*@ non_null @*/JMLObjectSet dom) {
310:                return super .restrictDomainTo(dom).toFunction();
311:            }
312:
313:            /** Return a new map that is like this map but only contains
314:             *  associations that map to range elements in the given set.
315:             * @see #restrictedTo
316:             * @see JMLObjectToObjectRelation#restrictRangeTo
317:             */
318:            /*@  public normal_behavior
319:              @    requires rng != null;
320:              @    ensures (\forall JMLObjectObjectPair pair; ;
321:              @                 \result.theRelation.has(pair)
322:              @                    == 
323:              @                       rng.has(pair.value) 
324:              @                    && elementImage(pair.key).has(pair.value)
325:              @                );
326:              @*/
327:            public/*@ non_null @*/
328:            JMLObjectToObjectMap rangeRestrictedTo(
329:                    /*@ non_null @*/JMLObjectSet rng) {
330:                return super .restrictRangeTo(rng).toFunction();
331:            }
332:
333:            /** Return a new map that is like the union of the given map and
334:             *  this map, except that if both define a mapping for a given domain
335:             *  element, then only the mapping in the given map is retained.
336:             * @see #clashReplaceUnion
337:             * @see #disjointUnion
338:             * @see JMLObjectToObjectRelation#union
339:             */
340:            /*@  public normal_behavior
341:              @    requires othMap != null;
342:              @    requires int_size()
343:              @             <= Integer.MAX_VALUE - othMap.difference(this).int_size();
344:              @    ensures (\forall JMLObjectObjectPair pair; ;
345:              @                 \result.theRelation.has(pair)
346:              @                    == 
347:              @                       othMap.elementImage(pair.key).has(pair.value)
348:              @                    || (!othMap.isDefinedAt(pair.key)
349:              @                        && this.elementImage(pair.key).has(pair.value))
350:              @                );
351:              @*/
352:            public/*@ non_null @*/
353:            JMLObjectToObjectMap extendUnion(
354:                    /*@ non_null @*/JMLObjectToObjectMap othMap)
355:                    throws IllegalStateException {
356:                JMLObjectToObjectMap newMap = this .restrictedTo(this .domain_
357:                        .difference(othMap.domain_));
358:                if (newMap.size_ <= Integer.MAX_VALUE - othMap.size_) {
359:                    return new JMLObjectToObjectMap(newMap.imagePairSet_
360:                            .union(othMap.imagePairSet_), newMap.domain_
361:                            .union(othMap.domain_), newMap.size_ + othMap.size_);
362:                } else {
363:                    throw new IllegalStateException(TOO_BIG_TO_UNION);
364:                }
365:            }
366:
367:            /** Return a new map that is like the union of the given map and
368:             * this map, except that if both define a mapping for a given
369:             * domain element, then each of these clashes is replaced by a
370:             * mapping from the domain element in question to the given range
371:             * element.
372:             * @param othMap the other map.
373:             * @param errval the range element to use when clashes occur.
374:             * @see #extendUnion
375:             * @see #disjointUnion
376:             * @see JMLObjectToObjectRelation#union
377:             */
378:            /*@  public normal_behavior
379:              @    requires othMap != null && errval != null;
380:              @    requires int_size()
381:              @             <= Integer.MAX_VALUE - othMap.difference(this).int_size();
382:              @    ensures (\forall JMLObjectObjectPair pair; ; 
383:              @                 \result.theRelation.has(pair)
384:              @                    == 
385:              @                       (!othMap.isDefinedAt(pair.key)
386:              @                        && this.elementImage(pair.key).has(pair.value))
387:              @                    || (!this.isDefinedAt(pair.key)
388:              @                        && othMap.elementImage(pair.key)
389:              @                                 .has(pair.value))
390:              @                    || (this.isDefinedAt(pair.key)
391:              @                        && othMap.isDefinedAt(pair.key)
392:              @                        && pair.value  == (errval))
393:              @                );
394:              @ implies_that
395:              @    requires othMap != null && errval != null;
396:              @*/
397:            public/*@ non_null @*/
398:            JMLObjectToObjectMap clashReplaceUnion(JMLObjectToObjectMap othMap,
399:                    Object errval) throws IllegalStateException {
400:                JMLObjectSet overlap = this .domain_
401:                        .intersection(othMap.domain_);
402:                Enumeration overlapEnum = overlap.elements();
403:                othMap = othMap
404:                        .restrictedTo(othMap.domain_.difference(overlap));
405:                JMLObjectToObjectMap newMap = this .restrictedTo(this .domain_
406:                        .difference(overlap));
407:                JMLObjectToObjectRelation newRel;
408:                if (newMap.size_ <= Integer.MAX_VALUE - othMap.size_) {
409:                    newRel = new JMLObjectToObjectRelation(newMap.imagePairSet_
410:                            .union(othMap.imagePairSet_), newMap.domain_
411:                            .union(othMap.domain_), newMap.size_ + othMap.size_);
412:                } else {
413:                    throw new IllegalStateException(TOO_BIG_TO_UNION);
414:                }
415:                Object dv;
416:                while (overlapEnum.hasMoreElements()) {
417:                    Object oo = overlapEnum.nextElement();
418:                    dv = (Object) oo;
419:                    newRel = newRel.add(dv, errval);
420:                }
421:                return newRel.toFunction();
422:            }
423:
424:            /** Return a map that is the disjoint union of this and othMap.
425:             *  @param othMap the other mapping
426:             *  @exception JMLMapException the ranges of this and othMap have elements
427:             *  in common (i.e., when they interesect).
428:             * @see #extendUnion
429:             * @see #clashReplaceUnion
430:             * @see JMLObjectToObjectRelation#union
431:             */
432:            /*@  public normal_behavior
433:              @    requires othMap != null
434:              @          && this.domain().intersection(othMap.domain()).isEmpty();
435:              @    requires int_size() <= Integer.MAX_VALUE - othMap.int_size();
436:              @    ensures \result.equals(this.union(othMap));
437:              @ also
438:              @  public exceptional_behavior
439:              @    requires othMap != null
440:              @          && !this.domain().intersection(othMap.domain()).isEmpty();
441:              @    signals (JMLMapException);
442:              @*/
443:            public/*@ non_null @*/
444:            JMLObjectToObjectMap disjointUnion(
445:                    /*@ non_null @*/JMLObjectToObjectMap othMap)
446:                    throws JMLMapException, IllegalStateException {
447:                JMLObjectSet overlappingDom = domain_
448:                        .intersection(othMap.domain_);
449:                if (overlappingDom.isEmpty()) {
450:                    if (this .size_ <= Integer.MAX_VALUE - othMap.size_) {
451:                        return new JMLObjectToObjectMap(this .imagePairSet_
452:                                .union(othMap.imagePairSet_), this .domain_
453:                                .union(othMap.domain_), this .size_
454:                                + othMap.size_);
455:                    } else {
456:                        throw new IllegalStateException(TOO_BIG_TO_UNION);
457:                    }
458:                } else {
459:                    throw new JMLMapException("Overlapping domains in "
460:                            + " disjointUnion operation", overlappingDom);
461:                }
462:            }
463:
464:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.