tizen 2.3.1 release
[framework/web/wearable/wrt-security.git] / commons / modules / core / src / recursive_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        recursive_mutex.cpp
18  * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of recursive mutex
21  */
22 #include <stddef.h>
23 #include <dpl/recursive_mutex.h>
24 #include <dpl/assert.h>
25
26 namespace DPL {
27 RecursiveMutex::RecursiveMutex()
28 {
29     pthread_mutexattr_t attr;
30
31     pthread_mutexattr_init(&attr);
32     pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
33
34     if (pthread_mutex_init(&m_mutex, &attr) != 0) {
35         Throw(Exception::CreateFailed);
36     }
37 }
38
39 RecursiveMutex::~RecursiveMutex()
40 {
41     if (pthread_mutex_destroy(&m_mutex) != 0) {
42         Throw(Exception::DestroyFailed);
43     }
44 }
45
46 void RecursiveMutex::Lock() const
47 {
48     if (pthread_mutex_lock(&m_mutex) != 0) {
49         Throw(Exception::LockFailed);
50     }
51 }
52
53 void RecursiveMutex::Unlock() const
54 {
55     if (pthread_mutex_unlock(&m_mutex) != 0) {
56         Throw(Exception::UnlockFailed);
57     }
58 }
59
60 RecursiveMutex::ScopedLock::ScopedLock(RecursiveMutex *mutex) :
61     m_mutex(mutex)
62 {
63     Assert(mutex != NULL);
64     m_mutex->Lock();
65 }
66
67 RecursiveMutex::ScopedLock::~ScopedLock()
68 {
69     m_mutex->Unlock();
70 }
71 } // namespace DPL