All Downloads are FREE. Search and download functionalities are using the official Maven repository.

alluxio.collections.ConcurrentHashSet Maven / Gradle / Ivy

There is a newer version: 313
Show newest version
/*
 * The Alluxio Open Foundation licenses this work under the Apache License, version 2.0
 * (the "License"). You may not use this work except in compliance with the License, which is
 * available at www.apache.org/licenses/LICENSE-2.0
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
 * either express or implied, as more fully set forth in the License.
 *
 * See the NOTICE file distributed with this work for information regarding copyright ownership.
 */

package alluxio.collections;

import java.util.AbstractSet;
import java.util.Collection;
import java.util.Iterator;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import javax.annotation.concurrent.ThreadSafe;

/**
 * A concurrent hash set. This is backed by a {@link ConcurrentHashMap}, and {@link Set}
 * operations are translated to {@link ConcurrentHashMap} operations.
 *
 * @param  the type of the set objects
 */
@ThreadSafe
public final class ConcurrentHashSet extends AbstractSet {
  private final ConcurrentHashMap mMap;

  /**
   * Creates a new {@link ConcurrentHashSet}.
   */
  public ConcurrentHashSet() {
    this(2, 0.95f, 1);
  }

  /**
   * Creates a new {@link ConcurrentHashSet}.
   *
   * @param initialCapacity the initial capacity
   * @param loadFactor the load factor threshold, used to control resizing
   * @param concurrencyLevel the estimated number of concurrently updating threads
   */
  public ConcurrentHashSet(int initialCapacity, float loadFactor, int concurrencyLevel) {
    mMap = new ConcurrentHashMap<>(initialCapacity, loadFactor, concurrencyLevel);
  }

  @Override
  public Iterator iterator() {
    return mMap.keySet().iterator();
  }

  @Override
  public int size() {
    return mMap.size();
  }

  @Override
  public boolean add(T element) {
    return mMap.put(element, Boolean.TRUE) == null;
  }

  /**
   * Adds an element into the set, if and only if it is not already a part of the set.
   *
   * @param element the element to add into the set
   * @return true if this set did not already contain the specified element
   */
  public boolean addIfAbsent(T element) {
    return mMap.putIfAbsent(element, Boolean.TRUE) == null;
  }

  @Override
  public void clear() {
    mMap.clear();
  }

  @Override
  public boolean contains(Object o) {
    return mMap.containsKey(o);
  }

  @Override
  public boolean containsAll(Collection c) {
    return mMap.keySet().containsAll(c);
  }

  @Override
  public boolean isEmpty() {
    return mMap.isEmpty();
  }

  @Override
  public boolean remove(Object o) {
    return mMap.remove(o) != null;
  }

  @Override
  public boolean removeAll(Collection c) {
    return mMap.keySet().removeAll(c);
  }

  @Override
  public boolean retainAll(Collection c) {
    return mMap.keySet().retainAll(c);
  }

  @Override
  public Object[] toArray() {
    return mMap.keySet().toArray();
  }

  @Override
  public  E[] toArray(E[] a) {
    return mMap.keySet().toArray(a);
  }

  @Override
  public String toString() {
    return mMap.keySet().toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy