/* * 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 android.hardware.devicestate; import android.annotation.CallbackExecutor; import android.annotation.NonNull; import android.annotation.Nullable; import android.annotation.RequiresPermission; import android.annotation.SystemService; import android.annotation.TestApi; import android.content.Context; import com.android.internal.util.ArrayUtils; import java.util.concurrent.Executor; import java.util.function.Consumer; /** * Manages the state of the system for devices with user-configurable hardware like a foldable * phone. * * @hide */ @TestApi @SystemService(Context.DEVICE_STATE_SERVICE) public final class DeviceStateManager { /** * Invalid device state. * * @hide */ public static final int INVALID_DEVICE_STATE = -1; /** The minimum allowed device state identifier. */ public static final int MINIMUM_DEVICE_STATE = 0; /** The maximum allowed device state identifier. */ public static final int MAXIMUM_DEVICE_STATE = 255; private final DeviceStateManagerGlobal mGlobal; /** @hide */ public DeviceStateManager() { DeviceStateManagerGlobal global = DeviceStateManagerGlobal.getInstance(); if (global == null) { throw new IllegalStateException( "Failed to get instance of global device state manager."); } mGlobal = global; } /** * Returns the list of device states that are supported and can be requested with * {@link #requestState(DeviceStateRequest, Executor, DeviceStateRequest.Callback)}. */ @NonNull public int[] getSupportedStates() { return mGlobal.getSupportedStates(); } /** * Submits a {@link DeviceStateRequest request} to modify the device state. *

* By default, the request is kept active until one of the following occurs: *

* However, this behavior can be changed by setting flags on the {@link DeviceStateRequest}. * * @throws IllegalArgumentException if the requested state is unsupported. * @throws SecurityException if the caller is neither the current top-focused activity nor if * the {@link android.Manifest.permission#CONTROL_DEVICE_STATE} permission is held. * * @see DeviceStateRequest */ @RequiresPermission(value = android.Manifest.permission.CONTROL_DEVICE_STATE, conditional = true) public void requestState(@NonNull DeviceStateRequest request, @Nullable @CallbackExecutor Executor executor, @Nullable DeviceStateRequest.Callback callback) { mGlobal.requestState(request, executor, callback); } /** * Cancels a {@link DeviceStateRequest request} previously submitted with a call to * {@link #requestState(DeviceStateRequest, Executor, DeviceStateRequest.Callback)}. *

* This method is noop if the {@code request} has not been submitted with a call to * {@link #requestState(DeviceStateRequest, Executor, DeviceStateRequest.Callback)}. * * @throws SecurityException if the caller is neither the current top-focused activity nor if * the {@link android.Manifest.permission#CONTROL_DEVICE_STATE} permission is held. */ @RequiresPermission(value = android.Manifest.permission.CONTROL_DEVICE_STATE, conditional = true) public void cancelRequest(@NonNull DeviceStateRequest request) { mGlobal.cancelRequest(request); } /** * Registers a callback to receive notifications about changes in device state. * * @param executor the executor to process notifications. * @param callback the callback to register. * * @see DeviceStateCallback */ public void registerCallback(@NonNull @CallbackExecutor Executor executor, @NonNull DeviceStateCallback callback) { mGlobal.registerDeviceStateCallback(callback, executor); } /** * Unregisters a callback previously registered with * {@link #registerCallback(Executor, DeviceStateCallback)}. */ public void unregisterCallback(@NonNull DeviceStateCallback callback) { mGlobal.unregisterDeviceStateCallback(callback); } /** Callback to receive notifications about changes in device state. */ public interface DeviceStateCallback { /** * Called in response to a change in the states supported by the device. *

* Guaranteed to be called once on registration of the callback with the initial value and * then on every subsequent change in the supported states. * * @param supportedStates the new supported states. * * @see DeviceStateManager#getSupportedStates() */ default void onSupportedStatesChanged(@NonNull int[] supportedStates) {} /** * Called in response to a change in the base device state. *

* The base state is the state of the device without considering any requests made through * calls to {@link #requestState(DeviceStateRequest, Executor, DeviceStateRequest.Callback)} * from any client process. The base state is guaranteed to match the state provided with a * call to {@link #onStateChanged(int)} when there are no active requests from any process. *

* Guaranteed to be called once on registration of the callback with the initial value and * then on every subsequent change in the non-override state. * * @param state the new base device state. */ default void onBaseStateChanged(int state) {} /** * Called in response to device state changes. *

* Guaranteed to be called once on registration of the callback with the initial value and * then on every subsequent change in device state. * * @param state the new device state. */ void onStateChanged(int state); } /** * Listens to changes in device state and reports the state as folded if the device state * matches the value in the {@link com.android.internal.R.integer.config_foldedDeviceState} * resource. * @hide */ public static class FoldStateListener implements DeviceStateCallback { private final int[] mFoldedDeviceStates; private final Consumer mDelegate; @Nullable private Boolean lastResult; public FoldStateListener(Context context, Consumer listener) { mFoldedDeviceStates = context.getResources().getIntArray( com.android.internal.R.array.config_foldedDeviceStates); mDelegate = listener; } @Override public final void onStateChanged(int state) { final boolean folded = ArrayUtils.contains(mFoldedDeviceStates, state); if (lastResult == null || !lastResult.equals(folded)) { lastResult = folded; mDelegate.accept(folded); } } } }