script-astra/Android/Sdk/sources/android-35/android/nearby/DataElement.java
localadmin 4380f00a78 init
2025-01-20 18:15:20 +03:00

181 lines
5.1 KiB
Java

/*
* Copyright (C) 2022 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.nearby;
import android.annotation.IntDef;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.annotation.SystemApi;
import android.os.Parcel;
import android.os.Parcelable;
import com.android.internal.util.Preconditions;
import java.util.Arrays;
import java.util.Objects;
/**
* Represents a data element in Nearby Presence.
*
* @hide
*/
@SystemApi
public final class DataElement implements Parcelable {
private final int mKey;
private final byte[] mValue;
/**
* Note this interface is used for internal implementation only.
* We only keep those data element types used for encoding and decoding from the specs.
* Please read the nearby specs for learning more about each data type and use it as the only
* source.
*
* @hide
*/
@IntDef({
DataType.SALT,
DataType.PRIVATE_IDENTITY,
DataType.TRUSTED_IDENTITY,
DataType.PUBLIC_IDENTITY,
DataType.PROVISIONED_IDENTITY,
DataType.TX_POWER,
DataType.ACTION,
DataType.ACCOUNT_KEY_DATA,
DataType.CONNECTION_STATUS,
DataType.BATTERY,
DataType.ENCRYPTION_INFO,
DataType.BLE_SERVICE_DATA,
DataType.BLE_ADDRESS,
DataType.SCAN_MODE,
DataType.TEST_DE_BEGIN,
DataType.TEST_DE_END
})
public @interface DataType {
int SALT = 0;
int PRIVATE_IDENTITY = 1;
int TRUSTED_IDENTITY = 2;
int PUBLIC_IDENTITY = 3;
int PROVISIONED_IDENTITY = 4;
int TX_POWER = 5;
int ACTION = 6;
int ACCOUNT_KEY_DATA = 9;
int CONNECTION_STATUS = 10;
int BATTERY = 11;
int ENCRYPTION_INFO = 16;
// Not defined in the spec. Reserved for internal use only.
int BLE_SERVICE_DATA = 100;
int BLE_ADDRESS = 101;
// This is to indicate if the scan is offload only
int SCAN_MODE = 102;
int DEVICE_TYPE = 22;
// Reserves test DE ranges from {@link DataElement.DataType#TEST_DE_BEGIN}
// to {@link DataElement.DataType#TEST_DE_END}, inclusive.
// Reserves 128 Test DEs.
int TEST_DE_BEGIN = Integer.MAX_VALUE - 127; // 2147483520
int TEST_DE_END = Integer.MAX_VALUE; // 2147483647
}
/**
* @return {@code true} if this is identity type.
* @hide
*/
public boolean isIdentityDataType() {
return mKey == DataType.PRIVATE_IDENTITY
|| mKey == DataType.TRUSTED_IDENTITY
|| mKey == DataType.PUBLIC_IDENTITY
|| mKey == DataType.PROVISIONED_IDENTITY;
}
/**
* @return {@code true} if this is test data element type.
* @hide
*/
public static boolean isTestDeType(int type) {
return type >= DataType.TEST_DE_BEGIN && type <= DataType.TEST_DE_END;
}
/**
* Constructs a {@link DataElement}.
*/
public DataElement(int key, @NonNull byte[] value) {
Preconditions.checkArgument(value != null, "value cannot be null");
mKey = key;
mValue = value;
}
@NonNull
public static final Creator<DataElement> CREATOR = new Creator<DataElement>() {
@Override
public DataElement createFromParcel(Parcel in) {
int key = in.readInt();
byte[] value = new byte[in.readInt()];
in.readByteArray(value);
return new DataElement(key, value);
}
@Override
public DataElement[] newArray(int size) {
return new DataElement[size];
}
};
@Override
public boolean equals(@Nullable Object obj) {
if (obj instanceof DataElement) {
return mKey == ((DataElement) obj).mKey
&& Arrays.equals(mValue, ((DataElement) obj).mValue);
}
return false;
}
@Override
public int hashCode() {
return Objects.hash(mKey, Arrays.hashCode(mValue));
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(@NonNull Parcel dest, int flags) {
dest.writeInt(mKey);
dest.writeInt(mValue.length);
dest.writeByteArray(mValue);
}
/**
* Returns the key of the data element, as defined in the nearby presence specification.
*/
public int getKey() {
return mKey;
}
/**
* Returns the value of the data element.
*/
@NonNull
public byte[] getValue() {
return mValue;
}
}