Merging tizen into ckm. Stage 1.
[platform/core/test/security-tests.git] / src / cynara-tests / common / cynara_test_client_async_status_monitor.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 #ifndef CYNARA_TEST_CLIENT_ASYNC_STATUS_MONITOR_H
18 #define CYNARA_TEST_CLIENT_ASYNC_STATUS_MONITOR_H
19
20 #include <cynara-client-async.h>
21
22 #include <functional>
23
24 namespace CynaraTestClientAsync {
25
26 enum SocketStatus
27 {
28     READ,
29     READWRITE,
30     DISCONNECTED,
31     UNKNOWN,
32 };
33
34 typedef std::function<void(int oldFd, int newFd, cynara_async_status status)> StatusFunction;
35
36 class StatusMonitor
37 {
38 public:
39
40     StatusMonitor(const StatusFunction &userFunction);
41
42     static void updateStatus(int oldFd, int newFd, cynara_async_status status, void *data);
43
44     int getFd(void) const;
45     enum SocketStatus getStatus(void) const;
46
47 private:
48     int m_fd;
49     cynara_async_status m_status;
50     StatusFunction m_userFunction;
51 };
52
53 }// namespace CynaraTestClientAsync
54
55 #endif // CYNARA_TEST_CLIENT_ASYNC_STATUS_MONITOR_H