com.sri.ai.util.collect.ManyToManyRelation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aic-util Show documentation
Show all versions of aic-util Show documentation
SRI International's AIC Utility Library (for Java 1.6+)
/*
* Copyright (c) 2013, SRI International
* All rights reserved.
* Licensed under the The BSD 3-Clause License;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://opensource.org/licenses/BSD-3-Clause
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* Neither the name of the aic-util nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.sri.ai.util.collect;
import java.util.Collection;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import com.google.common.annotations.Beta;
import com.sri.ai.util.Util;
import com.sri.ai.util.base.Pair;
/**
* Represents a many-to-many relation with amortized constant-time search for
* the tuples of a given element.
*
* @author braz
*/
@Beta
public class ManyToManyRelation {
private Map> fromAToItsBs = new LinkedHashMap>();
private Map> fromBToItsAs = new LinkedHashMap>();
public ManyToManyRelation() {
}
public void add(A a, B b) {
Util.addToCollectionValuePossiblyCreatingIt(fromAToItsBs, a, b, HashSet.class);
Util.addToCollectionValuePossiblyCreatingIt(fromBToItsAs, b, a, HashSet.class);
}
public void remove(A a, B b) {
removeThisAFromAsOfThisB(a, b);
removeThisBFromBsOfThisA(a, b);
}
/**
* Remove all tuples with a
as first dimension.
*
* @param a
* the item used in the removal logic.
*/
public void removeA(A a) {
Collection bsOfThisA = fromAToItsBs.get(a);
if (bsOfThisA == null) { // a is not present
return;
}
fromAToItsBs.remove(a); // we remove a from the list of As, but first we saved its Bs, which need to be updated as well.
// Now we notify them.
for (B b : bsOfThisA) {
removeThisAFromAsOfThisB(a, b);
}
}
/**
* Remove all tuples with elements in collection as
as first
* dimension.
*
* @param as
* the items used in the removal logic.
*/
public void removeAllAs(Collection as) {
for (A a : as) {
removeA(a);
}
}
/**
* Indicates whether an element a
is present in the first
* dimension.
*
* @param a
* the item to test if its in the first dimension.
* @return true if the given argument is in the first dimension.
*/
public boolean containsA(A a) {
return fromAToItsBs.containsKey(a);
}
/**
* Remove all tuples with b
as second dimension.
*
* @param b
* the argument to match on.
*/
public void removeB(B b) {
Collection asOfThisB = fromBToItsAs.get(b);
if (asOfThisB == null) { // b is not present
return;
}
fromBToItsAs.remove(b); // we remove b from the list of Bs, but first we saved its As, which need to be updated as well.
// Now we notify them.
for (A a : asOfThisB) {
removeThisBFromBsOfThisA(a, b);
}
}
/**
* Remove all tuples with elements in collection bs
as second
* dimension.
*
* @param bs
* the arguments to match on.
*/
public void removeAllBs(Collection bs) {
for (B b : bs) {
removeB(b);
}
}
/**
* @param b
* element to test for containment.
* @return true if element b
is present in the second dimension.
*/
public boolean containsB(B b) {
return fromBToItsAs.containsKey(b);
}
public void clear() {
fromAToItsBs.clear();
fromBToItsAs.clear();
}
public Collection getAs() {
return new LinkedHashSet(fromAToItsBs.keySet());
}
public Collection getBs() {
return new LinkedHashSet(fromBToItsAs.keySet());
}
/**
* @param a
* the element to relate to.
* @return collection of second-dimension elements relating to
* a
.
*/
public Collection getBsOfA(A a) {
Collection bsOfThisA = fromAToItsBs.get(a);
if (bsOfThisA == null) {
return new LinkedHashSet();
}
return new LinkedHashSet(bsOfThisA);
}
/**
* @param b
* the element to relate to.
* @return collection of first-dimension elements relating to b
.
*/
public Collection getAsOfB(B b) {
Collection asOfThisB = fromBToItsAs.get(b);
if (asOfThisB == null) {
return new LinkedHashSet();
}
return new LinkedHashSet(fromBToItsAs.get(b));
}
private void removeThisAFromAsOfThisB(A a, B b) {
Collection asOfThisB = fromBToItsAs.get(b);
if (asOfThisB == null) {
return;
}
asOfThisB.remove(a);
if (asOfThisB.isEmpty()) { // this B is not in the relation anymore, so we remove it from the list of Bs.
fromBToItsAs.remove(b);
}
}
private void removeThisBFromBsOfThisA(A a, B b) {
Collection bsOfThisA = fromAToItsBs.get(a);
if (bsOfThisA == null) {
return;
}
bsOfThisA.remove(b);
if (bsOfThisA.isEmpty()) { // this A is not in the relation anymore, so we remove it from the list of As.
fromAToItsBs.remove(a);
}
}
/**
* @return an iterator over the pairs in this relationship; the iterator is
* not supported by the underlying relationship storage.
*/
public Iterator> iterator() {
List> list = new LinkedList>();
for (A a : getAs()) {
for (B b : getBsOfA(a)) {
list.add(new Pair(a, b));
}
}
return list.iterator();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy