Update copyright year to 2015 for public api: core
[platform/core/uifw/dali-core.git] / dali / public-api / common / 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/public-api/common/mutex.h>
20
21 // EXTERNAL INCLUDES
22 #include <pthread.h>
23
24 namespace Dali
25 {
26
27 struct Mutex::MutexImpl
28 {
29   pthread_mutex_t mutex;
30   bool locked;
31 };
32
33 Mutex::Mutex()
34 : mImpl( new MutexImpl )
35 {
36   pthread_mutex_init( &mImpl->mutex, NULL );
37   mImpl->locked = false;
38 }
39
40 Mutex::~Mutex()
41 {
42   pthread_mutex_destroy( &mImpl->mutex );
43   // nothing else to do as there is no Lock/Unlock API
44   // ScopedLock destructor will always unlock the mutex
45   delete mImpl;
46 }
47
48 bool Mutex::IsLocked()
49 {
50   return mImpl->locked;
51 }
52
53 Mutex::ScopedLock::ScopedLock( Mutex& mutex )
54 : mMutex( mutex )
55 {
56   pthread_mutex_lock( &mMutex.mImpl->mutex );
57   mMutex.mImpl->locked = true;
58 }
59
60 Mutex::ScopedLock::~ScopedLock()
61 {
62   pthread_mutex_unlock( &mMutex.mImpl->mutex );
63   mMutex.mImpl->locked = false;
64 }
65
66 } // namespace Dali