Roshan Pius | 3e2d671 | 2016-10-06 13:16:23 -0700 | [diff] [blame] | 1 | /* |
| 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_AP_IFACE_H_ |
| 18 | #define WIFI_AP_IFACE_H_ |
| 19 | |
| 20 | #include <android-base/macros.h> |
| 21 | #include <android/hardware/wifi/1.0/IWifiApIface.h> |
| 22 | |
| 23 | #include "wifi_legacy_hal.h" |
| 24 | |
| 25 | namespace android { |
| 26 | namespace hardware { |
| 27 | namespace wifi { |
Etan Cohen | 6ce5090 | 2017-09-14 07:30:57 -0700 | [diff] [blame] | 28 | namespace V1_2 { |
Roshan Pius | 3e2d671 | 2016-10-06 13:16:23 -0700 | [diff] [blame] | 29 | namespace implementation { |
Roshan Pius | dbd83ef | 2017-06-20 12:05:40 -0700 | [diff] [blame] | 30 | using namespace android::hardware::wifi::V1_0; |
Roshan Pius | 3e2d671 | 2016-10-06 13:16:23 -0700 | [diff] [blame] | 31 | |
| 32 | /** |
| 33 | * HIDL interface object used to control a AP Iface instance. |
| 34 | */ |
Roshan Pius | dbd83ef | 2017-06-20 12:05:40 -0700 | [diff] [blame] | 35 | class WifiApIface : public V1_0::IWifiApIface { |
Roshan Pius | abcf78f | 2017-10-06 16:30:38 -0700 | [diff] [blame^] | 36 | public: |
| 37 | WifiApIface(const std::string& ifname, |
| 38 | const std::weak_ptr<legacy_hal::WifiLegacyHal> legacy_hal); |
| 39 | // Refer to |WifiChip::invalidate()|. |
| 40 | void invalidate(); |
| 41 | bool isValid(); |
Roshan Pius | 3e2d671 | 2016-10-06 13:16:23 -0700 | [diff] [blame] | 42 | |
Roshan Pius | abcf78f | 2017-10-06 16:30:38 -0700 | [diff] [blame^] | 43 | // HIDL methods exposed. |
| 44 | Return<void> getName(getName_cb hidl_status_cb) override; |
| 45 | Return<void> getType(getType_cb hidl_status_cb) override; |
| 46 | Return<void> setCountryCode(const hidl_array<int8_t, 2>& code, |
| 47 | setCountryCode_cb hidl_status_cb) override; |
| 48 | Return<void> getValidFrequenciesForBand( |
| 49 | WifiBand band, getValidFrequenciesForBand_cb hidl_status_cb) override; |
Roshan Pius | 3e2d671 | 2016-10-06 13:16:23 -0700 | [diff] [blame] | 50 | |
Roshan Pius | abcf78f | 2017-10-06 16:30:38 -0700 | [diff] [blame^] | 51 | private: |
| 52 | // Corresponding worker functions for the HIDL methods. |
| 53 | std::pair<WifiStatus, std::string> getNameInternal(); |
| 54 | std::pair<WifiStatus, IfaceType> getTypeInternal(); |
| 55 | WifiStatus setCountryCodeInternal(const std::array<int8_t, 2>& code); |
| 56 | std::pair<WifiStatus, std::vector<WifiChannelInMhz>> |
| 57 | getValidFrequenciesForBandInternal(WifiBand band); |
Roshan Pius | 907d4a2 | 2016-10-27 12:48:12 -0700 | [diff] [blame] | 58 | |
Roshan Pius | abcf78f | 2017-10-06 16:30:38 -0700 | [diff] [blame^] | 59 | std::string ifname_; |
| 60 | std::weak_ptr<legacy_hal::WifiLegacyHal> legacy_hal_; |
| 61 | bool is_valid_; |
Roshan Pius | 3e2d671 | 2016-10-06 13:16:23 -0700 | [diff] [blame] | 62 | |
Roshan Pius | abcf78f | 2017-10-06 16:30:38 -0700 | [diff] [blame^] | 63 | DISALLOW_COPY_AND_ASSIGN(WifiApIface); |
Roshan Pius | 3e2d671 | 2016-10-06 13:16:23 -0700 | [diff] [blame] | 64 | }; |
| 65 | |
| 66 | } // namespace implementation |
Etan Cohen | 6ce5090 | 2017-09-14 07:30:57 -0700 | [diff] [blame] | 67 | } // namespace V1_2 |
Roshan Pius | 3e2d671 | 2016-10-06 13:16:23 -0700 | [diff] [blame] | 68 | } // namespace wifi |
| 69 | } // namespace hardware |
| 70 | } // namespace android |
| 71 | |
| 72 | #endif // WIFI_AP_IFACE_H_ |