Initialize Tizen 2.3
[framework/web/wrt-commons.git] / modules_wearable / core / src / read_write_mutex.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        read_write_mutex.cpp
18  * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of read write mutex
21  */
22 #include <stddef.h>
23 #include <dpl/read_write_mutex.h>
24 #include <dpl/assert.h>
25
26 namespace DPL {
27 ReadWriteMutex::ReadWriteMutex()
28 {
29     if (pthread_rwlock_init(&m_rwlock, NULL) != 0) {
30         Throw(Exception::CreateFailed);
31     }
32 }
33
34 ReadWriteMutex::~ReadWriteMutex()
35 {
36     if (pthread_rwlock_destroy(&m_rwlock) != 0) {
37         Throw(Exception::DestroyFailed);
38     }
39 }
40
41 void ReadWriteMutex::ReadLock() const
42 {
43     if (pthread_rwlock_rdlock(&m_rwlock) != 0) {
44         Throw(Exception::ReadLockFailed);
45     }
46 }
47
48 void ReadWriteMutex::WriteLock() const
49 {
50     if (pthread_rwlock_wrlock(&m_rwlock) != 0) {
51         Throw(Exception::WriteLockFailed);
52     }
53 }
54
55 void ReadWriteMutex::Unlock() const
56 {
57     if (pthread_rwlock_unlock(&m_rwlock) != 0) {
58         Throw(Exception::UnlockFailed);
59     }
60 }
61
62 ReadWriteMutex::ScopedReadLock::ScopedReadLock(ReadWriteMutex *mutex) :
63     m_mutex(mutex)
64 {
65     Assert(mutex != NULL);
66     m_mutex->ReadLock();
67 }
68
69 ReadWriteMutex::ScopedReadLock::~ScopedReadLock()
70 {
71     m_mutex->Unlock();
72 }
73
74 ReadWriteMutex::ScopedWriteLock::ScopedWriteLock(ReadWriteMutex *mutex) :
75     m_mutex(mutex)
76 {
77     Assert(mutex != NULL);
78     m_mutex->WriteLock();
79 }
80
81 ReadWriteMutex::ScopedWriteLock::~ScopedWriteLock()
82 {
83     m_mutex->Unlock();
84 }
85 } // namespace DPL