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

com.google.common.util.concurrent.AbstractFuture Maven / Gradle / Ivy

Go to download

Guava is a suite of core and expanded libraries that include utility classes, google's collections, io classes, and much much more.

There is a newer version: r13
Show newest version
/*
 * Copyright (C) 2007 The Guava Authors
 *
 * 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.google.common.util.concurrent;

import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.util.concurrent.NullnessCasts.uncheckedNull;
import static com.google.common.util.concurrent.Platform.interruptCurrentThread;
import static com.google.common.util.concurrent.Platform.rethrowIfErrorOtherThanStackOverflow;
import static java.lang.Integer.toHexString;
import static java.lang.System.identityHashCode;
import static java.util.Objects.requireNonNull;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
import static java.util.logging.Level.SEVERE;

import com.google.common.annotations.GwtCompatible;
import com.google.common.base.Strings;
import com.google.common.util.concurrent.internal.InternalFutureFailureAccess;
import com.google.common.util.concurrent.internal.InternalFutures;
import com.google.errorprone.annotations.CanIgnoreReturnValue;
import com.google.errorprone.annotations.ForOverride;
import com.google.j2objc.annotations.ReflectionSupport;
import com.google.j2objc.annotations.RetainedLocalRef;
import java.util.concurrent.CancellationException;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Executor;
import java.util.concurrent.Future;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import org.jspecify.annotations.Nullable;

/**
 * An abstract implementation of {@link ListenableFuture}, intended for advanced users only. More
 * common ways to create a {@code ListenableFuture} include instantiating a {@link SettableFuture},
 * submitting a task to a {@link ListeningExecutorService}, and deriving a {@code Future} from an
 * existing one, typically using methods like {@link Futures#transform(ListenableFuture,
 * com.google.common.base.Function, java.util.concurrent.Executor) Futures.transform} and {@link
 * Futures#catching(ListenableFuture, Class, com.google.common.base.Function,
 * java.util.concurrent.Executor) Futures.catching}.
 *
 * 

This class implements all methods in {@code ListenableFuture}. Subclasses should provide a way * to set the result of the computation through the protected methods {@link #set(Object)}, {@link * #setFuture(ListenableFuture)} and {@link #setException(Throwable)}. Subclasses may also override * {@link #afterDone()}, which will be invoked automatically when the future completes. Subclasses * should rarely override other methods. * * @author Sven Mawson * @author Luke Sandberg * @since 1.0 */ // Whenever both tests are cheap and functional, it's faster to use &, | instead of &&, || @SuppressWarnings("ShortCircuitBoolean") @GwtCompatible /* * TODO(cpovirk): Do we still need @ReflectionSupport on *this* class now that the fields live in * the superclass? Note that Listener (which we also reflect on) still lives here. */ @ReflectionSupport(value = ReflectionSupport.Level.FULL) public abstract class AbstractFuture extends AbstractFutureState { /* * All static initialization should be performed in AbstractFutureState: AbstractFutureState's * initialization may trigger logging, which may assume that AbstractFuture is initialized. * * TODO(cpovirk): Write a test that asserts that AbstractFuture has no clinit? */ /** * Tag interface marking trusted subclasses. This enables some optimizations. The implementation * of this interface must also be an AbstractFuture and must not override or expose for overriding * any of the public methods of ListenableFuture. */ interface Trusted extends ListenableFuture {} /** * A less abstract subclass of AbstractFuture. This can be used to optimize setFuture by ensuring * that {@link #get} calls exactly the implementation of {@link AbstractFuture#get}. */ abstract static class TrustedFuture extends AbstractFuture implements Trusted { @CanIgnoreReturnValue @Override @ParametricNullness public final V get() throws InterruptedException, ExecutionException { return super.get(); } @CanIgnoreReturnValue @Override @ParametricNullness public final V get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException { return super.get(timeout, unit); } @Override public final boolean isDone() { return super.isDone(); } @Override public final boolean isCancelled() { return super.isCancelled(); } @Override public final void addListener(Runnable listener, Executor executor) { super.addListener(listener, executor); } @CanIgnoreReturnValue @Override public final boolean cancel(boolean mayInterruptIfRunning) { return super.cancel(mayInterruptIfRunning); } } /** Listeners form a Treiber stack through the {@link #listeners} field. */ static final class Listener { static final Listener TOMBSTONE = new Listener(); // null only for TOMBSTONE final @Nullable Runnable task; // null only for TOMBSTONE final @Nullable Executor executor; // writes to next are made visible by subsequent CAS's on the listeners field @Nullable Listener next; Listener(Runnable task, Executor executor) { this.task = task; this.executor = executor; } Listener() { this.task = null; this.executor = null; } } /** A special value to represent failure, when {@link #setException} is called successfully. */ private static final class Failure { static final Failure FALLBACK_INSTANCE = new Failure( new Throwable("Failure occurred while trying to finish a future.") { @Override public Throwable fillInStackTrace() { return this; // no stack trace } }); final Throwable exception; Failure(Throwable exception) { this.exception = checkNotNull(exception); } } /** A special value to represent cancellation and the 'wasInterrupted' bit. */ private static final class Cancellation { // constants to use when GENERATE_CANCELLATION_CAUSES = false static final @Nullable Cancellation CAUSELESS_INTERRUPTED; static final @Nullable Cancellation CAUSELESS_CANCELLED; static { if (GENERATE_CANCELLATION_CAUSES) { CAUSELESS_CANCELLED = null; CAUSELESS_INTERRUPTED = null; } else { CAUSELESS_CANCELLED = new Cancellation(false, null); CAUSELESS_INTERRUPTED = new Cancellation(true, null); } } final boolean wasInterrupted; final @Nullable Throwable cause; Cancellation(boolean wasInterrupted, @Nullable Throwable cause) { this.wasInterrupted = wasInterrupted; this.cause = cause; } } /** A special value that encodes the 'setFuture' state. */ private static final class DelegatingToFuture implements Runnable { final AbstractFuture owner; final ListenableFuture future; DelegatingToFuture(AbstractFuture owner, ListenableFuture future) { this.owner = owner; this.future = future; } @Override public void run() { if (owner.value() != this) { // nothing to do, we must have been cancelled, don't bother inspecting the future. return; } Object valueToSet = getFutureValue(future); if (casValue(owner, this, valueToSet)) { complete( owner, /* * Interruption doesn't propagate through a DelegatingToFuture chain (see * getFutureValue), so don't invoke interruptTask. */ false); } } } /** Constructor for use by subclasses. */ protected AbstractFuture() {} /** * {@inheritDoc} * *

The default {@link AbstractFuture} implementation throws {@code InterruptedException} if the * current thread is interrupted during the call, even if the value is already available. * * @throws CancellationException {@inheritDoc} */ @CanIgnoreReturnValue @Override @ParametricNullness public V get(long timeout, TimeUnit unit) throws InterruptedException, TimeoutException, ExecutionException { return Platform.get(this, timeout, unit); } /** * {@inheritDoc} * *

The default {@link AbstractFuture} implementation throws {@code InterruptedException} if the * current thread is interrupted during the call, even if the value is already available. * * @throws CancellationException {@inheritDoc} */ @CanIgnoreReturnValue @Override @ParametricNullness public V get() throws InterruptedException, ExecutionException { return Platform.get(this); } /** * Returns the result of this future or throws in case of failure, just like {@link #get()} except * that this method also throws if this future is not done. * *

This method computes its result based on the internal state of {@link AbstractFuture}, so it * does not necessarily return the same result as {@link #get()} if {@link #get()} has been * overridden. Thus, it should be called only on instances of {@link Trusted} or from within * {@link #get()} itself. */ @ParametricNullness @SuppressWarnings("nullness") // TODO(b/147136275): Remove once our checker understands & and |. /* * TODO: b/112550045 - Use this from Futures.getDone when applicable? Note the small difference in * failure message between the two at present. */ final V getFromAlreadyDoneTrustedFuture() throws ExecutionException { @RetainedLocalRef Object localValue = value(); if (localValue == null | localValue instanceof DelegatingToFuture) { throw new IllegalStateException("Cannot get() on a pending future."); } return getDoneValue(localValue); } /** Unboxes {@code obj}. Assumes that obj is not {@code null} or a {@link DelegatingToFuture}. */ @ParametricNullness @SuppressWarnings("TypeParameterUnusedInFormals") // sorry not sorry static V getDoneValue(Object obj) throws ExecutionException { // While this seems like it might be too branch-y, simple benchmarking proves it to be // unmeasurable (comparing done AbstractFutures with immediateFuture) if (obj instanceof Cancellation) { Cancellation cancellation = (Cancellation) obj; Throwable cause = cancellation.cause; throw cancellationExceptionWithCause("Task was cancelled.", cause); } else if (obj instanceof Failure) { Failure failure = (Failure) obj; Throwable exception = failure.exception; throw new ExecutionException(exception); } else if (obj == NULL) { /* * It's safe to return null because we would only have stored it in the first place if it were * a valid value for V. */ return uncheckedNull(); } else { @SuppressWarnings("unchecked") // this is the only other option V asV = (V) obj; return asV; } } /** Returns whether {@code obj} is not an instance of {@code DelegatingToFuture}. */ // This method lets us: // - avoid exposing DelegatingToFuture to the whole package // - avoid fighting with the relative operator precedence of `instanceof` and `!` static boolean notInstanceOfDelegatingToFuture(@Nullable Object obj) { return !(obj instanceof DelegatingToFuture); } @Override public boolean isDone() { @RetainedLocalRef Object localValue = value(); return localValue != null & notInstanceOfDelegatingToFuture(localValue); } @Override public boolean isCancelled() { @RetainedLocalRef Object localValue = value(); return localValue instanceof Cancellation; } /** * {@inheritDoc} * *

If a cancellation attempt succeeds on a {@code Future} that had previously been {@linkplain * #setFuture set asynchronously}, then the cancellation will also be propagated to the delegate * {@code Future} that was supplied in the {@code setFuture} call. * *

Rather than override this method to perform additional cancellation work or cleanup, * subclasses should override {@link #afterDone}, consulting {@link #isCancelled} and {@link * #wasInterrupted} as necessary. This ensures that the work is done even if the future is * cancelled without a call to {@code cancel}, such as by calling {@code * setFuture(cancelledFuture)}. * *

Beware of completing a future while holding a lock. Its listeners may do slow work or * acquire other locks, risking deadlocks. */ @CanIgnoreReturnValue @Override public boolean cancel(boolean mayInterruptIfRunning) { @RetainedLocalRef Object localValue = value(); boolean rValue = false; if (localValue == null | localValue instanceof DelegatingToFuture) { // Try to delay allocating the exception. At this point we may still lose the CAS, but it is // certainly less likely. Object valueToSet = GENERATE_CANCELLATION_CAUSES ? new Cancellation( mayInterruptIfRunning, new CancellationException("Future.cancel() was called.")) /* * requireNonNull is safe because we've initialized these if * !GENERATE_CANCELLATION_CAUSES. * * TODO(cpovirk): Maybe it would be cleaner to define a CancellationSupplier interface * with two implementations, one that contains causeless Cancellation instances and * the other of which creates new Cancellation instances each time it's called? Yet * another alternative is to fill in a non-null value for each of the fields no matter * what and to just not use it if !GENERATE_CANCELLATION_CAUSES. */ : requireNonNull( mayInterruptIfRunning ? Cancellation.CAUSELESS_INTERRUPTED : Cancellation.CAUSELESS_CANCELLED); AbstractFuture abstractFuture = this; while (true) { if (casValue(abstractFuture, localValue, valueToSet)) { rValue = true; complete(abstractFuture, mayInterruptIfRunning); if (localValue instanceof DelegatingToFuture) { // propagate cancellation to the future set in setfuture, this is racy, and we don't // care if we are successful or not. ListenableFuture futureToPropagateTo = ((DelegatingToFuture) localValue).future; if (futureToPropagateTo instanceof Trusted) { // If the future is a Trusted instance then we specifically avoid calling cancel() // this has 2 benefits // 1. for long chains of futures strung together with setFuture we consume less stack // 2. we avoid allocating Cancellation objects at every level of the cancellation // chain // We can only do this for Trusted, because Trusted implementations of cancel do // nothing but delegate to this method and do not permit user overrides. AbstractFuture trusted = (AbstractFuture) futureToPropagateTo; localValue = trusted.value(); if (localValue == null | localValue instanceof DelegatingToFuture) { abstractFuture = trusted; continue; // loop back up and try to complete the new future } } else { // not a Trusted instance, call cancel directly. futureToPropagateTo.cancel(mayInterruptIfRunning); } } break; } // obj changed, reread localValue = abstractFuture.value(); if (notInstanceOfDelegatingToFuture(localValue)) { // obj cannot be null at this point, because value can only change from null to non-null. // So if value changed (and it did since we lost the CAS), then it cannot be null and // since it isn't a DelegatingToFuture, then the future must be done and we should exit // the loop break; } } } return rValue; } /** * Subclasses can override this method to implement interruption of the future's computation. The * method is invoked automatically by a successful call to {@link #cancel(boolean) cancel(true)}. * *

The default implementation does nothing. * *

This method is likely to be deprecated. Prefer to override {@link #afterDone}, checking * {@link #wasInterrupted} to decide whether to interrupt your task. * * @since 10.0 */ protected void interruptTask() {} /** * Returns true if this future was cancelled with {@code mayInterruptIfRunning} set to {@code * true}. * * @since 14.0 */ protected final boolean wasInterrupted() { @RetainedLocalRef Object localValue = value(); return (localValue instanceof Cancellation) && ((Cancellation) localValue).wasInterrupted; } /** * {@inheritDoc} * * @since 10.0 */ @Override public void addListener(Runnable listener, Executor executor) { checkNotNull(listener, "Runnable was null."); checkNotNull(executor, "Executor was null."); // Checking isDone and listeners != TOMBSTONE may seem redundant, but our contract for // addListener says that listeners execute 'immediate' if the future isDone(). However, our // protocol for completing a future is to assign the value field (which sets isDone to true) and // then to release waiters, followed by executing afterDone(), followed by releasing listeners. // That means that it is possible to observe that the future isDone and that your listeners // don't execute 'immediately'. By checking isDone here we avoid that. // A corollary to all that is that we don't need to check isDone inside the loop because if we // get into the loop we know that we weren't done when we entered and therefore we aren't under // an obligation to execute 'immediately'. if (!isDone()) { Listener oldHead = listeners(); if (oldHead != Listener.TOMBSTONE) { Listener newNode = new Listener(listener, executor); do { newNode.next = oldHead; if (casListeners(oldHead, newNode)) { return; } oldHead = listeners(); // re-read } while (oldHead != Listener.TOMBSTONE); } } // If we get here then the Listener TOMBSTONE was set, which means the future is done, call // the listener. executeListener(listener, executor); } /** * Sets the result of this {@code Future} unless this {@code Future} has already been cancelled or * set (including {@linkplain #setFuture set asynchronously}). When a call to this method returns, * the {@code Future} is guaranteed to be {@linkplain #isDone done} only if the call was * accepted (in which case it returns {@code true}). If it returns {@code false}, the {@code * Future} may have previously been set asynchronously, in which case its result may not be known * yet. That result, though not yet known, cannot be overridden by a call to a {@code set*} * method, only by a call to {@link #cancel}. * *

Beware of completing a future while holding a lock. Its listeners may do slow work or * acquire other locks, risking deadlocks. * * @param value the value to be used as the result * @return true if the attempt was accepted, completing the {@code Future} */ @CanIgnoreReturnValue protected boolean set(@ParametricNullness V value) { Object valueToSet = value == null ? NULL : value; if (casValue(this, null, valueToSet)) { complete(this, /* callInterruptTask= */ false); return true; } return false; } /** * Sets the failed result of this {@code Future} unless this {@code Future} has already been * cancelled or set (including {@linkplain #setFuture set asynchronously}). When a call to this * method returns, the {@code Future} is guaranteed to be {@linkplain #isDone done} only if * the call was accepted (in which case it returns {@code true}). If it returns {@code false}, the * {@code Future} may have previously been set asynchronously, in which case its result may not be * known yet. That result, though not yet known, cannot be overridden by a call to a {@code set*} * method, only by a call to {@link #cancel}. * *

Beware of completing a future while holding a lock. Its listeners may do slow work or * acquire other locks, risking deadlocks. * * @param throwable the exception to be used as the failed result * @return true if the attempt was accepted, completing the {@code Future} */ @CanIgnoreReturnValue protected boolean setException(Throwable throwable) { Object valueToSet = new Failure(checkNotNull(throwable)); if (casValue(this, null, valueToSet)) { complete(this, /* callInterruptTask= */ false); return true; } return false; } /** * Sets the result of this {@code Future} to match the supplied input {@code Future} once the * supplied {@code Future} is done, unless this {@code Future} has already been cancelled or set * (including "set asynchronously," defined below). * *

If the supplied future is {@linkplain #isDone done} when this method is called and the call * is accepted, then this future is guaranteed to have been completed with the supplied future by * the time this method returns. If the supplied future is not done and the call is accepted, then * the future will be set asynchronously. Note that such a result, though not yet known, * cannot be overridden by a call to a {@code set*} method, only by a call to {@link #cancel}. * *

If the call {@code setFuture(delegate)} is accepted and this {@code Future} is later * cancelled, cancellation will be propagated to {@code delegate}. Additionally, any call to * {@code setFuture} after any cancellation will propagate cancellation to the supplied {@code * Future}. * *

Note that, even if the supplied future is cancelled and it causes this future to complete, * it will never trigger interruption behavior. In particular, it will not cause this future to * invoke the {@link #interruptTask} method, and the {@link #wasInterrupted} method will not * return {@code true}. * *

Beware of completing a future while holding a lock. Its listeners may do slow work or * acquire other locks, risking deadlocks. * * @param future the future to delegate to * @return true if the attempt was accepted, indicating that the {@code Future} was not previously * cancelled or set. * @since 19.0 */ @CanIgnoreReturnValue @SuppressWarnings("Interruption") // We are propagating an interrupt from a caller. protected boolean setFuture(ListenableFuture future) { checkNotNull(future); @RetainedLocalRef Object localValue = value(); if (localValue == null) { if (future.isDone()) { Object value = getFutureValue(future); if (casValue(this, null, value)) { complete( this, /* * Interruption doesn't propagate through a DelegatingToFuture chain (see * getFutureValue), so don't invoke interruptTask. */ false); return true; } return false; } DelegatingToFuture valueToSet = new DelegatingToFuture<>(this, future); if (casValue(this, null, valueToSet)) { // the listener is responsible for calling completeWithFuture, directExecutor is appropriate // since all we are doing is unpacking a completed future which should be fast. try { future.addListener(valueToSet, DirectExecutor.INSTANCE); } catch (Throwable t) { // Any Exception is either a RuntimeException or sneaky checked exception. // // addListener has thrown an exception! DelegatingToFuture.run can't throw any exceptions // so this must have been caused by addListener itself. The most likely explanation is a // misconfigured mock. Try to switch to Failure. Failure failure; try { failure = new Failure(t); } catch (Exception | Error oomMostLikely) { // sneaky checked exception failure = Failure.FALLBACK_INSTANCE; } // Note: The only way this CAS could fail is if cancel() has raced with us. That is ok. boolean unused = casValue(this, valueToSet, failure); } return true; } localValue = value(); // we lost the cas, fall through and maybe cancel } // The future has already been set to something. If it is cancellation we should cancel the // incoming future. if (localValue instanceof Cancellation) { // we don't care if it fails, this is best-effort. future.cancel(((Cancellation) localValue).wasInterrupted); } return false; } /** * Returns a value that satisfies the contract of the {@link #value} field based on the state of * given future. * *

This is approximately the inverse of {@link #getDoneValue(Object)} */ private static Object getFutureValue(ListenableFuture future) { if (future instanceof Trusted) { // Break encapsulation for Trusted instances since we know that subclasses cannot override // .get() and therefore this is equivalent to calling .get() and unpacking the exceptions like // we do below (just much faster because it is a single field read instead of a read, several // branches and possibly creating exceptions). Object v = ((AbstractFuture) future).value(); if (v instanceof Cancellation) { // If the other future was interrupted, clear the interrupted bit while preserving the cause // this will make it consistent with how non-trustedfutures work which cannot propagate the // wasInterrupted bit Cancellation c = (Cancellation) v; if (c.wasInterrupted) { v = c.cause != null ? new Cancellation(/* wasInterrupted= */ false, c.cause) : Cancellation.CAUSELESS_CANCELLED; } } // requireNonNull is safe as long as we call this method only on completed futures. return requireNonNull(v); } if (future instanceof InternalFutureFailureAccess) { Throwable throwable = InternalFutures.tryInternalFastPathGetFailure((InternalFutureFailureAccess) future); if (throwable != null) { return new Failure(throwable); } } boolean wasCancelled = future.isCancelled(); // Don't allocate a CancellationException if it's not necessary if (!GENERATE_CANCELLATION_CAUSES & wasCancelled) { /* * requireNonNull is safe because we've initialized CAUSELESS_CANCELLED if * !GENERATE_CANCELLATION_CAUSES. */ return requireNonNull(Cancellation.CAUSELESS_CANCELLED); } // Otherwise calculate the value by calling .get() try { Object v = getUninterruptibly(future); if (wasCancelled) { return new Cancellation( false, new IllegalArgumentException( "get() did not throw CancellationException, despite reporting " + "isCancelled() == true: " + future)); } return v == null ? NULL : v; } catch (ExecutionException exception) { if (wasCancelled) { return new Cancellation( false, new IllegalArgumentException( "get() did not throw CancellationException, despite reporting " + "isCancelled() == true: " + future, exception)); } return new Failure(exception.getCause()); } catch (CancellationException cancellation) { if (!wasCancelled) { return new Failure( new IllegalArgumentException( "get() threw CancellationException, despite reporting isCancelled() == false: " + future, cancellation)); } return new Cancellation(false, cancellation); } catch (Exception | Error t) { // sneaky checked exception return new Failure(t); } } /** * An inlined private copy of {@link Uninterruptibles#getUninterruptibly} used to break an * internal dependency on other /util/concurrent classes. */ @ParametricNullness private static V getUninterruptibly(Future future) throws ExecutionException { boolean interrupted = false; try { while (true) { try { return future.get(); } catch (InterruptedException e) { interrupted = true; } } } finally { if (interrupted) { interruptCurrentThread(); } } } /** Unblocks all threads and runs all listeners. */ private static void complete(AbstractFuture param, boolean callInterruptTask) { // Declare a "true" local variable so that the Checker Framework will infer nullness. AbstractFuture future = param; @RetainedLocalRef Listener next = null; outer: while (true) { future.releaseWaiters(); /* * We call interruptTask() immediately before afterDone() so that migrating between the two * can be a no-op. */ if (callInterruptTask) { future.interruptTask(); /* * Interruption doesn't propagate through a DelegatingToFuture chain (see getFutureValue), * so don't invoke interruptTask on any subsequent futures. */ callInterruptTask = false; } // We call this before the listeners in order to avoid needing to manage a separate stack data // structure for them. Also, some implementations rely on this running prior to listeners // so that the cleanup work is visible to listeners. // afterDone() should be generally fast and only used for cleanup work... but in theory can // also be recursive and create StackOverflowErrors future.afterDone(); // push the current set of listeners onto next next = future.clearListeners(next); future = null; while (next != null) { Listener curr = next; next = next.next; /* * requireNonNull is safe because the listener stack never contains TOMBSTONE until after * clearListeners. */ Runnable task = requireNonNull(curr.task); if (task instanceof DelegatingToFuture) { DelegatingToFuture setFuture = (DelegatingToFuture) task; // We unwind setFuture specifically to avoid StackOverflowErrors in the case of long // chains of DelegatingToFutures // Handling this special case is important because there is no way to pass an executor to // setFuture, so a user couldn't break the chain by doing this themselves. It is also // potentially common if someone writes a recursive Futures.transformAsync transformer. future = setFuture.owner; if (future.value() == setFuture) { Object valueToSet = getFutureValue(setFuture.future); if (casValue(future, setFuture, valueToSet)) { continue outer; } } // otherwise the future we were trying to set is already done. } else { /* * requireNonNull is safe because the listener stack never contains TOMBSTONE until after * clearListeners. */ executeListener(task, requireNonNull(curr.executor)); } } break; } } /** * Callback method that is called exactly once after the future is completed. * *

If {@link #interruptTask} is also run during completion, {@link #afterDone} runs after it. * *

The default implementation of this method in {@code AbstractFuture} does nothing. This is * intended for very lightweight cleanup work, for example, timing statistics or clearing fields. * If your task does anything heavier consider, just using a listener with an executor. * * @since 20.0 */ @ForOverride protected void afterDone() {} // TODO(b/114236866): Inherit doc from InternalFutureFailureAccess. Also, -link to its URL. /** * Usually returns {@code null} but, if this {@code Future} has failed, may optionally * return the cause of the failure. "Failure" means specifically "completed with an exception"; it * does not include "was cancelled." To be explicit: If this method returns a non-null value, * then: * *

    *
  • {@code isDone()} must return {@code true} *
  • {@code isCancelled()} must return {@code false} *
  • {@code get()} must not block, and it must throw an {@code ExecutionException} with the * return value of this method as its cause *
* *

This method is {@code protected} so that classes like {@code * com.google.common.util.concurrent.SettableFuture} do not expose it to their users as an * instance method. In the unlikely event that you need to call this method, call {@link * InternalFutures#tryInternalFastPathGetFailure(InternalFutureFailureAccess)}. * * @since 27.0 */ @Override /* * We should annotate the superclass, InternalFutureFailureAccess, to say that its copy of this * method returns @Nullable, too. However, we're not sure if we want to make any changes to that * class, since it's in a separate artifact that we planned to release only a single version of. */ protected final @Nullable Throwable tryInternalFastPathGetFailure() { if (this instanceof Trusted) { @RetainedLocalRef Object localValue = value(); if (localValue instanceof Failure) { return ((Failure) localValue).exception; } } return null; } /** * If this future has been cancelled (and possibly interrupted), cancels (and possibly interrupts) * the given future (if available). */ @SuppressWarnings("nullness") // TODO(b/147136275): Remove once our checker understands & and |. final void maybePropagateCancellationTo(@Nullable Future related) { if (related != null & isCancelled()) { related.cancel(wasInterrupted()); } } /** * Clears the {@link #listeners} list and prepends its contents to {@code onto}, least recently * added first. */ private @Nullable Listener clearListeners(@Nullable Listener onto) { // We need to // 1. atomically swap the listeners with TOMBSTONE, this is because addListener uses that // to synchronize with us // 2. reverse the linked list, because despite our rather clear contract, people depend on us // executing listeners in the order they were added // 3. push all the items onto 'onto' and return the new head of the stack Listener head = gasListeners(Listener.TOMBSTONE); Listener reversedList = onto; while (head != null) { Listener tmp = head; head = head.next; tmp.next = reversedList; reversedList = tmp; } return reversedList; } // TODO(user): move parts into a default method on ListenableFuture? @Override public String toString() { // TODO(cpovirk): Presize to something plausible? StringBuilder builder = new StringBuilder(); if (getClass().getName().startsWith("com.google.common.util.concurrent.")) { builder.append(getClass().getSimpleName()); } else { builder.append(getClass().getName()); } builder.append('@').append(toHexString(identityHashCode(this))).append("[status="); if (isCancelled()) { builder.append("CANCELLED"); } else if (isDone()) { addDoneString(builder); } else { addPendingString(builder); // delegates to addDoneString if future completes midway } return builder.append("]").toString(); } /** * Provide a human-readable explanation of why this future has not yet completed. * * @return null if an explanation cannot be provided (e.g. because the future is done). * @since 23.0 */ protected @Nullable String pendingToString() { // TODO(diamondm) consider moving this into addPendingString so it's always in the output if (this instanceof ScheduledFuture) { return "remaining delay=[" + ((ScheduledFuture) this).getDelay(MILLISECONDS) + " ms]"; } return null; } @SuppressWarnings("CatchingUnchecked") // sneaky checked exception private void addPendingString(StringBuilder builder) { // Capture current builder length so it can be truncated if this future ends up completing while // the toString is being calculated int truncateLength = builder.length(); builder.append("PENDING"); @RetainedLocalRef Object localValue = value(); if (localValue instanceof DelegatingToFuture) { builder.append(", setFuture=["); appendUserObject(builder, ((DelegatingToFuture) localValue).future); builder.append("]"); } else { String pendingDescription; try { pendingDescription = Strings.emptyToNull(pendingToString()); } catch (Throwable e) { /* * We want to catch (Exception | StackOverflowError), but we can't under environments where * StackOverflowError doesn't exist. */ rethrowIfErrorOtherThanStackOverflow(e); // The Throwable is either a RuntimeException, an Error, or sneaky checked exception. // // Don't call getMessage or toString() on the exception, in case the exception thrown by the // subclass is implemented with bugs similar to the subclass. pendingDescription = "Exception thrown from implementation: " + e.getClass(); } if (pendingDescription != null) { builder.append(", info=[").append(pendingDescription).append("]"); } } // The future may complete while calculating the toString, so we check once more to see if the // future is done if (isDone()) { // Truncate anything that was appended before realizing this future is done builder.delete(truncateLength, builder.length()); addDoneString(builder); } } @SuppressWarnings("CatchingUnchecked") // sneaky checked exception private void addDoneString(StringBuilder builder) { try { V value = getUninterruptibly(this); builder.append("SUCCESS, result=["); appendResultObject(builder, value); builder.append("]"); } catch (ExecutionException e) { builder.append("FAILURE, cause=[").append(e.getCause()).append("]"); } catch (CancellationException e) { builder.append("CANCELLED"); // shouldn't be reachable } catch (Exception e) { // sneaky checked exception builder.append("UNKNOWN, cause=[").append(e.getClass()).append(" thrown from get()]"); } } /** * Any object can be the result of a Future, and not every object has a reasonable toString() * implementation. Using a reconstruction of the default Object.toString() prevents OOMs and stack * overflows, and helps avoid sensitive data inadvertently ending up in exception messages. */ private void appendResultObject(StringBuilder builder, @Nullable Object o) { if (o == null) { builder.append("null"); } else if (o == this) { builder.append("this future"); } else { builder .append(o.getClass().getName()) .append("@") .append(Integer.toHexString(System.identityHashCode(o))); } } /** Helper for printing user supplied objects into our toString method. */ @SuppressWarnings("CatchingUnchecked") // sneaky checked exception private void appendUserObject(StringBuilder builder, @Nullable Object o) { // This is some basic recursion detection for when people create cycles via set/setFuture or // when deep chains of futures exist resulting in a StackOverflowError. We could detect // arbitrary cycles using a thread local but this should be a good enough solution (it is also // what jdk collections do in these cases) try { if (o == this) { builder.append("this future"); } else { builder.append(o); } } catch (Throwable e) { /* * We want to catch (Exception | StackOverflowError), but we can't under environments where * StackOverflowError doesn't exist. */ rethrowIfErrorOtherThanStackOverflow(e); // The Throwable is either a RuntimeException, an Error, or sneaky checked exception. // // Don't call getMessage or toString() on the exception, in case the exception thrown by the // user object is implemented with bugs similar to the user object. builder.append("Exception thrown from implementation: ").append(e.getClass()); } } /** * Submits the given runnable to the given {@link Executor} catching and logging all {@linkplain * RuntimeException runtime exceptions} thrown by the executor. */ @SuppressWarnings("CatchingUnchecked") // sneaky checked exception private static void executeListener(Runnable runnable, Executor executor) { try { executor.execute(runnable); } catch (Exception e) { // sneaky checked exception // Log it and keep going -- bad runnable and/or executor. Don't punish the other runnables if // we're given a bad one. We only catch Exception because we want Errors to propagate up. log.get() .log( SEVERE, "RuntimeException while executing runnable " + runnable + " with executor " + executor, e); } } private static CancellationException cancellationExceptionWithCause( String message, @Nullable Throwable cause) { CancellationException exception = new CancellationException(message); exception.initCause(cause); return exception; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy