
com.cinchapi.common.concurrent.CountUpLatch Maven / Gradle / Ivy
/*
* Copyright (c) 2019 Cinchapi 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 com.cinchapi.common.concurrent;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicLong;
/**
* Similar to a {@link java.util.concurrent.CountDownLatch} but increments
* instead of decrementing from a set number down to 0.
*
* A {@link CountUpLatch} can be used for a thread to wait until other threads
* have reached a condition that is represented by the latch being
* {@link #countUp incremented} to a certain number.
*
*
* {@link CountUpLatch} assumes that threads may begin counting up before a
* listening thread knows for how many counts to {@link #await(long)}.
* Therefore, if a thread calls {@link #await(long)} with a number that is less
* than the number of times the latch has been incremented, the method returns
* immediately.
*
*
* So, the semantics of a {@link CountUpLatch} allow a thread to wait, if
* necessary, until the latch has been incremented at least n times.
*
*
* @author Jeff Nelson
*/
public class CountUpLatch {
/**
* The current number of times the latch has been incremented.
*/
private final AtomicLong count = new AtomicLong(0);
/**
* Signaling mechanism.
*/
private final Object signal = new Object();
/**
* Block, if necessary, until this latch has been incremented at least
* {@code count} times.
*
* @param count
* @throws InterruptedException
*/
public void await(int count) throws InterruptedException {
synchronized (signal) {
while (this.count.get() < count) {
signal.wait();
}
}
}
/**
* Block, if necessary, until this latch has been incremented at least
* {@code count} times.
*
* @param count
* @throws InterruptedException
* @return boolean
*/
public boolean await(int count, long timeout, TimeUnit unit)
throws InterruptedException {
synchronized (signal) {
while (this.count.get() < count) {
signal.wait(timeout, (int) unit.toNanos(timeout));
}
return this.count.get() >= count;
}
}
/**
* Increment the latch.
*/
public void countUp() {
synchronized (signal) {
count.incrementAndGet();
signal.notifyAll();
}
}
/**
* Return the number of times that the latch has been incremented.
*
* @return the current count
*/
public long getCount() {
return count.get();
}
/**
* Returns a string identifying this latch, as well as its state.
* The state, in brackets, includes the String {@code "Count ="}
* followed by the current count.
*
* @return a string identifying this latch, as well as its state
*/
public String toString() {
return super.toString() + "[Count = " + getCount() + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy