Add create/destroy in krate-admin-cli
[platform/core/security/krate.git] / lib / client.h
1 /*
2  *  Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
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 __POLICY_CLIENT_H__
18 #define __POLICY_CLIENT_H__
19
20 #include <string>
21 #include <memory>
22 #include <functional>
23
24 #include <klay/rmi/client.h>
25
26 typedef std::function<void(const char*, const char*, void*)> KrateChangeListener;
27 typedef std::function<void(const char*, const char*, void*)> SignalListener;
28
29 class KrateContext final {
30 public:
31         typedef std::unique_ptr<rmi::Client> KrateControlContext;
32
33         KrateContext() noexcept;
34         ~KrateContext() noexcept;
35
36         int connect() noexcept;
37         int connect(const std::string& address) noexcept;
38         void disconnect() noexcept;
39
40         int subscribeSignal(const std::string& name, const SignalListener& listener, void* data);
41         int unsubscribeSignal(int subscriberId);
42
43         template<typename Krate, typename... Args>
44         Krate createKrateInterface(Args&&... args) noexcept
45         {
46                 return Krate(getKrateControlContext(), std::forward<Args>(args)...);
47         }
48
49 private:
50         KrateControlContext& getKrateControlContext()
51         {
52                 return client;
53         }
54
55         KrateControlContext client;
56 };
57
58 KrateContext& GetKrateContext(void* handle);
59 #endif //__POLICY_CLIENT_H__