/* * 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 android.app.PendingIntent; import android.net.wifi.IBooleanListener; import android.net.wifi.IIntegerListener; import android.net.wifi.IListListener; import android.net.wifi.aware.ConfigRequest; import android.net.wifi.aware.IWifiAwareDiscoverySessionCallback; import android.net.wifi.aware.IWifiAwareEventCallback; import android.net.wifi.aware.IWifiAwareMacAddressProvider; import android.net.wifi.aware.PublishConfig; import android.net.wifi.aware.SubscribeConfig; import android.net.wifi.aware.Characteristics; import android.net.wifi.aware.AwareResources; import android.net.wifi.aware.AwareParams; import android.os.Bundle; /** * Interface that WifiAwareService implements * * {@hide} */ interface IWifiAwareManager { // Aware API boolean isUsageEnabled(); Characteristics getCharacteristics(); AwareResources getAvailableAwareResources(); boolean isDeviceAttached(); void enableInstantCommunicationMode(in String callingPackage, boolean enable); boolean isInstantCommunicationModeEnabled(); boolean isSetChannelOnDataPathSupported(); void setAwareParams(in AwareParams parameters); void resetPairedDevices(in String callingPackage); void removePairedDevice(in String callingPackage, in String alias); void getPairedDevices(in String callingPackage, in IListListener value); void setOpportunisticModeEnabled(in String callingPackage, boolean enable); void isOpportunisticModeEnabled(in String callingPackage, in IBooleanListener value); // client API void connect(in IBinder binder, in String callingPackage, in String callingFeatureId, in IWifiAwareEventCallback callback, in ConfigRequest configRequest, boolean notifyOnIdentityChanged, in Bundle extras, boolean forAwareOffload); void disconnect(int clientId, in IBinder binder); void setMasterPreference(int clientId, in IBinder binder, int mp); void getMasterPreference(int clientId, in IBinder binder, in IIntegerListener listener); void publish(in String callingPackage, in String callingFeatureId, int clientId, in PublishConfig publishConfig, in IWifiAwareDiscoverySessionCallback callback, in Bundle extras); void subscribe(in String callingPackage, in String callingFeatureId, int clientId, in SubscribeConfig subscribeConfig, in IWifiAwareDiscoverySessionCallback callback, in Bundle extras); // session API void updatePublish(int clientId, int discoverySessionId, in PublishConfig publishConfig); void updateSubscribe(int clientId, int discoverySessionId, in SubscribeConfig subscribeConfig); void sendMessage(int clientId, int discoverySessionId, int peerId, in byte[] message, int messageId, int retryCount); void terminateSession(int clientId, int discoverySessionId); void initiateNanPairingSetupRequest(int clientId, int sessionId, int peerId, String password, String pairingDeviceAlias, int cipherSuite); void responseNanPairingSetupRequest(int clientId, int sessionId, int peerId, int requestId, String password, String pairingDeviceAlias, boolean accept, int cipherSuite); void initiateBootStrappingSetupRequest(int clientId, int sessionId, int peerId,int method); void suspend(int clientId, int sessionId); void resume(int clientId, int sessionId); // internal APIs: intended to be used between System Services (restricted permissions) void requestMacAddresses(int uid, in int[] peerIds, in IWifiAwareMacAddressProvider callback); }