/* * Copyright (C) 2019 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.car; import android.annotation.IntDef; import android.annotation.NonNull; import android.annotation.Nullable; import android.annotation.RequiresPermission; import android.annotation.SystemApi; import android.annotation.UserIdInt; import android.hardware.display.DisplayManager; import android.os.Handler; import android.os.IBinder; import android.os.Looper; import android.os.Message; import android.os.Parcel; import android.os.Parcelable; import android.os.RemoteException; import android.os.UserHandle; import android.util.Log; import android.view.Display; import com.android.internal.annotations.VisibleForTesting; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import java.lang.ref.WeakReference; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.concurrent.CopyOnWriteArrayList; /** * API to get information on displays and users in the car. */ public class CarOccupantZoneManager extends CarManagerBase { private static final String TAG = CarOccupantZoneManager.class.getSimpleName(); /** Display type is not known. In some system, some displays may be just public display without * any additional information and such displays will be treated as unknown. */ public static final int DISPLAY_TYPE_UNKNOWN = 0; /** Main display users are interacting with. UI for the user will be launched to this display by * default. {@link Display#DEFAULT_DISPLAY} will be always have this type. But there can be * multiple of this type as each passenger can have their own main display. */ public static final int DISPLAY_TYPE_MAIN = 1; /** Instrument cluster display. This may exist only for driver. */ public static final int DISPLAY_TYPE_INSTRUMENT_CLUSTER = 2; /** Head Up Display. This may exist only for driver. */ public static final int DISPLAY_TYPE_HUD = 3; /** Dedicated display for showing IME for {@link #DISPLAY_TYPE_MAIN} */ public static final int DISPLAY_TYPE_INPUT = 4; /** Auxiliary display which can provide additional screen for {@link #DISPLAY_TYPE_MAIN}. * Activity running in {@link #DISPLAY_TYPE_MAIN} may use {@link android.app.Presentation} to * show additional information. */ public static final int DISPLAY_TYPE_AUXILIARY = 5; /** @hide */ @Retention(RetentionPolicy.SOURCE) @IntDef(prefix = "DISPLAY_TYPE_", value = { DISPLAY_TYPE_UNKNOWN, DISPLAY_TYPE_MAIN, DISPLAY_TYPE_INSTRUMENT_CLUSTER, DISPLAY_TYPE_HUD, DISPLAY_TYPE_INPUT, DISPLAY_TYPE_AUXILIARY, }) @Target({ElementType.TYPE_USE}) public @interface DisplayTypeEnum {} /** @hide */ public static final int OCCUPANT_TYPE_INVALID = -1; /** Represents driver. There can be only one driver for the system. */ public static final int OCCUPANT_TYPE_DRIVER = 0; /** Represents front passengers who sits in front side of car. Most cars will have only * one passenger of this type but this can be multiple. */ public static final int OCCUPANT_TYPE_FRONT_PASSENGER = 1; /** Represents passengers in rear seats. There can be multiple passengers of this type. */ public static final int OCCUPANT_TYPE_REAR_PASSENGER = 2; /** @hide */ @Retention(RetentionPolicy.SOURCE) @IntDef(prefix = "OCCUPANT_TYPE_", value = { OCCUPANT_TYPE_DRIVER, OCCUPANT_TYPE_FRONT_PASSENGER, OCCUPANT_TYPE_REAR_PASSENGER, }) @Target({ElementType.TYPE_USE}) public @interface OccupantTypeEnum {} /** * Represents an occupant zone in a car. * *
Each occupant does not necessarily represent single person but it is for mapping to one * set of displays. For example, for display located in center rear seat, both left and right * side passengers may use it but it is abstracted as a single occupant zone.
*/ public static final class OccupantZoneInfo implements Parcelable { /** @hide */ public static final int INVALID_ZONE_ID = -1; /** * This is an unique id to distinguish each occupant zone. * *This can be helpful to distinguish different zones when {@link #occupantType} and * {@link #seat} are the same for multiple occupant / passenger zones.
* *This id will remain the same for the same zone across configuration changes like * user switching or display changes
*/ public int zoneId; /** Represents type of passenger */ @OccupantTypeEnum public final int occupantType; /** * Represents seat assigned for the occupant. In some system, this can have value of * {@link VehicleAreaSeat#SEAT_UNKNOWN}. */ @VehicleAreaSeat.Enum public final int seat; /** @hide */ public OccupantZoneInfo(int zoneId, @OccupantTypeEnum int occupantType, @VehicleAreaSeat.Enum int seat) { this.zoneId = zoneId; this.occupantType = occupantType; this.seat = seat; } /** @hide */ public OccupantZoneInfo(Parcel in) { zoneId = in.readInt(); occupantType = in.readInt(); seat = in.readInt(); } @Override public int describeContents() { return 0; } @Override public void writeToParcel(Parcel dest, int flags) { dest.writeInt(zoneId); dest.writeInt(occupantType); dest.writeInt(seat); } @Override public boolean equals(Object other) { if (this == other) { return true; } if (!(other instanceof OccupantZoneInfo)) { return false; } OccupantZoneInfo that = (OccupantZoneInfo) other; return zoneId == that.zoneId && occupantType == that.occupantType && seat == that.seat; } @Override public int hashCode() { int hash = 23; hash = hash * 17 + zoneId; hash = hash * 17 + occupantType; hash = hash * 17 + seat; return hash; } public static final Parcelable.CreatorNote that only non-driver zone can be assigned with this call. Calling this for driver
* zone will lead into {@code IllegalArgumentException}.
*
* @param occupantZone Zone to assign user.
* @param userId profile user id to assign. Passing {@link UserHandle#USER_NULL} leads into
* removing the current user assignment.
* @return true if the request succeeds or if the user is already assigned to the zone.
*
* @hide
*/
@RequiresPermission(android.Manifest.permission.MANAGE_USERS)
public boolean assignProfileUserToOccupantZone(@NonNull OccupantZoneInfo occupantZone,
@UserIdInt int userId) {
assertNonNullOccupant(occupantZone);
try {
return mService.assignProfileUserToOccupantZone(occupantZone.zoneId, userId);
} catch (RemoteException e) {
return handleRemoteExceptionFromCarService(e, false);
}
}
private void assertNonNullOccupant(OccupantZoneInfo occupantZone) {
if (occupantZone == null) {
throw new IllegalArgumentException("null OccupantZoneInfo");
}
}
private void assertNonNullDisplay(Display display) {
if (display == null) {
throw new IllegalArgumentException("null Display");
}
}
/**
* Registers the listener for occupant zone config change. Registering multiple listeners are
* allowed.
*/
public void registerOccupantZoneConfigChangeListener(
@NonNull OccupantZoneConfigChangeListener listener) {
if (mListeners.addIfAbsent(listener)) {
if (mListeners.size() == 1) {
try {
mService.registerCallback(mBinderCallback);
} catch (RemoteException e) {
handleRemoteExceptionFromCarService(e);
}
}
}
}
/**
* Unregisters the listener. Listeners not registered before will be ignored.
*/
public void unregisterOccupantZoneConfigChangeListener(
@NonNull OccupantZoneConfigChangeListener listener) {
if (mListeners.remove(listener)) {
if (mListeners.size() == 0) {
try {
mService.unregisterCallback(mBinderCallback);
} catch (RemoteException ignored) {
// ignore for unregistering
}
}
}
}
private void handleOnOccupantZoneConfigChanged(int flags) {
for (OccupantZoneConfigChangeListener listener : mListeners) {
listener.onOccupantZoneConfigChanged(flags);
}
}
private final class EventHandler extends Handler {
private static final int MSG_ZONE_CHANGE = 1;
private EventHandler(Looper looper) {
super(looper);
}
@Override
public void handleMessage(Message msg) {
switch (msg.what) {
case MSG_ZONE_CHANGE:
handleOnOccupantZoneConfigChanged(msg.arg1);
break;
default:
Log.e(TAG, "Unknown msg not handdled:" + msg.what);
break;
}
}
private void dispatchOnOccupantZoneConfigChanged(int flags) {
sendMessage(obtainMessage(MSG_ZONE_CHANGE, flags, 0));
}
}
private static class ICarOccupantZoneCallbackImpl extends ICarOccupantZoneCallback.Stub {
private final WeakReference