view src/EDU/oswego/cs/dl/util/concurrent/SyncSortedSet.java @ 27:511648fa4d64 Version 2.1

Version to 2.1
author Dan Creswell <dan.creswell@gmail.com>
date Mon, 04 Jan 2010 13:00:40 +0000
parents 3dc0c5604566
children
line wrap: on
line source

/*
  File: SyncSortedSet.java

  Originally written by Doug Lea and released into the public domain.
  This may be used for any purposes whatsoever without acknowledgment.
  Thanks for the assistance and support of Sun Microsystems Labs,
  and everyone contributing, testing, and using this code.

  History:
  Date       Who                What
   1Aug1998  dl               Create public version
*/

package EDU.oswego.cs.dl.util.concurrent;
import java.util.*;

/**
 * SyncSortedSets wrap Sync-based control around java.util.SortedSets.
 * They support the following additional reader operations over
 * SyncCollection: comparator, subSet, headSet, tailSet, first, last.
 * <p>[<a href="http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html"> Introduction to this package. </a>]
 * @see SyncCollection
**/


public class SyncSortedSet extends SyncSet implements SortedSet {

  /**
   * Create a new SyncSortedSet protecting the given collection,
   * and using the given sync to control both reader and writer methods.
   * Common, reasonable choices for the sync argument include
   * Mutex, ReentrantLock, and Semaphores initialized to 1.
   **/
  public SyncSortedSet(SortedSet set, Sync sync) {
    super (set, sync);
  }

  /**
   * Create a new SyncSortedSet protecting the given set,
   * and using the given ReadWriteLock to control reader and writer methods.
   **/
  public SyncSortedSet(SortedSet set, ReadWriteLock rwl) {
    super (set, rwl.readLock(), rwl.writeLock());
  }

  /**
   * Create a new SyncSortedSet protecting the given set,
   * and using the given pair of locks to control reader and writer methods.
   **/
  public SyncSortedSet(SortedSet set, Sync readLock, Sync writeLock) {
    super(set, readLock, writeLock);
  }


  protected SortedSet baseSortedSet() {
    return (SortedSet)c_;
  }

  public Comparator comparator() {
    boolean wasInterrupted = beforeRead();
    try {
      return baseSortedSet().comparator();
    }
    finally {
      afterRead(wasInterrupted);
    }
  }

  public Object first() {
    boolean wasInterrupted = beforeRead();
    try {
      return baseSortedSet().first();
    }
    finally {
      afterRead(wasInterrupted);
    }
  }

  public Object last() {
    boolean wasInterrupted = beforeRead();
    try {
      return baseSortedSet().last();
    }
    finally {
      afterRead(wasInterrupted);
    }
  }


  public SortedSet subSet(Object fromElement, Object toElement) {
    boolean wasInterrupted = beforeRead();
    try {
      return new SyncSortedSet(baseSortedSet().subSet(fromElement, toElement),
                               rd_, wr_);
    }
    finally {
      afterRead(wasInterrupted);
    }
  }

  public SortedSet headSet(Object toElement) {
    boolean wasInterrupted = beforeRead();
    try {
      return new SyncSortedSet(baseSortedSet().headSet(toElement),
                               rd_, wr_);
    }
    finally {
      afterRead(wasInterrupted);
    }
  }

  public SortedSet tailSet(Object fromElement) {
    boolean wasInterrupted = beforeRead();
    try {
      return new SyncSortedSet(baseSortedSet().tailSet(fromElement),
                               rd_, wr_);
    }
    finally {
      afterRead(wasInterrupted);
    }
  }

}