Tizen 2.0 Release
[framework/web/wrt-commons.git] / modules / core / src / 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        mutex.cpp
18  * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of mutex
21  */
22 #include <stddef.h>
23 #include <dpl/mutex.h>
24 #include <dpl/assert.h>
25 #include <dpl/log/log.h>
26 #include <errno.h>
27
28 namespace DPL
29 {
30 Mutex::Mutex()
31 {
32     if (pthread_mutex_init(&m_mutex, NULL) != 0)
33     {
34         int error = errno;
35
36         LogPedantic("Failed to create mutex. Errno: " << error);
37
38         ThrowMsg(Exception::CreateFailed,
39             "Failed to create mutex. Errno: " << error);
40     }
41 }
42
43 Mutex::~Mutex()
44 {
45     if (pthread_mutex_destroy(&m_mutex) != 0)
46     {
47         int error = errno;
48
49         LogPedantic("Failed to destroy mutex. Errno: " << error);
50     }
51 }
52
53 void Mutex::Lock() const
54 {
55     if (pthread_mutex_lock(&m_mutex) != 0)
56     {
57         int error = errno;
58
59         LogPedantic("Failed to lock mutex. Errno: " << error);
60
61         ThrowMsg(Exception::LockFailed,
62             "Failed to lock mutex. Errno: " << error);
63     }
64 }
65
66 void Mutex::Unlock() const
67 {
68     if (pthread_mutex_unlock(&m_mutex) != 0)
69     {
70         int error = errno;
71
72         LogPedantic("Failed to unlock mutex. Errno: " << error);
73
74         ThrowMsg(Exception::UnlockFailed,
75             "Failed to unlock mutex. Errno: " << error);
76     }
77 }
78
79 Mutex::ScopedLock::ScopedLock(Mutex *mutex)
80     : m_mutex(mutex)
81 {
82     Assert(mutex != NULL);
83     m_mutex->Lock();
84 }
85
86 Mutex::ScopedLock::~ScopedLock()
87 {
88     Try
89     {
90         m_mutex->Unlock();
91     }
92     Catch (Mutex::Exception::UnlockFailed)
93     {
94         LogPedantic("Failed to leave mutex scoped lock");
95     }
96 }
97 } // namespace DPL