/* Copyright (c) 2008-2013, Avian Contributors Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. There is NO WARRANTY for this software. See license.txt for details. */ package java.util; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; public class TreeMap implements Map { private final Comparator comparator; private transient TreeSet> set; public TreeMap(Comparator comparator) { this.comparator = comparator; initializeSet(); } private void initializeSet() { final Comparator comparator = this.comparator != null ? this.comparator : new Comparator() { public int compare(K a, K b) { return ((Comparable) a).compareTo(b); } }; set = new TreeSet(new Comparator>() { public int compare(MyEntry a, MyEntry b) { return comparator.compare(a.key, b.key); } }); } public TreeMap() { this(null); } public String toString() { return avian.Data.toString(this); } public V get(Object key) { MyEntry e = set.find(new MyEntry(key, null)); return e == null ? null : e.value; } public V put(K key, V value) { MyEntry e = set.addAndReplace(new MyEntry(key, value)); return e == null ? null : e.value; } public void putAll(Map elts) { for (Map.Entry entry : elts.entrySet()) { put(entry.getKey(), entry.getValue()); } } public V remove(Object key) { MyEntry e = set.removeAndReturn(new MyEntry(key, null)); return e == null ? null : e.value; } public void clear() { set.clear(); } public int size() { return set.size(); } public boolean isEmpty() { return size() == 0; } public boolean containsKey(Object key) { return set.contains(new MyEntry(key, null)); } private boolean equal(Object a, Object b) { return a == null ? b == null : a.equals(b); } public boolean containsValue(Object value) { for (V v: values()) { if (equal(v, value)) { return true; } } return false; } public Set> entrySet() { return (Set>) (Set) set; } public Set keySet() { return new KeySet(); } public Collection values() { return new Values(); } private static class MyEntry implements Entry { public final K key; public V value; public MyEntry(K key, V value) { this.key = key; this.value = value; } public K getKey() { return key; } public V getValue() { return value; } public V setValue(V value) { V old = this.value; this.value = value; return old; } } private class KeySet extends AbstractSet { public int size() { return TreeMap.this.size(); } public boolean isEmpty() { return TreeMap.this.isEmpty(); } public boolean contains(Object key) { return containsKey(key); } public boolean add(K key) { return set.addAndReplace(new MyEntry(key, null)) != null; } public boolean addAll(Collection collection) { boolean change = false; for (K k: collection) if (add(k)) change = true; return change; } public boolean remove(Object key) { return set.removeAndReturn(new MyEntry(key, null)) != null; } public Object[] toArray() { return toArray(new Object[size()]); } public T[] toArray(T[] array) { return avian.Data.toArray(this, array); } public void clear() { TreeMap.this.clear(); } public Iterator iterator() { return new avian.Data.KeyIterator(set.iterator()); } } private class Values implements Collection { public int size() { return TreeMap.this.size(); } public boolean isEmpty() { return TreeMap.this.isEmpty(); } public boolean contains(Object value) { return containsValue(value); } public boolean containsAll(Collection c) { if (c == null) { throw new NullPointerException("collection is null"); } Iterator it = c.iterator(); while (it.hasNext()) { if (! contains(it.next())) { return false; } } return true; } public boolean add(V value) { throw new UnsupportedOperationException(); } public boolean addAll(Collection collection) { throw new UnsupportedOperationException(); } public boolean remove(Object value) { throw new UnsupportedOperationException(); } public boolean removeAll(Collection c) { throw new UnsupportedOperationException(); } public Object[] toArray() { return toArray(new Object[size()]); } public T[] toArray(T[] array) { return avian.Data.toArray(this, array); } public void clear() { TreeMap.this.clear(); } public Iterator iterator() { return new avian.Data.ValueIterator(set.iterator()); } } public final static long serialVersionUID = 0x0cc1f63e2d256ae6l; private void writeObject(ObjectOutputStream out) throws IOException { out.defaultWriteObject(); out.writeInt(size()); for (Entry entry : entrySet()) { out.writeObject(entry.getKey()); out.writeObject(entry.getValue()); } } private void readObject(ObjectInputStream in) throws IOException { in.defaultReadObject(); initializeSet(); int size = in.readInt(); for (int i = 0; i < size; i++) try { put((K) in.readObject(), (V) in.readObject()); } catch (ClassNotFoundException e) { throw new IOException(e); } } }