/* * Copyright (C) 2016 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.net.wifi.aware; import static com.android.ranging.flags.Flags.FLAG_RANGING_RTT_ENABLED; import android.annotation.FlaggedApi; import android.annotation.IntDef; import android.annotation.IntRange; import android.annotation.SystemApi; import android.net.wifi.WifiAnnotations; import android.os.Build; import android.os.Bundle; import android.os.Parcel; import android.os.Parcelable; import androidx.annotation.RequiresApi; import com.android.modules.utils.build.SdkLevel; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; /** * The characteristics of the Wi-Fi Aware implementation. */ public final class Characteristics implements Parcelable { /** @hide */ public static final String KEY_MAX_SERVICE_NAME_LENGTH = "key_max_service_name_length"; /** @hide */ public static final String KEY_MAX_SERVICE_SPECIFIC_INFO_LENGTH = "key_max_service_specific_info_length"; /** @hide */ public static final String KEY_MAX_MATCH_FILTER_LENGTH = "key_max_match_filter_length"; /** @hide */ public static final String KEY_SUPPORTED_DATA_PATH_CIPHER_SUITES = "key_supported_data_path_cipher_suites"; /** @hide */ public static final String KEY_SUPPORTED_PAIRING_CIPHER_SUITES = "key_supported_pairing_cipher_suites"; /** @hide */ public static final String KEY_IS_INSTANT_COMMUNICATION_MODE_SUPPORTED = "key_is_instant_communication_mode_supported"; /** @hide */ public static final String KEY_MAX_NDP_NUMBER = "key_max_ndp_number"; /** @hide */ public static final String KEY_MAX_PUBLISH_NUMBER = "key_max_publish_number"; /** @hide */ public static final String KEY_MAX_SUBSCRIBE_NUMBER = "key_max_subscribe_number"; /** @hide */ public static final String KEY_MAX_NDI_NUMBER = "key_max_ndi_number"; /** @hide */ public static final String KEY_SUPPORT_NAN_PAIRING = "key_support_nan_pairing"; /** @hide */ public static final String KEY_SUPPORT_SUSPENSION = "key_support_suspension"; /** @hide */ @FlaggedApi(FLAG_RANGING_RTT_ENABLED) public static final String KEY_SUPPORT_PERIODIC_RANGING = "key_support_periodic_ranging"; /** @hide */ @FlaggedApi(FLAG_RANGING_RTT_ENABLED) public static final String KEY_MAX_SUPPORTED_RANGING_PKT_BANDWIDTH = "key_max_supported_ranging_pkt_bandwidth"; /** @hide */ @FlaggedApi(FLAG_RANGING_RTT_ENABLED) public static final String KEY_MAX_SUPPORTED_RX_CHAINS = "key_max_supported_rx_chains"; private final Bundle mCharacteristics; /** @hide : should not be created by apps */ public Characteristics(Bundle characteristics) { mCharacteristics = characteristics; } /** * Returns the maximum string length that can be used to specify a Aware service name. Restricts * the parameters of the {@link PublishConfig.Builder#setServiceName(String)} and * {@link SubscribeConfig.Builder#setServiceName(String)}. * * @return A positive integer, maximum string length of Aware service name. */ public int getMaxServiceNameLength() { return mCharacteristics.getInt(KEY_MAX_SERVICE_NAME_LENGTH); } /** * Returns the maximum length of byte array that can be used to specify a Aware service specific * information field: the arbitrary load used in discovery or the message length of Aware * message exchange. Restricts the parameters of the * {@link PublishConfig.Builder#setServiceSpecificInfo(byte[])}, * {@link SubscribeConfig.Builder#setServiceSpecificInfo(byte[])}, and * {@link DiscoverySession#sendMessage(PeerHandle, int, byte[])} * variants. * * @return A positive integer, maximum length of byte array for Aware messaging. */ public int getMaxServiceSpecificInfoLength() { return mCharacteristics.getInt(KEY_MAX_SERVICE_SPECIFIC_INFO_LENGTH); } /** * Returns the maximum length of byte array that can be used to specify a Aware match filter. * Restricts the parameters of the * {@link PublishConfig.Builder#setMatchFilter(java.util.List)} and * {@link SubscribeConfig.Builder#setMatchFilter(java.util.List)}. * * @return A positive integer, maximum length of byte array for Aware discovery match filter. */ public int getMaxMatchFilterLength() { return mCharacteristics.getInt(KEY_MAX_MATCH_FILTER_LENGTH); } /** * Returns the maximum number of Aware data interfaces supported by the device. * * @return A positive integer, maximum number of Aware data interfaces supported by the device. */ @IntRange(from = 1) public int getNumberOfSupportedDataInterfaces() { return mCharacteristics.getInt(KEY_MAX_NDI_NUMBER); } /** * Returns the maximum number of Aware publish sessions supported by the device. * Use {@link AwareResources#getAvailablePublishSessionsCount()} to get the number of available * publish sessions which are not currently used by any app. * * @return A positive integer, maximum number of publish sessions supported by the device. */ @IntRange(from = 1) public int getNumberOfSupportedPublishSessions() { return mCharacteristics.getInt(KEY_MAX_PUBLISH_NUMBER); } /** * Returns the maximum number of Aware subscribe session supported by the device. * Use {@link AwareResources#getAvailableSubscribeSessionsCount()} to get the number of * available subscribe sessions which are not currently used by any app. * * @return A positive integer, maximum number of subscribe sessions supported by the device. */ @IntRange(from = 1) public int getNumberOfSupportedSubscribeSessions() { return mCharacteristics.getInt(KEY_MAX_SUBSCRIBE_NUMBER); } /** * Returns the maximum number of Aware data paths(also known as NDPs - NAN Data Paths) supported * by the device. * Use {@link AwareResources#getAvailableDataPathsCount()} to get the number of available Aware * data paths which are not currently used by any app. * * @return A positive integer, maximum number of Aware data paths supported by the device. */ @IntRange(from = 1) public int getNumberOfSupportedDataPaths() { return mCharacteristics.getInt(KEY_MAX_NDP_NUMBER); } /** * Check if instant communication mode is supported by device. The instant communication mode is * defined as per Wi-Fi Alliance (WFA) Wi-Fi Aware specifications version 3.1 Section 12.3. * @return True if supported, false otherwise. */ @RequiresApi(Build.VERSION_CODES.S) public boolean isInstantCommunicationModeSupported() { if (!SdkLevel.isAtLeastS()) { throw new UnsupportedOperationException(); } return mCharacteristics.getBoolean(KEY_IS_INSTANT_COMMUNICATION_MODE_SUPPORTED); } /** * Check if the Aware Pairing and all associated security features as defined in Wi-Fi Alliance * (WFA) Wi-Fi Aware Specification version 4.0 are supported. * This includes: *