/* * Copyright (C) 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 com.android.systemui.settings import android.content.BroadcastReceiver import android.content.ContentResolver import android.content.Context import android.content.Intent import android.content.IntentFilter import android.content.pm.UserInfo import android.os.Handler import android.os.UserHandle import android.os.UserManager import android.util.Log import androidx.annotation.GuardedBy import androidx.annotation.WorkerThread import com.android.systemui.Dumpable import com.android.systemui.dump.DumpManager import com.android.systemui.util.Assert import java.io.FileDescriptor import java.io.PrintWriter import java.lang.IllegalStateException import java.lang.ref.WeakReference import java.util.concurrent.Executor import kotlin.properties.ReadWriteProperty import kotlin.reflect.KProperty /** * SystemUI cache for keeping track of the current user and associated values. * * The values provided asynchronously are NOT copies, but shared among all requesters. Do not * modify them. * * This class purposefully doesn't use [BroadcastDispatcher] in order to receive the broadcast as * soon as possible (and reduce its dependency graph). * Other classes that want to listen to the broadcasts listened here SHOULD * subscribe to this class instead. * * @see UserTracker * * Class constructed and initialized in [SettingsModule]. */ class UserTrackerImpl internal constructor( private val context: Context, private val userManager: UserManager, private val dumpManager: DumpManager, private val backgroundHandler: Handler ) : UserTracker, Dumpable, BroadcastReceiver() { companion object { private const val TAG = "UserTrackerImpl" } var initialized = false private set private val mutex = Any() override var userId: Int by SynchronizedDelegate(context.userId) private set override var userHandle: UserHandle by SynchronizedDelegate(context.user) private set override var userContext: Context by SynchronizedDelegate(context) private set override val userContentResolver: ContentResolver get() = userContext.contentResolver override val userInfo: UserInfo get() { val user = userId return userProfiles.first { it.id == user } } /** * Returns a [List] of all profiles associated with the current user. * * The list returned is not a copy, so a copy should be made if its elements need to be * modified. */ override var userProfiles: List by SynchronizedDelegate(emptyList()) private set @GuardedBy("callbacks") private val callbacks: MutableList = ArrayList() fun initialize(startingUser: Int) { if (initialized) { return } initialized = true setUserIdInternal(startingUser) val filter = IntentFilter().apply { addAction(Intent.ACTION_USER_SWITCHED) addAction(Intent.ACTION_MANAGED_PROFILE_AVAILABLE) addAction(Intent.ACTION_MANAGED_PROFILE_REMOVED) } context.registerReceiverForAllUsers(this, filter, null /* permission */, backgroundHandler) dumpManager.registerDumpable(TAG, this) } override fun onReceive(context: Context, intent: Intent) { when (intent.action) { Intent.ACTION_USER_SWITCHED -> { handleSwitchUser(intent.getIntExtra(Intent.EXTRA_USER_HANDLE, UserHandle.USER_NULL)) } Intent.ACTION_MANAGED_PROFILE_AVAILABLE, Intent.ACTION_MANAGED_PROFILE_UNAVAILABLE -> { handleProfilesChanged() } } } private fun setUserIdInternal(user: Int): Pair> { val profiles = userManager.getProfiles(user) val handle = UserHandle(user) val ctx = context.createContextAsUser(handle, 0) synchronized(mutex) { userId = user userHandle = handle userContext = ctx userProfiles = profiles.map { UserInfo(it) } } return ctx to profiles } @WorkerThread private fun handleSwitchUser(newUser: Int) { Assert.isNotMainThread() if (newUser == UserHandle.USER_NULL) { Log.w(TAG, "handleSwitchUser - Couldn't get new id from intent") return } if (newUser == userId) return Log.i(TAG, "Switching to user $newUser") val (ctx, profiles) = setUserIdInternal(newUser) notifySubscribers { onUserChanged(newUser, ctx) onProfilesChanged(profiles) } } @WorkerThread private fun handleProfilesChanged() { Assert.isNotMainThread() val profiles = userManager.getProfiles(userId) synchronized(mutex) { userProfiles = profiles.map { UserInfo(it) } // save a "deep" copy } notifySubscribers { onProfilesChanged(profiles) } } override fun addCallback(callback: UserTracker.Callback, executor: Executor) { synchronized(callbacks) { callbacks.add(DataItem(WeakReference(callback), executor)) } } override fun removeCallback(callback: UserTracker.Callback) { synchronized(callbacks) { callbacks.removeIf { it.sameOrEmpty(callback) } } } private inline fun notifySubscribers(crossinline action: UserTracker.Callback.() -> Unit) { val list = synchronized(callbacks) { callbacks.toList() } list.forEach { if (it.callback.get() != null) { it.executor.execute { it.callback.get()?.action() } } } } override fun dump(fd: FileDescriptor, pw: PrintWriter, args: Array) { pw.println("Initialized: $initialized") if (initialized) { pw.println("userId: $userId") val ids = userProfiles.map { it.id } pw.println("userProfiles: $ids") } val list = synchronized(callbacks) { callbacks.toList() } pw.println("Callbacks:") list.forEach { it.callback.get()?.let { pw.println(" $it") } } } private class SynchronizedDelegate( private var value: T ) : ReadWriteProperty { @GuardedBy("mutex") override fun getValue(thisRef: UserTrackerImpl, property: KProperty<*>): T { if (!thisRef.initialized) { throw IllegalStateException("Must initialize before getting ${property.name}") } return synchronized(thisRef.mutex) { value } } @GuardedBy("mutex") override fun setValue(thisRef: UserTrackerImpl, property: KProperty<*>, value: T) { synchronized(thisRef.mutex) { this.value = value } } } } private data class DataItem( val callback: WeakReference, val executor: Executor ) { fun sameOrEmpty(other: UserTracker.Callback): Boolean { return callback.get()?.equals(other) ?: true } }