Add early cynara service implementation
[platform/core/security/cynara.git] / src / service / sockets / Descriptor.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        Descriptor.h
18  * @author      Lukasz Wojciechowski <l.wojciechow@partner.samsung.com>
19  * @version     1.0
20  * @brief       This file defines descriptor class
21  */
22
23 #ifndef SRC_SERVICE_SOCKETS_DESCRIPTOR_H_
24 #define SRC_SERVICE_SOCKETS_DESCRIPTOR_H_
25
26 #include <common.h>
27
28 #include <protocol/Protocol.h>
29 #include <request/Request.h>
30
31 namespace Cynara {
32
33 class Descriptor {
34 private:
35     int m_fd;
36     bool m_listen;
37
38     BinaryQueue m_readQueue;
39     BinaryQueue m_writeQueue;
40     RawBuffer m_writeBuffer;
41
42     Protocol *m_protocol;
43
44 public:
45     bool isListen(void) const {
46         return m_listen;
47     }
48
49     bool isDataToWrite(void) const;
50
51     Protocol *protocol(void) {
52         return m_protocol;
53     }
54
55     void setProtocol(Protocol *protocol) {
56         m_protocol = protocol;
57     }
58
59     void setListen(bool listen) {
60         m_listen = listen;
61     }
62
63     void pushReadBuffer(const RawBuffer &readbuffer);
64     Request *extractRequest(void);
65
66     RawBuffer &prepareWriteBuffer(void);
67
68     void clear(void);
69 };
70
71 } // namespace Cynara
72
73 #endif /* SRC_SERVICE_SOCKETS_DESCRIPTOR_H_ */