blob: eedd22aeefa6c6a3237261b294dae4eb77219ad6 [file] [log] [blame]
Roshan Pius59268282016-10-06 20:23:47 -07001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef WIFI_RTT_CONTROLLER_H_
18#define WIFI_RTT_CONTROLLER_H_
19
20#include <android-base/macros.h>
21#include <android/hardware/wifi/1.0/IWifiIface.h>
22#include <android/hardware/wifi/1.0/IWifiRttController.h>
Roshan Pius7913f5e2016-10-27 17:09:30 -070023#include <android/hardware/wifi/1.0/IWifiRttControllerEventCallback.h>
Roshan Pius59268282016-10-06 20:23:47 -070024
25#include "wifi_legacy_hal.h"
26
27namespace android {
28namespace hardware {
29namespace wifi {
Jong Wook Kimda830c92018-07-23 15:29:38 -070030namespace V1_3 {
Roshan Pius59268282016-10-06 20:23:47 -070031namespace implementation {
32
33/**
34 * HIDL interface object used to control all RTT operations.
35 */
Roshan Piusdbd83ef2017-06-20 12:05:40 -070036class WifiRttController : public V1_0::IWifiRttController {
Roshan Piusabcf78f2017-10-06 16:30:38 -070037 public:
38 WifiRttController(
39 const std::string& iface_name, const sp<IWifiIface>& bound_iface,
40 const std::weak_ptr<legacy_hal::WifiLegacyHal> legacy_hal);
41 // Refer to |WifiChip::invalidate()|.
42 void invalidate();
43 bool isValid();
44 std::vector<sp<IWifiRttControllerEventCallback>> getEventCallbacks();
Roshan Pius82368502019-05-16 12:53:02 -070045 std::string getIfaceName();
Roshan Pius59268282016-10-06 20:23:47 -070046
Roshan Piusabcf78f2017-10-06 16:30:38 -070047 // HIDL methods exposed.
48 Return<void> getBoundIface(getBoundIface_cb hidl_status_cb) override;
49 Return<void> registerEventCallback(
50 const sp<IWifiRttControllerEventCallback>& callback,
51 registerEventCallback_cb hidl_status_cb) override;
52 Return<void> rangeRequest(uint32_t cmd_id,
53 const hidl_vec<RttConfig>& rtt_configs,
54 rangeRequest_cb hidl_status_cb) override;
55 Return<void> rangeCancel(uint32_t cmd_id,
56 const hidl_vec<hidl_array<uint8_t, 6>>& addrs,
57 rangeCancel_cb hidl_status_cb) override;
58 Return<void> getCapabilities(getCapabilities_cb hidl_status_cb) override;
59 Return<void> setLci(uint32_t cmd_id, const RttLciInformation& lci,
60 setLci_cb hidl_status_cb) override;
61 Return<void> setLcr(uint32_t cmd_id, const RttLcrInformation& lcr,
62 setLcr_cb hidl_status_cb) override;
63 Return<void> getResponderInfo(getResponderInfo_cb hidl_status_cb) override;
64 Return<void> enableResponder(uint32_t cmd_id,
65 const WifiChannelInfo& channel_hint,
66 uint32_t max_duration_seconds,
67 const RttResponder& info,
68 enableResponder_cb hidl_status_cb) override;
69 Return<void> disableResponder(uint32_t cmd_id,
70 disableResponder_cb hidl_status_cb) override;
Roshan Pius59268282016-10-06 20:23:47 -070071
Roshan Piusabcf78f2017-10-06 16:30:38 -070072 private:
73 // Corresponding worker functions for the HIDL methods.
74 std::pair<WifiStatus, sp<IWifiIface>> getBoundIfaceInternal();
75 WifiStatus registerEventCallbackInternal(
76 const sp<IWifiRttControllerEventCallback>& callback);
77 WifiStatus rangeRequestInternal(uint32_t cmd_id,
78 const std::vector<RttConfig>& rtt_configs);
79 WifiStatus rangeCancelInternal(
80 uint32_t cmd_id, const std::vector<hidl_array<uint8_t, 6>>& addrs);
81 std::pair<WifiStatus, RttCapabilities> getCapabilitiesInternal();
82 WifiStatus setLciInternal(uint32_t cmd_id, const RttLciInformation& lci);
83 WifiStatus setLcrInternal(uint32_t cmd_id, const RttLcrInformation& lcr);
84 std::pair<WifiStatus, RttResponder> getResponderInfoInternal();
85 WifiStatus enableResponderInternal(uint32_t cmd_id,
86 const WifiChannelInfo& channel_hint,
87 uint32_t max_duration_seconds,
88 const RttResponder& info);
89 WifiStatus disableResponderInternal(uint32_t cmd_id);
Roshan Pius907d4a22016-10-27 12:48:12 -070090
Roshan Piusabcf78f2017-10-06 16:30:38 -070091 std::string ifname_;
92 sp<IWifiIface> bound_iface_;
93 std::weak_ptr<legacy_hal::WifiLegacyHal> legacy_hal_;
94 std::vector<sp<IWifiRttControllerEventCallback>> event_callbacks_;
95 bool is_valid_;
Roshan Pius59268282016-10-06 20:23:47 -070096
Roshan Piusabcf78f2017-10-06 16:30:38 -070097 DISALLOW_COPY_AND_ASSIGN(WifiRttController);
Roshan Pius59268282016-10-06 20:23:47 -070098};
99
100} // namespace implementation
Jong Wook Kimda830c92018-07-23 15:29:38 -0700101} // namespace V1_3
Roshan Pius59268282016-10-06 20:23:47 -0700102} // namespace wifi
103} // namespace hardware
104} // namespace android
105
106#endif // WIFI_RTT_CONTROLLER_H_