Prepare security-manager for master-slave mode
[platform/core/security/security-manager.git] / src / server / service / include / master-service.h
1 /*
2  *  Copyright (c) 2000 - 2014 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Contact: Rafal Krypa <r.krypa@samsung.com>
5  *
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License
17  */
18 /*
19  * @file        master-service.h
20  * @author      Lukasz Kostyra <l.kostyra@samsung.com>
21  * @author      Rafal Krypa <r.krypa@samsung.com>
22  * @brief       Implementation of security-manager master service
23  */
24
25 #ifndef _SECURITY_MANAGER_MASTER_SERVICE_
26 #define _SECURITY_MANAGER_MASTER_SERVICE_
27
28 #include "base-service.h"
29
30 namespace SecurityManager {
31
32 class MasterServiceException
33 {
34 public:
35     DECLARE_EXCEPTION_TYPE(SecurityManager::Exception, Base)
36     DECLARE_EXCEPTION_TYPE(Base, InvalidAction)
37 };
38
39 class MasterService :
40     public SecurityManager::BaseService
41 {
42 public:
43     MasterService();
44     ServiceDescriptionVector GetServiceDescription();
45
46 private:
47
48     /**
49      * Handle request from a client
50      *
51      * @param  conn        Socket connection information
52      * @param  buffer      Raw received data buffer
53      * @param  interfaceID identifier used to distinguish source socket
54      * @return             true on success
55      */
56     bool processOne(const ConnectionID &conn, MessageBuffer &buffer, InterfaceID interfaceID);
57 };
58
59 } // namespace SecurityManager
60
61 #endif // _SECURITY_MANAGER_MASTER_SERVICE_