src.org.python.util.Generic Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jython-standalone Show documentation
Show all versions of jython-standalone Show documentation
Jython is an implementation of the high-level, dynamic, object-oriented
language Python written in 100% Pure Java, and seamlessly integrated with
the Java platform. It thus allows you to run Python on any Java platform.
package org.python.util;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.Serializable;
import java.util.AbstractSet;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.WeakHashMap;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
/**
* Static methods to make instances of collections with their generic types inferred from what
* they're being assigned to. The idea is stolen from Sets
, Lists
and
* Maps
from Google
* Collections.
*/
public class Generic {
/**
* Our default ConcurrentHashMap sizes. Only concurreny level differs from
* ConcurrentHashMap's defaults: it's significantly lower to reduce allocation cost.
*/
public static final int CHM_INITIAL_CAPACITY = 16;
public static final float CHM_LOAD_FACTOR = 0.75f;
public static final int CHM_CONCURRENCY_LEVEL = 2;
/**
* Makes a List with its generic type inferred from whatever it's being assigned to.
*/
public static List list() {
return new ArrayList();
}
/**
* Makes a List with its generic type inferred from whatever it's being assigned to filled with
* the items in contents
.
*/
public static List list(U...contents) {
List l = new ArrayList(contents.length);
for (T t : contents) {
l.add(t);
}
return l;
}
/**
* Makes a Map using generic types inferred from whatever this is being assigned to.
*/
public static Map map() {
return new HashMap();
}
/**
* Makes a ConcurrentMap using generic types inferred from whatever this is being
* assigned to.
*/
public static ConcurrentMap concurrentMap() {
return new ConcurrentHashMap(CHM_INITIAL_CAPACITY, CHM_LOAD_FACTOR,
CHM_CONCURRENCY_LEVEL);
}
/**
* Makes a Set using the generic type inferred from whatever this is being assigned to.
*/
public static Set set() {
return new HashSet();
}
/**
* Makes a Set using the generic type inferred from whatever this is being assigned to filled
* with the items in contents
.
*/
public static Set set(U...contents) {
Set s = new HashSet(contents.length);
for (U u : contents) {
s.add(u);
}
return s;
}
/**
* Makes a Set, ensuring safe concurrent operations, using generic types inferred from
* whatever this is being assigned to.
*/
public static Set concurrentSet() {
return newSetFromMap(Generic.concurrentMap());
}
/**
* Return a Set backed by the specified Map with the same ordering, concurrency and
* performance characteristics.
*
* The specified Map must be empty at the time this method is invoked.
*
* Note that this method is based on Java 6's Collections.newSetFromMap, and will be
* removed in a future version of Jython (likely 2.6) that will rely on Java 6.
*
* @param map the backing Map
* @return a Set backed by the Map
* @throws IllegalArgumentException if Map is not empty
*/
public static Set newSetFromMap(Map map) {
return new SetFromMap(map);
}
/**
* A Set backed by a generic Map.
*/
private static class SetFromMap extends AbstractSet
implements Serializable {
/** The backing Map. */
private final Map map;
/** Backing's KeySet. */
private transient Set keySet;
public SetFromMap(Map map) {
if (!map.isEmpty()) {
throw new IllegalArgumentException("Map is non-empty");
}
this.map = map;
keySet = map.keySet();
}
@Override
public int size() {
return map.size();
}
@Override
public boolean isEmpty() {
return map.isEmpty();
}
@Override
public boolean contains(Object o) {
return map.containsKey(o);
}
@Override
public boolean containsAll(Collection> c) {
return keySet.containsAll(c);
}
@Override
public Iterator iterator() {
return keySet.iterator();
}
@Override
public Object[] toArray() {
return keySet.toArray();
}
@Override
public T[] toArray(T[] a) {
return keySet.toArray(a);
}
@Override
public boolean add(E e) {
return map.put(e, Boolean.TRUE) == null;
}
@Override
public boolean remove(Object o) {
return map.remove(o) != null;
}
@Override
public boolean removeAll(Collection> c) {
return keySet.removeAll(c);
}
@Override
public boolean retainAll(Collection> c) {
return keySet.retainAll(c);
}
@Override
public void clear() {
map.clear();
}
@Override
public boolean equals(Object o) {
return o == this || keySet.equals(o);
}
@Override
public int hashCode() {
return keySet.hashCode();
}
@Override
public String toString() {
return keySet.toString();
}
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
in.defaultReadObject();
keySet = map.keySet();
}
}
}