OSDN Git Service

Get interface index from kernel for wificond
[android-x86/system-connectivity-wificond.git] / client_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_CLIENT_INTERFACE_IMPL_H_
18 #define WIFICOND_CLIENT_INTERFACE_IMPL_H_
19
20 #include <string>
21
22 #include <android-base/macros.h>
23 #include <utils/StrongPointer.h>
24
25 #include "android/net/wifi/IClientInterface.h"
26
27 namespace android {
28 namespace wificond {
29
30 class ClientInterfaceBinder;
31
32 // Holds the guts of how we control network interfaces capable of connecting to
33 // access points via wpa_supplicant.
34 //
35 // 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 ClientInterfaceImpl {
39  public:
40   ClientInterfaceImpl(const std::string& interface_name,
41                       uint32_t interface_index);
42   ~ClientInterfaceImpl();
43
44   // Get a pointer to the binder representing this ClientInterfaceImpl.
45   android::sp<android::net::wifi::IClientInterface> GetBinder() const;
46
47  private:
48   const std::string interface_name_;
49   const uint32_t interface_index_;
50   const android::sp<ClientInterfaceBinder> binder_;
51
52   DISALLOW_COPY_AND_ASSIGN(ClientInterfaceImpl);
53 };
54
55 }  // namespace wificond
56 }  // namespace android
57
58 #endif  // WIFICOND_CLIENT_INTERFACE_IMPL_H_