binder: Add binder skeletal code for Android
[mech_eap.git] / wpa_supplicant / binder / binder_manager.h
1 /*
2  * binder interface for wpa_supplicant daemon
3  * Copyright (c) 2004-2016, Jouni Malinen <j@w1.fi>
4  * Copyright (c) 2004-2016, Roshan Pius <rpius@google.com>
5  *
6  * This software may be distributed under the terms of the BSD license.
7  * See README for more details.
8  */
9
10 #ifndef BINDER_MANAGER_H
11 #define BINDER_MANAGER_H
12
13 #include <map>
14 #include <string>
15
16 #include "supplicant.h"
17 #include "iface.h"
18
19 struct wpa_global;
20 struct wpa_supplicant;
21
22 namespace wpa_supplicant_binder {
23
24 /**
25  * BinderManager is responsible for managing the lifetime of all
26  * binder objects created by wpa_supplicant. This is a singleton
27  * class which is created by the supplicant core and can be used
28  * to get references to the binder objects.
29  */
30 class BinderManager {
31 public:
32         static const char kBinderServiceName[];
33
34         static BinderManager * getInstance();
35         static void destroyInstance();
36         int registerBinderService(struct wpa_global *global);
37
38 private:
39         BinderManager() = default;
40         ~BinderManager() = default;
41
42         /* Singleton instance of this class. */
43         static BinderManager *instance_;
44         /* The main binder service object. */
45         android::sp<Supplicant> supplicant_object_;
46         /* Map of all the interface specific binder objects controlled by
47          * wpa_supplicant. This map is keyed in by the corresponding
48          * wpa_supplicant structure pointer. */
49         std::map<const void *, android::sp<Iface>> iface_object_map_;
50 };
51
52 } /* namespace wpa_supplicant_binder */
53
54 #endif /* BINDER_MANAGER_H */