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

org.scalatest.concurrent.TestThreadsStartingCounter.scala Maven / Gradle / Ivy

There is a newer version: 2.0.M6-SNAP27
Show newest version
/*
 * Copyright 2001-2009 Artima, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.scalatest.concurrent

import java.util.concurrent.CountDownLatch

/*
 * Keeps the main thread from allowing the test threads to execute their bodies
 * until all of them are started, and ready to go. When a test thread is started,
 * it will call increment from its constructor. It then calls decrement from its
 * run method. Test threads are started immediately by the thread() methods, and
 * so this allows the main thread to block until all test threads have started.
 * It does this by calling the waitUntilAllTestThreadsHaveStarted method, which
 * blocks in the wait set if the count is not 0. (The count is only non-zero when
 * one or more test threads have been created but not yet gotten their run methods
 * going.) This is only used for threads started by the main thread. By the time
 * conduct is invoked, all threads started by the main thread will likely have called
 * increment. But just in case, th main thread calling waitUntilAllTestThreadsHaveStarted
 * awaits on a latch that reaches its terminal state only after at least one
 * thread has incremented count. (Increment in this case will be called by the main thread.) After
 * those threads go, they may actually call thread method again, but the main thread
 * will only call waitUntilAllTestThreadsHaveStarted once, so it won't matter. - bv
 */
private[concurrent] class TestThreadsStartingCounter {
  private var count: Int = 0
  private val latch = new CountDownLatch(1)
  def increment() {
    synchronized {
      count += 1
    }
    latch.countDown()
  }
  def decrement() {
    synchronized {
      count -= 1
      notifyAll()
    }
  }
  def waitUntilAllTestThreadsHaveStarted() {
    latch.await()
    synchronized {
      while (count != 0) {
        wait()
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy