535e700e036bee30d8e5ac2c039da1f911bc713c
[platform/core/uifw/dali-core.git] / dali / devel-api / threading / thread.h
1 #ifndef __DALI_THREAD_H__
2 #define __DALI_THREAD_H__
3
4 /*
5  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <dali/public-api/common/dali-common.h>
23
24
25 /**
26  * The top level DALi namespace
27  */
28 namespace Dali
29 {
30
31 /*
32  * @brief Abstract class for thread functionality. Can be used for worker threads.
33  */
34 class DALI_IMPORT_API Thread
35 {
36 public:
37
38   /**
39    * @brief Creates a new thread and make it executable.
40    */
41   void Start();
42
43   /**
44    * @brief Wait for thread termination.
45    */
46   void Join();
47
48 protected:
49
50   /**
51    * @brief Constructor
52    */
53   Thread();
54
55   /**
56    * @brief Destructor, virtual as this is used as base class
57    */
58   virtual ~Thread();
59
60   /**
61    * The routine that the thread will execute once it is started.
62    */
63   virtual void Run() = 0;
64
65 private:
66
67   /**
68    * Helper for the thread calling the entry function.
69    * @param[in] This A pointer to the current RenderThread object
70    */
71   static void* InternalThreadEntryFunc( void* This );
72
73   // Undefined
74   Thread( const Thread& );
75   // Undefined
76   const Thread& operator=( const Thread& );
77
78 private:
79
80   struct ThreadImpl;
81   ThreadImpl* mImpl;
82 };
83
84 }
85
86 #endif /* __DALI_THREAD_H__ */