Initialize Tizen 2.3
[framework/web/wrt-commons.git] / modules_wearable / core / include / dpl / recursive_mutex.h
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.h
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 #ifndef DPL_RECURSIVE_MUTEX_H
23 #define DPL_RECURSIVE_MUTEX_H
24
25 #include <dpl/noncopyable.h>
26 #include <dpl/exception.h>
27 #include <pthread.h>
28
29 namespace DPL {
30 class RecursiveMutex :
31     private Noncopyable
32 {
33   public:
34     class ScopedLock :
35         private Noncopyable
36     {
37       private:
38         RecursiveMutex *m_mutex;
39
40       public:
41         ScopedLock(RecursiveMutex *mutex);
42         virtual ~ScopedLock();
43     };
44
45     class Exception
46     {
47       public:
48         DECLARE_EXCEPTION_TYPE(DPL::Exception, Base)
49         DECLARE_EXCEPTION_TYPE(Base, CreateFailed)
50         DECLARE_EXCEPTION_TYPE(Base, DestroyFailed)
51         DECLARE_EXCEPTION_TYPE(Base, LockFailed)
52         DECLARE_EXCEPTION_TYPE(Base, UnlockFailed)
53     };
54
55   private:
56     mutable pthread_mutex_t m_mutex;
57
58     void Lock() const;
59     void Unlock() const;
60
61   public:
62     explicit RecursiveMutex();
63     virtual ~RecursiveMutex();
64 };
65 } // namespace DPL
66
67 #endif // DPL_RECURSIVE_MUTEX_H