Change RawBuffer into SafeBuffer.
[platform/core/security/key-manager.git] / src / manager / service / ckm-service.h
1 /*
2  *  Copyright (c) 2000 - 2014 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  * @file        ckm-service.h
18  * @author      Bartlomiej Grzelewski (b.grzelewski@samsung.com)
19  * @version     1.0
20  * @brief       CKM service implementation.
21  */
22 #pragma once
23
24 #include <service-thread.h>
25 #include <generic-socket-manager.h>
26 #include <connection-info.h>
27 #include <message-buffer.h>
28
29 namespace CKM {
30
31 class CKMLogic;
32
33 class CKMService
34   : public CKM::GenericSocketService
35   , public CKM::ServiceThread<CKMService>
36 {
37 public:
38     CKMService();
39     CKMService(const CKMService &) = delete;
40     CKMService(CKMService &&) = delete;
41     CKMService& operator=(const CKMService &) = delete;
42     CKMService& operator=(CKMService &&) = delete;
43     virtual ~CKMService();
44
45     ServiceDescriptionVector GetServiceDescription();
46
47     DECLARE_THREAD_EVENT(AcceptEvent, accept)
48     DECLARE_THREAD_EVENT(WriteEvent, write)
49     DECLARE_THREAD_EVENT(ReadEvent, process)
50     DECLARE_THREAD_EVENT(CloseEvent, close)
51
52     void accept(const AcceptEvent &event);
53     void write(const WriteEvent &event);
54     void process(const ReadEvent &event);
55     void close(const CloseEvent &event);
56 private:
57     bool processOne(
58         const ConnectionID &conn,
59         ConnectionInfo &info);
60
61     SafeBuffer processControl(
62         MessageBuffer &buffer);
63
64     SafeBuffer processStorage(
65         Credentials &cred,
66         MessageBuffer &buffer);
67
68     ConnectionInfoMap m_connectionInfoMap;
69     CKMLogic *m_logic;
70 };
71
72 } // namespace CKM
73