Initialize Tizen 2.3
[framework/web/wrt-commons.git] / modules_mobile / 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 <sys/select.h>
25 #include <unistd.h>
26 #include <fcntl.h>
27 #include <errno.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     {
40         Throw(Exception::CreateFailed);
41     }
42 }
43
44 WaitableEvent::~WaitableEvent()
45 {
46     if (TEMP_FAILURE_RETRY(close(m_pipe[0])) == -1) {
47         Throw(Exception::DestroyFailed);
48     }
49
50     if (TEMP_FAILURE_RETRY(close(m_pipe[1])) == -1) {
51         Throw(Exception::DestroyFailed);
52     }
53 }
54
55 WaitableHandle WaitableEvent::GetHandle() const
56 {
57     return m_pipe[0];
58 }
59
60 void WaitableEvent::Signal() const
61 {
62     char data = 0;
63
64     if (TEMP_FAILURE_RETRY(write(m_pipe[1], &data, 1)) != 1) {
65         Throw(Exception::SignalFailed);
66     }
67 }
68
69 void WaitableEvent::Reset() const
70 {
71     char data;
72
73     if (TEMP_FAILURE_RETRY(read(m_pipe[0], &data, 1)) != 1) {
74         Throw(Exception::ResetFailed);
75     }
76 }
77 } // namespace DPL