Merge remote-tracking branch 'origin/tizen' into new_text
[platform/core/uifw/dali-adaptor.git] / adaptors / common / framework.h
1 #ifndef __DALI_INTERNAL_FRAMEWORK_H__
2 #define __DALI_INTERNAL_FRAMEWORK_H__
3
4 /*
5  * Copyright (c) 2014 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 // EXTERNAL INCLUDES
22 #include <string>
23 #include <dali/public-api/signals/callback.h>
24
25 // INTERNAL INCLUDES
26 #include "abort-handler.h"
27
28 namespace Dali
29 {
30
31 namespace Internal
32 {
33
34 namespace Adaptor
35 {
36
37 /**
38  * The Framework class is used to register callbacks with the SLP platform so that
39  * we know when any of the application lifecycle events occur.  This includes events
40  * like when our application is to be initialised, terminated, paused, resumed etc.
41  */
42 class Framework
43 {
44 public:
45
46   /**
47    * Observer class for the framework.
48    */
49   class Observer
50   {
51   public:
52
53     /**
54      * Invoked when the application is to be initialised.
55      */
56     virtual void OnInit() {}
57
58     /**
59      * Invoked when the application is to be terminated.
60      */
61     virtual void OnTerminate() {}
62
63     /**
64      * Invoked when the application is to be paused.
65      */
66     virtual void OnPause() {}
67
68     /**
69      * Invoked when the application is to be resumed.
70      */
71     virtual void OnResume() {}
72
73     /**
74      * Invoked when the application is to be reset.
75      */
76     virtual void OnReset() {}
77
78     /**
79      * Invoked when the language of the device is changed.
80      */
81     virtual void OnLanguageChanged() {}
82   };
83
84 public:
85
86   /**
87    * Constructor
88    * @param[in]  observer  The observer of the Framework.
89    * @param[in]  argc      A pointer to the number of arguments.
90    * @param[in]  argv      A pointer the the argument list.
91    */
92   Framework(Observer& observer, int* argc, char ***argv, const std::string& name);
93
94   /**
95    * Destructor
96    */
97   ~Framework();
98
99 public:
100
101   /**
102    * Runs the main loop of framework
103    */
104   void Run();
105
106   /**
107    * Quits the main loop
108    */
109   void Quit();
110
111   /**
112    * Checks whether the main loop of the framework is running.
113    * @return true, if the main loop is running, false otherwise.
114    */
115   bool IsMainLoopRunning();
116
117   /**
118    * If the main loop aborts unexpectedly, then the connected callback function is called.
119    * @param[in]  callBack  The function to call.
120    * @note Only one callback can be registered.  The last callback to be set will be called on abort.
121    * @note The ownership of callback is passed onto this class.
122    */
123   void AddAbortCallback( CallbackBase* callback );
124
125   /**
126    * Gets bundle name which was passed in app_reset callback.
127    */
128   std::string GetBundleName() const;
129
130   /**
131    * Gets bundle id which was passed in app_reset callback.
132    */
133   std::string GetBundleId() const;
134
135 private:
136
137   // Undefined
138   Framework(const Framework&);
139   Framework& operator=(Framework&);
140
141 private:
142   /**
143    * Called by the SLP framework when an application lifecycle event occurs.
144    * @param[in]  type  The type of event occurred.
145    */
146   bool SlpAppStatusHandler(int type);
147
148   /**
149    * Called app_reset callback was called with bundle.
150    */
151   void SetBundleName(const std::string& name);
152
153   /**
154    * Called app_reset callback was called with bundle.
155    */
156   void SetBundleId(const std::string& id);
157
158   /**
159    * Called if the application is aborted.
160    */
161   void AbortCallback();
162
163   /**
164    * Called for initializing on specified backend. (X11 or Wayland)
165    */
166   void InitThreads();
167
168 private:
169   Observer&          mObserver;
170   bool               mInitialised;
171   bool               mRunning;
172   int*               mArgc;
173   char***            mArgv;
174   std::string        mName;
175   std::string        mBundleName;
176   std::string        mBundleId;
177   AbortHandler       mAbortHandler;
178
179 private: // impl members
180
181   struct Impl;
182   Impl* mImpl;
183
184 };
185
186 } // namespace Adaptor
187
188 } // namespace Internal
189
190 } // namespace Dali
191
192 #endif // __DALI_INTERNAL_FRAMEWORK_H__