blob: 289eb8746159cecc4084ea94642fc9367dfe9abd [file] [log] [blame]
/*
* 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.
*/
package androidx.camera.camera2.pipe.integration.adapter
import androidx.concurrent.futures.CallbackToFutureAdapter
import com.google.common.util.concurrent.ListenableFuture
import kotlinx.coroutines.Deferred
import kotlinx.coroutines.ExperimentalCoroutinesApi
import kotlinx.coroutines.Job
import java.util.concurrent.CancellationException
/**
* 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)
}