Add early cynara service implementation
[platform/core/security/cynara.git] / src / service / sockets / SocketManager.h
1 /*
2  * Copyright (c) 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        SocketManager.h
18  * @author      Lukasz Wojciechowski <l.wojciechow@partner.samsung.com>
19  * @version     1.0
20  * @brief       This file defines socket layer manager for cynara
21  */
22
23 #ifndef SRC_SERVICE_SOCKETS_SOCKETMANAGER_H_
24 #define SRC_SERVICE_SOCKETS_SOCKETMANAGER_H_
25
26 #include <vector>
27 #include <stdio.h>
28
29 #include <common.h>
30
31 #include "Descriptor.h"
32
33 namespace Cynara {
34
35 const size_t DEFAULT_BUFFER_SIZE = BUFSIZ;
36
37 class SocketManager {
38 public:
39     SocketManager();
40     ~SocketManager();
41
42     void run(void);
43     void mainLoopStop(void);
44
45 private:
46     typedef std::vector<Descriptor> FDVector;
47     FDVector m_fds;
48
49     bool m_working;
50
51     fd_set m_readSet;
52     fd_set m_writeSet;
53     int m_maxDesc;
54
55     void init(void);
56     void mainLoop(void);
57
58     void readyForRead(int fd);
59     void readyForWrite(int fd);
60     void readyForAccept(int fd);
61     void closeSocket(int fd);
62     bool handleRead(int fd, const RawBuffer &readbuffer);
63
64     void createDomainSocket(Protocol *protocol, const std::string &path, mode_t mask);
65     int createDomainSocketHelp(const std::string &path, mode_t mask);
66     int getSocketFromSystemD(const std::string &path);
67
68     Descriptor &createDescriptor(int fd);
69
70     void addReadSocket(int fd);
71     void removeReadSocket(int fd);
72     void addWriteSocket(int fd);
73     void removeWriteSocket(int fd);
74 };
75
76 } // namespace Cynara
77
78 #endif /* SRC_SERVICE_SOCKETS_SOCKETMANAGER_H_ */