Update User Agent String
[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 <dpl/mutex.h>
23 #include <dpl/assert.h>
24 #include <dpl/log/log.h>
25 #include <errno.h>
26
27 namespace DPL
28 {
29 Mutex::Mutex()
30 {
31     if (pthread_mutex_init(&m_mutex, NULL) != 0)
32     {
33         int error = errno;
34
35         LogPedantic("Failed to create mutex. Errno: " << error);
36
37         ThrowMsg(Exception::CreateFailed,
38             "Failed to create mutex. Errno: " << error);
39     }
40 }
41
42 Mutex::~Mutex()
43 {
44     if (pthread_mutex_destroy(&m_mutex) != 0)
45     {
46         int error = errno;
47
48         LogPedantic("Failed to destroy mutex. Errno: " << error);
49     }
50 }
51
52 void Mutex::Lock() const
53 {
54     if (pthread_mutex_lock(&m_mutex) != 0)
55     {
56         int error = errno;
57
58         LogPedantic("Failed to lock mutex. Errno: " << error);
59
60         ThrowMsg(Exception::LockFailed,
61             "Failed to lock mutex. Errno: " << error);
62     }
63 }
64
65 void Mutex::Unlock() const
66 {
67     if (pthread_mutex_unlock(&m_mutex) != 0)
68     {
69         int error = errno;
70
71         LogPedantic("Failed to unlock mutex. Errno: " << error);
72
73         ThrowMsg(Exception::UnlockFailed,
74             "Failed to unlock mutex. Errno: " << error);
75     }
76 }
77
78 Mutex::ScopedLock::ScopedLock(Mutex *mutex)
79     : m_mutex(mutex)
80 {
81     Assert(mutex != NULL);
82     m_mutex->Lock();
83 }
84
85 Mutex::ScopedLock::~ScopedLock()
86 {
87     Try
88     {
89         m_mutex->Unlock();
90     }
91     Catch (Mutex::Exception::UnlockFailed)
92     {
93         LogPedantic("Failed to leave mutex scoped lock");
94     }
95 }
96 } // namespace DPL