| /* |
| * Copyright 2020 The Android Open Source Project |
| * |
| * 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. |
| */ |
| |
| @file:RequiresApi(21) // TODO(b/200306659): Remove and replace with annotation on package-info.java |
| |
| package androidx.camera.camera2.pipe.integration.adapter |
| |
| import androidx.annotation.RequiresApi |
| import androidx.concurrent.futures.CallbackToFutureAdapter |
| import com.google.common.util.concurrent.ListenableFuture |
| import java.util.concurrent.CancellationException |
| import kotlinx.coroutines.CompletableDeferred |
| import kotlinx.coroutines.Deferred |
| import kotlinx.coroutines.ExperimentalCoroutinesApi |
| import kotlinx.coroutines.Job |
| import kotlinx.coroutines.withTimeoutOrNull |
| |
| /** |
| * Convert a job into a ListenableFuture<Void>. |
| * |
| * The return value of the Future is null, and canceling the future will not cancel the Job. |
| * The tag field may be used to help debug futures. |
| */ |
| fun Job.asListenableFuture(tag: Any? = "Job.asListenableFuture"): ListenableFuture<Void> { |
| val resolver: CallbackToFutureAdapter.Resolver<Void> = |
| CallbackToFutureAdapter.Resolver<Void> { completer -> |
| this.invokeOnCompletion { |
| if (it != null) { |
| if (it is CancellationException) { |
| completer.setCancelled() |
| } else { |
| completer.setException(it) |
| } |
| } else { |
| completer.set(null) |
| } |
| } |
| tag |
| } |
| return CallbackToFutureAdapter.getFuture(resolver) |
| } |
| |
| /** |
| * Convert a job into a ListenableFuture<T>. |
| */ |
| @OptIn(ExperimentalCoroutinesApi::class) |
| fun <T> Deferred<T>.asListenableFuture( |
| tag: Any? = "Deferred.asListenableFuture" |
| ): ListenableFuture<T> { |
| val resolver: CallbackToFutureAdapter.Resolver<T> = |
| CallbackToFutureAdapter.Resolver<T> { completer -> |
| this.invokeOnCompletion { |
| if (it != null) { |
| if (it is CancellationException) { |
| completer.setCancelled() |
| } else { |
| completer.setException(it) |
| } |
| } else { |
| // Ignore exceptions - This should never throw in this situation. |
| completer.set(this.getCompleted()) |
| } |
| } |
| tag |
| } |
| return CallbackToFutureAdapter.getFuture(resolver) |
| } |
| |
| fun <T> Deferred<T>.propagateTo(destination: CompletableDeferred<T>) { |
| invokeOnCompletion { |
| propagateOnceTo(destination, it) |
| } |
| } |
| |
| @OptIn(ExperimentalCoroutinesApi::class) |
| fun <T> Deferred<T>.propagateOnceTo( |
| destination: CompletableDeferred<T>, |
| throwable: Throwable?, |
| ) { |
| if (throwable != null) { |
| if (throwable is CancellationException) { |
| destination.cancel(throwable) |
| } else { |
| destination.completeExceptionally(throwable) |
| } |
| } else { |
| // Ignore exceptions - This should never throw in this situation. |
| destination.complete(getCompleted()) |
| } |
| } |
| |
| /** |
| * Waits for [Deferred.await] to be completed until the given timeout. |
| * |
| * @return true if `Deferred.await` had completed, false otherwise. |
| */ |
| suspend fun <T> Deferred<T>.awaitUntil(timeoutMillis: Long) = |
| withTimeoutOrNull(timeoutMillis) { this@awaitUntil.await() }?.let { true } ?: false |