summaryrefslogblamecommitdiff
path: root/src/library/scala/concurrent/SyncVar.scala
blob: 43f2ec57c062fd0cf123b07526c1f0524e9e87b2 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                                          
                                                                          
                                                                          

                                                                          

                                                                          
                        
 

                                                                
  
                           

                            
                  
                                        
                                     
 
                             
                             
             
   
 

                                                                                   
     
                                                                                    

                                        

                                                  

   






                                                                                                 
                                                    



                                                         
                      


                                              
     
         

   
                                

                   

   

                                        
                    
                   
               
   
 
                                      



                            
                                     
             
   
 
                                        
                                    
                     
                
               

   
 
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2011, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

package scala.concurrent

/** A class to provide safe concurrent access to a mutable cell.
 *  All methods are synchronized.
 *
 *  @author  Martin Odersky
 *  @version 1.0, 10/03/2003
 */
class SyncVar[A] {
  private var isDefined: Boolean = false
  private var value: Option[A] = None

  def get: A = synchronized {
    while (!isDefined) wait()
    value.get
  }

  /** Waits `timeout` millis. If `timeout <= 0` just returns 0. If the system clock
   *  went backward, it will return 0, so it never returns negative results.
   */
  private def waitMeasuringElapsed(timeout: Long): Long = if (timeout <= 0) 0 else {
    val start = System.currentTimeMillis
    wait(timeout)
    val elapsed = System.currentTimeMillis - start
    if (elapsed < 0) 0 else elapsed
  }

  /** Waits for this SyncVar to become defined at least for
   *  `timeout` milliseconds (possibly more), and gets its
   *  value.
   *
   *  @param timeout     the amount of milliseconds to wait, 0 means forever
   *  @return            `None` if variable is undefined after `timeout`, `Some(value)` otherwise
   */
  def get(timeout: Long): Option[A] = synchronized {
    /** Defending against the system clock going backward
     *  by counting time elapsed directly.  Loop required
     *  to deal with spurious wakeups.
     */
    var rest = timeout
    while (!isDefined && rest > 0) {
      val elapsed = waitMeasuringElapsed(rest)
      rest -= elapsed
    }
    value
  }

  def take(): A = synchronized {
    try get
    finally unset()
  }

  // TODO: this method should be private
  def set(x: A): Unit = synchronized {
    isDefined = true
    value = Some(x)
    notifyAll()
  }

  def put(x: A): Unit = synchronized {
    while (isDefined) wait()
    set(x)
  }

  def isSet: Boolean = synchronized {
    isDefined
  }

  // TODO: this method should be private
  def unset(): Unit = synchronized {
    isDefined = false
    value = None
    notifyAll()
  }
}