19e9dea8668b721ac973e3bc67fa392ce1d42329
[platform/framework/web/wrt-commons.git] / 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 <dpl/recursive_mutex.h>
23 #include <dpl/assert.h>
24
25 namespace DPL
26 {
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 RecursiveMutex::~RecursiveMutex()
39 {
40     if (pthread_mutex_destroy(&m_mutex) != 0)
41         Throw(Exception::DestroyFailed);
42 }
43
44 void RecursiveMutex::Lock() const
45 {
46     if (pthread_mutex_lock(&m_mutex) != 0)
47         Throw(Exception::LockFailed);
48 }
49
50 void RecursiveMutex::Unlock() const
51 {
52     if (pthread_mutex_unlock(&m_mutex) != 0)
53         Throw(Exception::UnlockFailed);
54 }
55
56 RecursiveMutex::ScopedLock::ScopedLock(RecursiveMutex *mutex)
57     : m_mutex(mutex)
58 {
59     Assert(mutex != NULL);
60     m_mutex->Lock();
61 }
62
63 RecursiveMutex::ScopedLock::~ScopedLock()
64 {
65     m_mutex->Unlock();
66 }
67 } // namespace DPL