initial import
[sbp.git] / src / edu / berkeley / sbp / util / TopologicalBag.java
1 package edu.berkeley.sbp.util;
2 import edu.berkeley.sbp.util.*;
3 import edu.berkeley.sbp.*;
4 import java.io.*;
5 import java.util.*;
6 import java.lang.reflect.*;
7 import java.lang.ref.*;
8
9 //
10 // This is a fairly crude implementation; if things need to be fast,
11 // you should implement a special-purpose class
12 //
13
14 /** a mapping from topologies over <tt>K</tt> to <i>sets of</i> values of type <tt>V</tt> */
15 public class TopologicalBag<K,V> implements MapBag<Topology<K>,V> {
16
17     // CRUCIAL INVARIANT: keys in this hashmap MUST be disjoint or the universe will implode
18     private final HashMap<Topology<K>,HashSet<V>> h = new HashMap<Topology<K>,HashSet<V>>();
19
20     public Iterator<Topology<K>> iterator() { return h.keySet().iterator(); }
21
22     public void addAll(TopologicalBag<K,V> tb) {
23         for(Topology<K> k : tb)
24             addAll(k, tb.getAll(k));
25     }
26
27     public void add(Topology<K> t, V v) { put(t, v); }
28     public void addAll(Topology<K> k, Iterable<V> vi) { putAll(k, vi); }
29
30     public void putAll(Topology<K> k, Iterable<V> vi) { for(V v : vi) put(k, v); }
31     public void put(Topology<K> t, V v) {
32         for(Topology<K> ht : h.keySet()) {
33             if (t.disjoint(ht)) continue;
34             if (t.equals(ht)) {
35                 h.get(ht).add(v);
36                 return;
37             }
38             if (ht.containsAll(t)) {
39                 HashSet<V> v0 = h.get(ht);
40                 HashSet<V> v1 = new HashSet<V>();
41                 v1.addAll(v0);
42                 h.remove(ht);
43                 v1.add(v);
44                 h.put(ht.intersect(t), v1);
45                 h.put(ht.minus(t), v0);
46                 return;
47             }
48             put(t.intersect(ht), v);
49             put(t.minus(ht), v);
50             return;
51         }
52         HashSet<V> v1 = new HashSet<V>();
53         v1.add(v);
54         h.put(t, v1);
55     }
56
57
58     public TopologicalBag<K,V> subset(Topology<K> t) {
59         TopologicalBag<K,V> ret = new TopologicalBag<K,V>();
60         for(Topology<K> ht : h.keySet()) {
61             if (ht.disjoint(t)) continue;
62             ret.putAll(ht.intersect(t), h.get(ht));
63         }
64         return ret;
65     }
66
67     public Map<Topology<K>,HashSet<V>> gett(Topology<K> t) {
68         HashMap<Topology<K>,HashSet<V>> ret = new HashMap<Topology<K>,HashSet<V>>();
69         for(Topology<K> ht : h.keySet()) {
70             if (ht.disjoint(t)) continue;
71             ret.put(ht.intersect(t), h.get(ht));
72         }
73         return ret;
74     }
75
76     public boolean empty(K k) {
77         for(Topology<K> t : h.keySet())
78             if (t.contains(k) && h.get(t).size() > 0)
79                 return false;
80         return true;
81     }
82
83     public boolean contains(K k) { return get(k).iterator().hasNext(); }
84
85     public boolean contains(K k, V v) {
86         for(Topology<K> t : h.keySet())
87             if (t.contains(k))
88                 return h.get(t).contains(v);
89         return false;
90     }
91
92     private HashMap<K,Iterable<V>> cache = new HashMap<K,Iterable<V>>();
93     public Iterable<V> getAll(Topology<K> k) { return h.get(k); }
94     public Iterable<V> get(K k) {
95         Iterable<V> c = cache.get(k);
96         if (c != null) return c;
97         HashSet<V> ret = null;
98         HashSet<V> ret0 = null;
99         for(Topology<K> t : h.keySet())
100             if (t.contains(k)) {
101                 if (ret==null) {
102                     ret0 = ret = h.get(t);
103                 } else {
104                     if (ret0 != null) {
105                         ret = new HashSet<V>();
106                         ret.addAll(ret0);
107                         ret0 = null;
108                     }
109                     ret.addAll(h.get(t));
110                 }
111             }
112         if (ret==null) {
113             cache.put(k, emptyIterator);
114             return emptyIterator;
115         } else {
116             cache.put(k, new FastSet<V>(ret));
117             return ret;
118         }
119     }
120     private final Iterable<V> emptyIterator = new EmptyIterator<V>();
121 }