summaryrefslogtreecommitdiff
path: root/java/com/google/android/libraries/mobiledatadownload/internal/util/FuturesUtil.java
blob: 0e0013cd808623ecf34a8dd9a6e162526bec31f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/*
 * Copyright 2022 Google LLC
 *
 * 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.android.libraries.mobiledatadownload.internal.util;

import static com.google.common.util.concurrent.Futures.immediateFuture;

import com.google.android.libraries.mobiledatadownload.internal.annotations.SequentialControlExecutor;
import com.google.android.libraries.mobiledatadownload.tracing.PropagatedFutures;
import com.google.common.base.Function;
import com.google.common.util.concurrent.ListenableFuture;
import com.google.errorprone.annotations.CanIgnoreReturnValue;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.Executor;

/** Utilities for manipulating futures. */
public final class FuturesUtil {

  private final Executor sequentialExecutor;

  public FuturesUtil(@SequentialControlExecutor Executor sequentialExecutor) {
    this.sequentialExecutor = sequentialExecutor;
  }

  /**
   * Returns a SequentialFutureChain which can takes a number of asynchronous operation and turns
   * them into a single asynchronous operation.
   *
   * <p>SequentialFutureChain provides a clearer way of writing a common idiom used to sequence a
   * number of asynchrounous operations. The fragment
   *
   * <pre>{@code
   * ListenableFuture<T> future = immediateFuture(init);
   * future = transformAsync(future, arg -> asyncOp1, sequentialExecutor);
   * future = transform(future, arg -> op2, sequentialExecutor);
   * future = transformAsync(future, arg -> asyncOp3, sequentialExecutor);
   * return future;
   * }</pre>
   *
   * <p>can be rewritten as
   *
   * <pre>{@code
   * return new FuturesUtil(sequentialExecutor)
   *     .newSequentialChain(init)
   *     .chainAsync(arg -> asyncOp1)
   *     .chain(arg -> op2)
   *     .chainAsync(arg -> asyncOp3)
   *     .start();
   * }</pre>
   *
   * <p>If any intermediate operation raises an exception, the whole chain raises an exception.
   *
   * <p>Note that sequentialExecutor must be a sequential executor, i.e. provide the sequentiality
   * guarantees provided by {@link com.google.common.util.concurrent.SequentialExecutor}.
   */
  public <T> SequentialFutureChain<T> newSequentialChain(T init) {
    return new SequentialFutureChain<>(init);
  }

  /**
   * Create a SequentialFutureChain that doesn't compute a result.
   *
   * <p>If any intermediate operation raises an exception, the whole chain raises an exception.
   *
   * <p>Note that sequentialExecutor must be a sequential executor, i.e. provide the sequentiality
   * guarantees provided by {@link com.google.common.util.concurrent.SequentialExecutor}.
   */
  public SequentialFutureChain<Void> newSequentialChain() {
    return new SequentialFutureChain<>(null);
  }

  /** Builds a list of Futurse to be executed sequentially. */
  public final class SequentialFutureChain<T> {
    private final List<FutureChainElement<T>> operations;
    private final T init;

    private SequentialFutureChain(T init) {
      this.operations = new ArrayList<>();
      this.init = init;
    }

    @CanIgnoreReturnValue
    public SequentialFutureChain<T> chain(Function<T, T> operation) {
      operations.add(new DirectFutureChainElement<>(operation));
      return this;
    }

    @CanIgnoreReturnValue
    public SequentialFutureChain<T> chainAsync(Function<T, ListenableFuture<T>> operation) {
      operations.add(new AsyncFutureChainElement<>(operation));
      return this;
    }

    public ListenableFuture<T> start() {
      ListenableFuture<T> result = immediateFuture(init);
      for (FutureChainElement<T> operation : operations) {
        result = operation.apply(result);
      }
      return result;
    }
  }

  private interface FutureChainElement<T> {
    abstract ListenableFuture<T> apply(ListenableFuture<T> input);
  }

  private final class DirectFutureChainElement<T> implements FutureChainElement<T> {
    private final Function<T, T> operation;

    private DirectFutureChainElement(Function<T, T> operation) {
      this.operation = operation;
    }

    @Override
    public ListenableFuture<T> apply(ListenableFuture<T> input) {
      return PropagatedFutures.transform(input, operation, sequentialExecutor);
    }
  }

  private final class AsyncFutureChainElement<T> implements FutureChainElement<T> {
    private final Function<T, ListenableFuture<T>> operation;

    private AsyncFutureChainElement(Function<T, ListenableFuture<T>> operation) {
      this.operation = operation;
    }

    @Override
    public ListenableFuture<T> apply(ListenableFuture<T> input) {
      return PropagatedFutures.transformAsync(input, operation::apply, sequentialExecutor);
    }
  }
}