Extract BaseService from Service class
[platform/core/security/security-manager.git] / src / server / service / include / 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        service.h
20  * @author      Michal Witanowski <m.witanowski@samsung.com>
21  * @author      Rafal Krypa <r.krypa@samsung.com>
22  * @brief       Implementation of security-manager service
23  */
24
25 #ifndef _SECURITY_MANAGER_SERVICE_
26 #define _SECURITY_MANAGER_SERVICE_
27
28 #include "base-service.h"
29
30 namespace SecurityManager {
31
32 class ServiceException
33 {
34 public:
35     DECLARE_EXCEPTION_TYPE(SecurityManager::Exception, Base)
36     DECLARE_EXCEPTION_TYPE(Base, InvalidAction)
37 };
38
39 class Service :
40     public SecurityManager::BaseService
41 {
42 public:
43     Service();
44     ServiceDescriptionVector GetServiceDescription();
45
46 private:
47     /**
48      * Handle request from a client
49      *
50      * @param  conn        Socket connection information
51      * @param  buffer      Raw received data buffer
52      * @param  interfaceID identifier used to distinguish source socket
53      * @return             true on success
54      */
55     bool processOne(const ConnectionID &conn, MessageBuffer &buffer, InterfaceID interfaceID);
56
57     /**
58      * Process application installation
59      *
60      * @param  buffer Raw received data buffer
61      * @param  send   Raw data buffer to be sent
62      * @param  uid    User's identifier for whom application will be installed
63      */
64     void processAppInstall(MessageBuffer &buffer, MessageBuffer &send, uid_t uid);
65
66     /**
67      * Process application uninstallation
68      *
69      * @param  buffer Raw received data buffer
70      * @param  send   Raw data buffer to be sent
71      * @param  uid    User's identifier for whom application will be uninstalled
72      */
73     void processAppUninstall(MessageBuffer &buffer, MessageBuffer &send, uid_t uid);
74
75     /**
76      * Process getting package id from app id
77      *
78      * @param  buffer Raw received data buffer
79      * @param  send   Raw data buffer to be sent
80      */
81     void processGetPkgId(MessageBuffer &buffer, MessageBuffer &send);
82
83     /**
84      * Process getting permitted group ids for app id
85      *
86      * @param  buffer Raw received data buffer
87      * @param  send   Raw data buffer to be sent
88      * @param  uid    User's identifier for whom application will be launched
89      * @param  pid    Process id in which application will be launched
90      */
91     void processGetAppGroups(MessageBuffer &buffer, MessageBuffer &send, uid_t uid, pid_t pid);
92
93     void processUserAdd(MessageBuffer &buffer, MessageBuffer &send, uid_t uid);
94
95     void processUserDelete(MessageBuffer &buffer, MessageBuffer &send, uid_t uid);
96
97 };
98
99 } // namespace SecurityManager
100
101 #endif // _SECURITY_MANAGER_SERVICE_