summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKriti Dang <kritidang@google.com>2021-02-25 18:11:34 +0100
committerKriti Dang <kritidang@google.com>2021-02-26 16:36:39 +0100
commitb309e350d46756543e1b52a73e00a1327eea0bfe (patch)
tree720ac25c1882c6f3c3a9d0c3812e57c476053f49
parenta62518fa7654ee39039f09d3cc0252f9d7d46152 (diff)
downloadtvsystem-b309e350d46756543e1b52a73e00a1327eea0bfe.tar.gz
Changes in tvsystem/ DeviceProductInfo to mirror changes in
frameworks/base/ DeviceProductInfo Bug: 179775994 Test: N/A Change-Id: I6b92cb3ef59f68f6eb9b73be03c51bf2c21dc2a3
-rw-r--r--api/current.txt9
-rw-r--r--java/com/android/libraries/tv/tvsystem/display/DeviceProductInfo.java73
-rw-r--r--java/com/android/libraries/tv/tvsystem/display/DisplayCompatUtil.java2
3 files changed, 73 insertions, 11 deletions
diff --git a/api/current.txt b/api/current.txt
index 09cb6e8..fde8b7f 100644
--- a/api/current.txt
+++ b/api/current.txt
@@ -2,13 +2,18 @@
package com.android.libraries.tv.tvsystem.display {
public final class DeviceProductInfo {
- ctor public DeviceProductInfo(String, String, String, Integer, com.android.libraries.tv.tvsystem.display.DeviceProductInfo.ManufactureDate, int[]);
+ ctor @Deprecated public DeviceProductInfo(String, String, String, Integer, com.android.libraries.tv.tvsystem.display.DeviceProductInfo.ManufactureDate, int[]);
+ method public int getConnectionToSinkType();
method public com.android.libraries.tv.tvsystem.display.DeviceProductInfo.ManufactureDate getManufactureDate();
method public String getManufacturerPnpId();
method public Integer getModelYear();
method public String getName();
method public String getProductId();
- method public int[] getRelativeAddress();
+ method @Deprecated public int[] getRelativeAddress();
+ field public static final int CONNECTION_TO_SINK_BUILT_IN = 1; // 0x1
+ field public static final int CONNECTION_TO_SINK_DIRECT = 2; // 0x2
+ field public static final int CONNECTION_TO_SINK_TRANSITIVE = 3; // 0x3
+ field public static final int CONNECTION_TO_SINK_UNKNOWN = 0; // 0x0
}
public static class DeviceProductInfo.ManufactureDate {
diff --git a/java/com/android/libraries/tv/tvsystem/display/DeviceProductInfo.java b/java/com/android/libraries/tv/tvsystem/display/DeviceProductInfo.java
index 6e78253..fb0bf71 100644
--- a/java/com/android/libraries/tv/tvsystem/display/DeviceProductInfo.java
+++ b/java/com/android/libraries/tv/tvsystem/display/DeviceProductInfo.java
@@ -16,7 +16,10 @@
package com.android.libraries.tv.tvsystem.display;
-import java.util.Arrays;
+import android.annotation.IntDef;
+
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
import java.util.Objects;
/**
@@ -25,13 +28,39 @@ import java.util.Objects;
* product information about the intermediate device.
*/
public final class DeviceProductInfo {
+ /** @hide */
+ @IntDef(prefix = {"CONNECTION_TO_SINK_"}, value = {
+ CONNECTION_TO_SINK_UNKNOWN,
+ CONNECTION_TO_SINK_BUILT_IN,
+ CONNECTION_TO_SINK_DIRECT,
+ CONNECTION_TO_SINK_TRANSITIVE
+ })
+ @Retention(RetentionPolicy.SOURCE)
+ public @interface ConnectionToSinkType { }
+
+ /** The device connection to the display sink is unknown. */
+ public static final int CONNECTION_TO_SINK_UNKNOWN = 0;
+
+ /** The display sink is built-in to the device */
+ public static final int CONNECTION_TO_SINK_BUILT_IN = 1;
+
+ /** The device is directly connected to the display sink. */
+ public static final int CONNECTION_TO_SINK_DIRECT = 2;
+
+ /** The device is transitively connected to the display sink. */
+ public static final int CONNECTION_TO_SINK_TRANSITIVE = 3;
+
private final String mName;
private final String mManufacturerPnpId;
private final String mProductId;
private final Integer mModelYear;
private final ManufactureDate mManufactureDate;
- private final int[] mRelativeAddress;
+ private final @ConnectionToSinkType int mConnectionToSinkType;
+ /** @deprecated use
+ * {@link #DeviceProductInfo(String, String, String, Integer, ManufactureDate, int)} ()}
+ * instead.*/
+ @Deprecated
public DeviceProductInfo(
String name,
String manufacturerPnpId,
@@ -44,7 +73,23 @@ public final class DeviceProductInfo {
this.mProductId = productId;
this.mModelYear = modelYear;
this.mManufactureDate = manufactureDate;
- this.mRelativeAddress = relativeAddress;
+ this.mConnectionToSinkType = CONNECTION_TO_SINK_UNKNOWN;
+ }
+
+ /** @hide */
+ public DeviceProductInfo(
+ String name,
+ String manufacturerPnpId,
+ String productId,
+ Integer modelYear,
+ ManufactureDate manufactureDate,
+ int connectionToSinkType) {
+ this.mName = name;
+ this.mManufacturerPnpId = manufacturerPnpId;
+ this.mProductId = productId;
+ this.mModelYear = modelYear;
+ this.mManufactureDate = manufactureDate;
+ this.mConnectionToSinkType = connectionToSinkType;
}
/**
@@ -87,9 +132,21 @@ public final class DeviceProductInfo {
/**
* @return Relative address in the display network. For example, for HDMI connected devices this
* can be its physical address. Each component of the address is in the range [0, 255].
+ *
+ * @deprecated use {@link #getConnectionToSinkType()} instead.
*/
+ @Deprecated
public int[] getRelativeAddress() {
- return mRelativeAddress;
+ return null;
+ }
+
+ /**
+ * @return How the current device is connected to the display sink. For example, the display
+ * can be connected immediately to the device or there can be a receiver in between.
+ */
+ @ConnectionToSinkType
+ public int getConnectionToSinkType() {
+ return mConnectionToSinkType;
}
@Override
@@ -105,8 +162,8 @@ public final class DeviceProductInfo {
+ mModelYear
+ ", manufactureDate="
+ mManufactureDate
- + ", relativeAddress="
- + Arrays.toString(mRelativeAddress)
+ + ", connectionToSinkType="
+ + mConnectionToSinkType
+ '}';
}
@@ -120,13 +177,13 @@ public final class DeviceProductInfo {
&& Objects.equals(mProductId, that.mProductId)
&& Objects.equals(mModelYear, that.mModelYear)
&& Objects.equals(mManufactureDate, that.mManufactureDate)
- && Arrays.equals(mRelativeAddress, that.mRelativeAddress);
+ && mConnectionToSinkType == that.mConnectionToSinkType;
}
@Override
public int hashCode() {
return Objects.hash(mName, mManufacturerPnpId, mProductId, mModelYear, mManufactureDate,
- mRelativeAddress);
+ mConnectionToSinkType);
}
/**
diff --git a/java/com/android/libraries/tv/tvsystem/display/DisplayCompatUtil.java b/java/com/android/libraries/tv/tvsystem/display/DisplayCompatUtil.java
index fb19f98..746f90b 100644
--- a/java/com/android/libraries/tv/tvsystem/display/DisplayCompatUtil.java
+++ b/java/com/android/libraries/tv/tvsystem/display/DisplayCompatUtil.java
@@ -64,7 +64,7 @@ public final class DisplayCompatUtil {
}
return new DeviceProductInfo(info.getName(), info.getManufacturerPnpId(),
info.getProductId(), info.getModelYear(), manufactureDate,
- info.getRelativeAddress());
+ info.getConnectionToSinkType());
}
private DisplayCompatUtil() {}