Initialize Tizen 2.3
[framework/web/wrt-commons.git] / modules / core / src / waitable_event.cpp
1 /*
2  * Copyright (c) 2011 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        waitable_event.cpp
18  * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of waitable event
21  */
22 #include <stddef.h>
23 #include <dpl/waitable_event.h>
24 #include <dpl/log/wrt_log.h>
25 #include <sys/select.h>
26 #include <unistd.h>
27 #include <fcntl.h>
28 #include <errno.h>
29
30 namespace DPL {
31 WaitableEvent::WaitableEvent()
32 {
33     if (pipe(m_pipe) == -1) {
34         Throw(Exception::CreateFailed);
35     }
36
37     if (fcntl(m_pipe[0], F_SETFL, O_NONBLOCK |
38               fcntl(m_pipe[0], F_GETFL)) == -1) {
39         Throw(Exception::CreateFailed);
40     }
41 }
42
43 WaitableEvent::~WaitableEvent()
44 {
45     if (TEMP_FAILURE_RETRY(close(m_pipe[0])) == -1) {
46         WrtLogW("Fail to close fd");
47     }
48
49     if (TEMP_FAILURE_RETRY(close(m_pipe[1])) == -1) {
50         WrtLogW("Fail to close fd");
51     }
52 }
53
54 WaitableHandle WaitableEvent::GetHandle() const
55 {
56     return m_pipe[0];
57 }
58
59 void WaitableEvent::Signal() const
60 {
61     char data = 0;
62
63     if (TEMP_FAILURE_RETRY(write(m_pipe[1], &data, 1)) != 1) {
64         WrtLogW("Fail to signal fd");
65     }
66 }
67
68 void WaitableEvent::Reset() const
69 {
70     char data;
71
72     if (TEMP_FAILURE_RETRY(read(m_pipe[0], &data, 1)) != 1) {
73         WrtLogW("Fail to reset fd");
74     }
75 }
76 } // namespace DPL