OSDN Git Service

Temporarily disable wificond integration test am: dd0ecbe499
[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 class NetlinkUtils;
34
35 // Holds the guts of how we control network interfaces capable of exposing an AP
36 // via hostapd.  Because remote processes may hold on to the corresponding
37 // binder object past the lifetime of the local object, we are forced to
38 // keep this object separate from the binder representation of itself.
39 class ApInterfaceImpl {
40  public:
41   ApInterfaceImpl(const std::string& interface_name,
42                   uint32_t interface_index,
43                   NetlinkUtils* netlink_utils,
44                   wifi_system::InterfaceTool* if_tool,
45                   wifi_system::HostapdManager* hostapd_manager);
46   ~ApInterfaceImpl();
47
48   // Get a pointer to the binder representing this ApInterfaceImpl.
49   android::sp<android::net::wifi::IApInterface> GetBinder() const;
50
51   bool StartHostapd();
52   bool StopHostapd();
53   bool WriteHostapdConfig(
54       const std::vector<uint8_t>& ssid,
55       bool is_hidden,
56       int32_t channel,
57       wifi_system::HostapdManager::EncryptionType encryption_type,
58       const std::vector<uint8_t>& passphrase);
59   std::string GetInterfaceName() { return interface_name_; }
60
61  private:
62   const std::string interface_name_;
63   const uint32_t interface_index_;
64   NetlinkUtils* const netlink_utils_;
65   wifi_system::InterfaceTool* const if_tool_;
66   wifi_system::HostapdManager* const hostapd_manager_;
67   const android::sp<ApInterfaceBinder> binder_;
68
69   DISALLOW_COPY_AND_ASSIGN(ApInterfaceImpl);
70 };
71
72 }  // namespace wificond
73 }  // namespace android
74
75 #endif  // WIFICOND_AP_INTERFACE_IMPL_H_