018356d3c3
Fix: 400733213 Flag: NONE - release code Test: manual Change-Id: I5e143fce6a4cbc1dbb246bc6e0141ebbbc8bd274
52 lines
1.8 KiB
Kotlin
52 lines
1.8 KiB
Kotlin
/*
|
|
* Copyright (C) 2025 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 android.os
|
|
|
|
import com.android.launcher3.util.Executors.MAIN_EXECUTOR
|
|
import com.android.launcher3.util.WeakCleanupSet
|
|
import com.android.launcher3.util.WeakCleanupSet.OnOwnerDestroyedCallback
|
|
|
|
/** Utility methods related to Binder */
|
|
object BinderUtils {
|
|
|
|
/** Creates a binder wrapper which is tied to the [lifecycle] */
|
|
@JvmStatic
|
|
fun <T : Binder> T.wrapLifecycle(cleanupSet: WeakCleanupSet): Binder =
|
|
LifecycleBinderWrapper(this, cleanupSet)
|
|
|
|
private class LifecycleBinderWrapper<T : Binder>(
|
|
private var realBinder: T?,
|
|
cleanupSet: WeakCleanupSet,
|
|
) : Binder(realBinder?.interfaceDescriptor), OnOwnerDestroyedCallback {
|
|
|
|
init {
|
|
MAIN_EXECUTOR.execute { cleanupSet.addOnOwnerDestroyedCallback(this) }
|
|
}
|
|
|
|
override fun queryLocalInterface(descriptor: String): IInterface? =
|
|
realBinder?.queryLocalInterface(descriptor)
|
|
|
|
override fun onTransact(code: Int, data: Parcel, reply: Parcel?, flags: Int): Boolean =
|
|
realBinder?.transact(code, data, reply, flags)
|
|
?: throw RemoteException("Original binder cleaned up")
|
|
|
|
override fun onOwnerDestroyed() {
|
|
realBinder = null
|
|
}
|
|
}
|
|
}
|