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