[dali_2.3.27] Merge branch 'devel/master'
[platform/core/uifw/dali-core.git] / dali / devel-api / threading / thread.cpp
1 /*
2  * Copyright (c) 2020 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/thread.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/integration-api/debug.h>
23 #include <cstddef>
24 #include <thread>
25
26 namespace Dali
27 {
28 struct Thread::ThreadImpl
29 {
30   ThreadImpl(Thread& aThis)
31   : thread(&Thread::InternalThreadEntryFunc, std::ref(aThis))
32   {
33     // std::thread starts execution immediately
34   }
35   ~ThreadImpl()
36   {
37     thread.join();
38   }
39   std::thread thread;
40 };
41
42 Thread::Thread()
43 : mImpl(nullptr)
44 {
45 }
46
47 Thread::~Thread()
48 {
49   Join();
50 }
51
52 void Thread::Start()
53 {
54   if(!mImpl)
55   {
56     mImpl = new Thread::ThreadImpl(*this);
57   }
58 }
59
60 void Thread::Join()
61 {
62   delete mImpl;
63   mImpl = nullptr;
64 }
65
66 void Thread::InternalThreadEntryFunc(Thread& aThis)
67 {
68   aThis.Run();
69 }
70
71 } // namespace Dali