c9fcd5d728d81ebf75063a9d0d1570c08e47bcf1
[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 <stddef.h>
23 #include <dpl/recursive_mutex.h>
24 #include <dpl/assert.h>
25
26 namespace DPL
27 {
28 RecursiveMutex::RecursiveMutex()
29 {
30     pthread_mutexattr_t attr;
31
32     pthread_mutexattr_init(&attr);
33     pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
34
35     if (pthread_mutex_init(&m_mutex, &attr) != 0)
36         Throw(Exception::CreateFailed);
37 }
38
39 RecursiveMutex::~RecursiveMutex()
40 {
41     if (pthread_mutex_destroy(&m_mutex) != 0)
42         Throw(Exception::DestroyFailed);
43 }
44
45 void RecursiveMutex::Lock() const
46 {
47     if (pthread_mutex_lock(&m_mutex) != 0)
48         Throw(Exception::LockFailed);
49 }
50
51 void RecursiveMutex::Unlock() const
52 {
53     if (pthread_mutex_unlock(&m_mutex) != 0)
54         Throw(Exception::UnlockFailed);
55 }
56
57 RecursiveMutex::ScopedLock::ScopedLock(RecursiveMutex *mutex)
58     : m_mutex(mutex)
59 {
60     Assert(mutex != NULL);
61     m_mutex->Lock();
62 }
63
64 RecursiveMutex::ScopedLock::~ScopedLock()
65 {
66     m_mutex->Unlock();
67 }
68 } // namespace DPL