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