blob: 7eb44156269781b5225e929ef9d0a87d8552eaa7 [file] [log] [blame]
Christopher Wileyc139fbf2016-07-27 13:48:22 -07001/*
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
27namespace android {
28namespace wificond {
29
30class 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.
38class ClientInterfaceImpl {
39 public:
Ningyuan Wang9bc59a02016-08-11 09:59:22 -070040 ClientInterfaceImpl(const std::string& interface_name,
41 uint32_t interface_index);
Christopher Wileyc139fbf2016-07-27 13:48:22 -070042 ~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_;
Ningyuan Wang9bc59a02016-08-11 09:59:22 -070049 const uint32_t interface_index_;
Christopher Wileyc139fbf2016-07-27 13:48:22 -070050 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_