Add SDcard password confirm popup
[platform/core/security/ode.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 __ODE_SERVER_H__
18 #define __ODE_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         uid_t getPeerUid() const
43         {
44                 return service->getPeerUid();
45         }
46
47         gid_t getPeerGid() const
48         {
49                 return service->getPeerGid();
50         }
51
52         pid_t getPeerPid() const
53         {
54                 return service->getPeerPid();
55         }
56
57         bool checkPeerPrivilege(const rmi::Credentials& cred, const std::string& privilege);
58
59 private:
60         std::string securityLabel;
61         std::unique_ptr<rmi::Service> service;
62 };
63
64 #endif //__ODE_SERVER_H__