OSDN Git Service

Add support for creating client interfaces
[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   explicit ClientInterfaceImpl(const std::string& interface_name);
41   ~ClientInterfaceImpl();
42
43   // Get a pointer to the binder representing this ClientInterfaceImpl.
44   android::sp<android::net::wifi::IClientInterface> GetBinder() const;
45
46  private:
47   const std::string interface_name_;
48   const android::sp<ClientInterfaceBinder> binder_;
49
50   DISALLOW_COPY_AND_ASSIGN(ClientInterfaceImpl);
51 };
52
53 }  // namespace wificond
54 }  // namespace android
55
56 #endif  // WIFICOND_CLIENT_INTERFACE_IMPL_H_