Added Thread abstract class
[platform/core/uifw/dali-core.git] / dali / devel-api / threading / mutex.cpp
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
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
18 // CLASS HEADER
19 #include <dali/devel-api/threading/mutex.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/common/mutex-impl.h>
23
24 // EXTERNAL INCLUDES
25 #include <pthread.h>
26
27 namespace Dali
28 {
29
30 struct Mutex::MutexImpl
31 {
32   pthread_mutex_t mutex;
33   bool locked;
34 };
35
36 Mutex::Mutex()
37 : mImpl( new MutexImpl )
38 {
39   pthread_mutex_init( &mImpl->mutex, NULL );
40   mImpl->locked = false;
41 }
42
43 Mutex::~Mutex()
44 {
45   pthread_mutex_destroy( &mImpl->mutex );
46   // nothing else to do as there is no Lock/Unlock API
47   // ScopedLock destructor will always unlock the mutex
48   delete mImpl;
49 }
50
51 bool Mutex::IsLocked()
52 {
53   return mImpl->locked;
54 }
55
56 Mutex::ScopedLock::ScopedLock( Mutex& mutex )
57 : mMutex( mutex )
58 {
59   Internal::Mutex::Lock( &mMutex.mImpl->mutex );
60   mMutex.mImpl->locked = true;
61 }
62
63 Mutex::ScopedLock::~ScopedLock()
64 {
65   mMutex.mImpl->locked = false;
66   Internal::Mutex::Unlock( &mMutex.mImpl->mutex );
67 }
68
69 } // namespace Dali