tizen 2.3 release
[framework/web/wearable/wrt-security.git] / commons / modules / core / include / dpl / 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        mutex.h
18  * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of mutex
21  */
22 #ifndef DPL_MUTEX_H
23 #define DPL_MUTEX_H
24
25 #include <dpl/noncopyable.h>
26 #include <dpl/exception.h>
27 #include <dpl/availability.h>
28 #include <pthread.h>
29
30 namespace DPL {
31 class Mutex :
32     private Noncopyable
33 {
34   public:
35     class ScopedLock :
36         private Noncopyable
37     {
38       private:
39         Mutex *m_mutex;
40
41       public:
42         explicit ScopedLock(Mutex *mutex);
43         ~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, 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     Mutex();
63     ~Mutex();
64 } DPL_DEPRECATED_WITH_MESSAGE("Use std::mutex instead");
65 } // namespace DPL
66
67 #endif // DPL_MUTEX_H