OSDN Git Service

Merge "Add AIDL method to retrieve network interface name"
[android-x86/system-connectivity-wificond.git] / ap_interface_impl.h
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 WIFICOND_AP_INTERFACE_IMPL_H_
18 #define WIFICOND_AP_INTERFACE_IMPL_H_
19
20 #include <string>
21 #include <vector>
22
23 #include <android-base/macros.h>
24 #include <wifi_system/hostapd_manager.h>
25 #include <wifi_system/interface_tool.h>
26
27 #include "android/net/wifi/IApInterface.h"
28
29 namespace android {
30 namespace wificond {
31
32 class ApInterfaceBinder;
33
34 // Holds the guts of how we control network interfaces capable of exposing an AP
35 // via hostapd.  Because remote processes may hold on to the corresponding
36 // binder object past the lifetime of the local object, we are forced to
37 // keep this object separate from the binder representation of itself.
38 class ApInterfaceImpl {
39  public:
40   ApInterfaceImpl(const std::string& interface_name,
41                   uint32_t interface_index,
42                   wifi_system::InterfaceTool* if_tool,
43                   wifi_system::HostapdManager* hostapd_manager);
44   ~ApInterfaceImpl();
45
46   // Get a pointer to the binder representing this ApInterfaceImpl.
47   android::sp<android::net::wifi::IApInterface> GetBinder() const;
48
49   bool StartHostapd();
50   bool StopHostapd();
51   bool WriteHostapdConfig(
52       const std::vector<uint8_t>& ssid,
53       bool is_hidden,
54       int32_t channel,
55       wifi_system::HostapdManager::EncryptionType encryption_type,
56       const std::vector<uint8_t>& passphrase);
57   std::string GetInterfaceName() { return interface_name_; }
58
59  private:
60   const std::string interface_name_;
61   const uint32_t interface_index_;
62   wifi_system::InterfaceTool* const if_tool_;
63   wifi_system::HostapdManager* const hostapd_manager_;
64   const android::sp<ApInterfaceBinder> binder_;
65
66   DISALLOW_COPY_AND_ASSIGN(ApInterfaceImpl);
67 };
68
69 }  // namespace wificond
70 }  // namespace android
71
72 #endif  // WIFICOND_AP_INTERFACE_IMPL_H_