OCSP implementation.
[platform/core/security/key-manager.git] / src / manager / service / ocsp-service.h
1 /*
2  *  Copyright (c) 2014 Samsung Electronics Co.
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        ocsp-service.h
18  * @author      Bartlomiej Grzelewski (b.grzelewski@samsung.com)
19  * @version     1.0
20  * @brief       OCSP 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 OCSPLogic;
32
33 class OCSPService
34   : public CKM::GenericSocketService
35   , public CKM::ServiceThread<OCSPService>
36 {
37 public:
38     OCSPService();
39     OCSPService(const OCSPService &) = delete;
40     OCSPService(OCSPService &&) = delete;
41     OCSPService& operator=(const OCSPService &) = delete;
42     OCSPService& operator=(OCSPService &&) = delete;
43     virtual ~OCSPService();
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     ConnectionInfoMap m_connectionInfoMap;
62     OCSPLogic *m_logic;
63 };
64
65 } // namespace CKM
66