
org.glowroot.agent.shaded.grpc.internal.BlankFutureProvider Maven / Gradle / Ivy
Show all versions of glowroot-agent-it-harness Show documentation
/*
* Copyright 2015, Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
*
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.glowroot.agent.shaded.grpc.internal;
import org.glowroot.agent.shaded.google.common.annotations.VisibleForTesting;
import org.glowroot.agent.shaded.google.common.base.Preconditions;
import org.glowroot.agent.shaded.google.common.base.Supplier;
import org.glowroot.agent.shaded.google.common.util.concurrent.FutureCallback;
import org.glowroot.agent.shaded.google.common.util.concurrent.Futures;
import org.glowroot.agent.shaded.google.common.util.concurrent.ListenableFuture;
import org.glowroot.agent.shaded.google.common.util.concurrent.SettableFuture;
import java.util.ArrayList;
import java.util.Collections;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;
import java.util.concurrent.CancellationException;
import javax.annotation.concurrent.NotThreadSafe;
/**
* Issues blank {@link ListenableFuture}s when requested, and later fulfills them, either by linking
* them with upstream {@code ListenableFuture}s that will eventually be completed, or by failing
* them immediately.
*
* This is useful for {@code ListenableFuture} providers that may be requested at a moment when
* the necessary information for providing a {@code ListenableFuture} is not available, but will be
* later.
*/
@NotThreadSafe
public final class BlankFutureProvider {
private Set> blankFutures = createSet();
@VisibleForTesting
Set> getBlankFutureSet() {
return blankFutures;
}
/**
* Creates a blank future and track it.
*
* If the caller gives up on an undone future, it should call either {@code cancel(true)} or
* {@code cancel(false)} (they have the same effect) on the future to clean up the tracking
* information. The future can be cancelled from any thread.
*/
public ListenableFuture newBlankFuture() {
final SettableFuture future = SettableFuture.create();
blankFutures.add(future);
final Set> savedSet = blankFutures;
Futures.addCallback(future, new FutureCallback() {
@Override public void onFailure(Throwable t) {
if (t instanceof CancellationException) {
savedSet.remove(future);
}
}
@Override public void onSuccess(T result) { }
});
return future;
}
/**
* Creates a {@link FulfillmentBatch} that will be used to fulfill the currently tracked blank
* futures.
*
* After this method has returned, the {@link BlankFutureProvider} will no longer track the
* previous blank futures, and can be used to create and track new blank futures.
*/
public FulfillmentBatch createFulfillmentBatch() {
Set> blankFuturesCopy = blankFutures;
blankFutures = createSet();
return new FulfillmentBatch(blankFuturesCopy);
}
/**
* A batch of blank futures that are going to be fulfilled, by either linking them with other
* futures, or failing them.
*
* This object is independent from the {@link BlankFutureProvider} that created it. They don't
* need synchronization between them.
*/
public static final class FulfillmentBatch {
private final Set> futures;
private FulfillmentBatch(Set> futures) {
this.futures = Preconditions.checkNotNull(futures, "futures");
}
/**
* Links the blank futures with futures that will be eventually completed.
*
* For each blank future, this method calls {@link Supplier#get()} on {@code source} and link
* the returned future to the blank future. The blank futures are processed in the same order as
* they were created.
*/
public void link(Supplier> source) {
for (final SettableFuture future : copyFutureList()) {
ListenableFuture sourceFuture = source.get();
Futures.addCallback(sourceFuture, new FutureCallback() {
@Override public void onSuccess(T result) {
future.set(result);
}
@Override public void onFailure(Throwable t) {
future.setException(t);
}
});
}
}
/**
* Fails all futures with the given error.
*/
public void fail(Throwable error) {
for (SettableFuture future : copyFutureList()) {
future.setException(error);
}
}
private List> copyFutureList() {
synchronized (futures) {
return new ArrayList>(futures);
}
}
}
private static Set> createSet() {
// If a future is cancelled before it's fulfilled, it will be removed from the set.
// The cancellation may happen asynchronously, e.g., from a deadline timer thread, thus the set
// must be thread-safe.
// There is a race between cancelling and fulfilling, but it is benign.
return Collections.synchronizedSet(new LinkedHashSet>());
}
}