Fix to apply whitespace coding rules
[platform/core/security/krate.git] / server / server.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 __KRATE_SERVER_H__
18 #define __KRATE_SERVER_H__
19
20 #include <string>
21 #include <memory>
22
23 #include <klay/filesystem.h>
24 #include <klay/file-descriptor.h>
25 #include <klay/rmi/service.h>
26
27 class Server final {
28 public:
29         Server();
30         ~Server();
31
32         void run();
33         void terminate();
34
35         template<typename Type, typename... Args>
36         void setMethodHandler(const std::string& privilege, const std::string& method,
37                                                   const typename rmi::MethodHandler<Type, Args...>::type& handler)
38         {
39                 service->setMethodHandler<Type, Args...>(privilege, method, handler);
40         }
41
42         template <typename... Args>
43         void notify(const std::string& name, Args&&... args)
44         {
45                 service->notify<Args...>(name, std::forward<Args>(args)...);
46         }
47
48         uid_t getPeerUid() const
49         {
50                 return service->getPeerUid();
51         }
52
53         gid_t getPeerGid() const
54         {
55                 return service->getPeerGid();
56         }
57
58         pid_t getPeerPid() const
59         {
60                 return service->getPeerPid();
61         }
62
63         const std::string getPeerPackageId() const;
64
65         void createNotification(const std::string& name)
66         {
67                 service->createNotification(name);
68         }
69
70         runtime::FileDescriptor registerNotificationSubscriber(const std::string& name);
71         int unregisterNotificationSubscriber(const std::string& name, int id);
72
73         bool checkPeerPrivilege(const rmi::Credentials& cred, const std::string& privilege);
74
75 private:
76         std::string securityLabel;
77         std::unique_ptr<rmi::Service> service;
78 };
79
80 #endif //__KRATE_SERVER_H__