e9065202ab2ee51beebf6655f781319e64b44d75
[platform/core/uifw/dali-adaptor.git] / dali / internal / adaptor / common / application-impl.h
1 #ifndef DALI_INTERNAL_APPLICATION_H
2 #define DALI_INTERNAL_APPLICATION_H
3
4 /*
5  * Copyright (c) 2018 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 <dali/public-api/math/rect.h>
23 #include <dali/public-api/object/base-object.h>
24
25 // INTERNAL INCLUDES
26 #include <dali/public-api/adaptor-framework/application.h>
27 #include <dali/devel-api/adaptor-framework/singleton-service.h>
28
29 #include <dali/internal/adaptor/common/framework.h>
30 #include <dali/internal/window-system/common/window-impl.h>
31 #include <dali/internal/system/common/environment-options.h>
32 #include <dali/internal/adaptor/common/adaptor-builder-impl.h>
33
34 namespace Dali
35 {
36 class Adaptor;
37 class Window;
38
39 namespace Internal
40 {
41
42 namespace Adaptor
43 {
44
45 namespace Launchpad
46 {
47
48 /**
49  * @brief Launchpad is used to improve application launch performance.
50  * When an application is pre-initialized, so files are preloaded, some functions are initialized and a window is made in advance.
51  */
52 enum State
53 {
54   NONE,              ///< The default state
55   PRE_INITIALIZED    ///< Application is pre-initialized.
56 };
57
58 } // namespace Launchpad
59
60 class CommandLineOptions;
61 class EventLoop;
62
63 typedef Dali::Rect<int> PositionSize;
64
65 class Application;
66 typedef IntrusivePtr<Application> ApplicationPtr;
67
68 /**
69  * Implementation of the Application class.
70  */
71 class Application : public BaseObject, public Framework::Observer
72 {
73 public:
74
75   typedef Dali::Application::LowBatterySignalType LowBatterySignalType;
76   typedef Dali::Application::LowMemorySignalType LowMemorySignalType;
77   typedef Dali::Application::AppSignalType AppSignalType;
78   typedef Dali::Application::AppControlSignalType AppControlSignalType;
79   typedef Dali::Application::WINDOW_MODE WINDOW_MODE;
80
81   /**
82    * Create a new application
83    * @param[in]  argc         A pointer to the number of arguments
84    * @param[in]  argv         A pointer to the argument list
85    * @param[in]  stylesheet   The path to user defined theme file
86    * @param[in]  windowMode   A member of Dali::Application::WINDOW_MODE
87    * @param[in]  positionSize A position and a size of the window
88    * @param[in]  applicationType  A member of Dali::Framework::Type
89    */
90   static ApplicationPtr New( int* argc, char **argv[], const std::string& stylesheet,
91     WINDOW_MODE windowMode, const PositionSize& positionSize, Framework::Type applicationType );
92
93   /**
94    * @copydoc Dali::DevelApplication::PreInitialize()
95    */
96   static void PreInitialize( int* argc, char** argv[] );
97
98 public:
99
100   /**
101    * @copydoc Dali::Application::MainLoop()
102    */
103   void MainLoop(Dali::Configuration::ContextLoss configuration);
104
105   /**
106    * @copydoc Dali::Application::Lower()
107    */
108   void Lower();
109
110   /**
111    * @copydoc Dali::Application::Quit()
112    */
113   void Quit();
114
115   /**
116    * @copydoc Dali::Application::AddIdle()
117    */
118   bool AddIdle( CallbackBase* callback, bool hasReturnValue );
119
120   /**
121    * @copydoc Dali::Application::GetAdaptor();
122    */
123   Dali::Adaptor& GetAdaptor();
124
125   /**
126    * @copydoc Dali::Application::GetWindow();
127    */
128   Dali::Window GetWindow();
129
130   /**
131    * @copydoc Dali::Application::GetRegion();
132    */
133   std::string GetRegion() const;
134
135   /**
136    * @copydoc Dali::Application::GetLanguage();
137    */
138   std::string GetLanguage() const;
139
140   /**
141    * @copydoc Dali::Application::ReplaceWindow();
142    */
143   void ReplaceWindow( const PositionSize& positionSize, const std::string& name);
144
145   /**
146    * @copydoc Dali::Application::GetResourcePath();
147    */
148   static std::string GetResourcePath();
149
150   /**
151    * Retrieves the pre-initialized application.
152    *
153    * @return A pointer to the pre-initialized application
154    */
155   static ApplicationPtr GetPreInitializedApplication();
156
157 public: // Stereoscopy
158
159   /**
160    * @copydoc Dali::Application::SetViewMode()
161    */
162   void SetViewMode( ViewMode viewMode );
163
164   /**
165    * @copydoc Dali::Application::GetViewMode()
166    */
167   ViewMode GetViewMode() const;
168
169   /**
170    * @copydoc Dali::Application::SetStereoBase()
171    */
172   void SetStereoBase( float stereoBase );
173
174   /**
175    * @copydoc Dali::Application::GetStereoBase()
176    */
177   float GetStereoBase() const;
178
179 public: // Lifecycle functionality
180
181   /**
182    * Called when OnInit is called or the framework is initialised.
183    */
184   void DoInit();
185
186   /**
187    * Called after OnInit is called or the framework is started.
188    */
189   void DoStart();
190
191   /**
192    * Called when OnTerminate is called or the framework is terminated.
193    */
194   void DoTerminate();
195
196   /**
197    * Called when OnPause is called or the framework is paused.
198    */
199   void DoPause();
200
201   /**
202    * Called when OnResume is called or the framework resumes from a paused state.
203    */
204   void DoResume();
205
206   /**
207    * Called when OnLanguageChanged is called or the framework informs the application that the language of the device has changed.
208    */
209   void DoLanguageChange();
210
211 public: // From Framework::Observer
212
213   /**
214    * Called when the framework is initialised.
215    */
216   virtual void OnInit();
217
218   /**
219    * Called when the framework is terminated.
220    */
221   virtual void OnTerminate();
222
223   /**
224    * Called when the framework is paused.
225    */
226   virtual void OnPause();
227
228   /**
229    * Called when the framework resumes from a paused state.
230    */
231   virtual void OnResume();
232
233   /**
234   * Called when the framework received AppControlSignal.
235   * @param[in] The bundle data of AppControl event.
236   */
237   virtual void OnAppControl(void *data);
238
239   /**
240    * Called when the framework informs the application that it should reset itself.
241    */
242   virtual void OnReset();
243
244   /**
245    * Called when the framework informs the application that the language of the device has changed.
246    */
247   virtual void OnLanguageChanged();
248
249   /**
250   * Called when the framework informs the application that the region of the device has changed.
251   */
252   virtual void OnRegionChanged();
253
254   /**
255   * Called when the framework informs the application that the battery level of the device is low.
256   */
257   virtual void OnBatteryLow( Dali::DeviceStatus::Battery::Status status );
258
259   /**
260   * Called when the framework informs the application that the memory level of the device is low.
261   */
262   virtual void OnMemoryLow( Dali::DeviceStatus::Memory::Status status );
263
264 public:
265
266   /**
267    * Signal handler when the adaptor's window resizes itself.
268    * @param[in]  adaptor  The adaptor
269    */
270   void OnResize(Dali::Adaptor& adaptor);
271
272   /**
273    * Sets a user defined theme file.
274    * This should be called before initialization.
275    * @param[in] stylesheet The path to user defined theme file
276    */
277   void SetStyleSheet( const std::string& stylesheet );
278
279 public:  // Signals
280
281   /**
282    * @copydoc Dali::Application::InitSignal()
283    */
284   Dali::Application::AppSignalType& InitSignal() { return mInitSignal; }
285
286   /**
287    * @copydoc Dali::Application::TerminateSignal()
288    */
289   Dali::Application::AppSignalType& TerminateSignal() { return mTerminateSignal; }
290
291   /**
292    * @copydoc Dali::Application::PauseSignal()
293    */
294   Dali::Application::AppSignalType& PauseSignal() { return mPauseSignal; }
295
296   /**
297    * @copydoc Dali::Application::ResumeSignal()
298    */
299   Dali::Application::AppSignalType& ResumeSignal() { return mResumeSignal; }
300
301   /**
302    * @copydoc Dali::Application::ResetSignal()
303    */
304   Dali::Application::AppSignalType& ResetSignal() { return mResetSignal; }
305
306   /**
307   * @copydoc Dali::Application::AppControlSignal()
308   */
309   Dali::Application::AppControlSignalType& AppControlSignal() { return mAppControlSignal; }
310
311   /**
312    * @copydoc Dali::Application::ResizeSignal()
313    */
314   Dali::Application::AppSignalType& ResizeSignal() { return mResizeSignal; }
315
316   /**
317    * @copydoc Dali::Application::LanguageChangedSignal()
318    */
319   Dali::Application::AppSignalType& LanguageChangedSignal() { return mLanguageChangedSignal; }
320
321   /**
322   * @copydoc Dali::Application::RegionChangedSignal()
323   */
324   Dali::Application::AppSignalType& RegionChangedSignal() { return mRegionChangedSignal; }
325
326   /**
327   * @copydoc Dali::Application::BatteryLowSignal()
328   */
329   Dali::Application::AppSignalType& BatteryLowSignal() { return mBatteryLowSignal; }
330
331   /**
332   * @copydoc Dali::Application::MemoryLowSignal()
333   */
334   Dali::Application::AppSignalType& MemoryLowSignal() { return mMemoryLowSignal; }
335
336   /**
337   * @copydoc Dali::Application::LowBatterySignal()
338   */
339   Dali::Application::LowBatterySignalType& LowBatterySignal() { return mLowBatterySignal; }
340
341   /**
342   * @copydoc Dali::Application:::LowMemorySignal()
343   */
344   Dali::Application::LowMemorySignalType& LowMemorySignal() { return mLowMemorySignal; }
345
346 protected:
347
348   /**
349    * Private Constructor
350    * @param[in]  argc         A pointer to the number of arguments
351    * @param[in]  argv         A pointer to the argument list
352    * @param[in]  stylesheet   The path to user defined theme file
353    * @param[in]  windowMode   A member of Dali::Application::WINDOW_MODE
354    * @param[in]  positionSize A position and a size of the window
355    * @param[in]  applicationType  A member of Dali::Framework::Type
356    */
357   Application( int* argc, char **argv[], const std::string& stylesheet,
358       WINDOW_MODE windowMode, const PositionSize& positionSize, Framework::Type applicationType );
359
360   /**
361    * Destructor
362    */
363   virtual ~Application();
364
365   // Undefined
366   Application(const Application&);
367   Application& operator=(Application&);
368
369   /**
370    * Creates the window
371    */
372   void CreateWindow();
373
374   /**
375    * Creates the adaptor
376    */
377   void CreateAdaptor();
378
379   /**
380    * Creates the adaptor builder
381    */
382   void CreateAdaptorBuilder();
383
384   /**
385    * Quits from the main loop
386    */
387   void QuitFromMainLoop();
388
389 private:
390
391   AppSignalType                         mInitSignal;
392   AppSignalType                         mTerminateSignal;
393   AppSignalType                         mPauseSignal;
394   AppSignalType                         mResumeSignal;
395   AppSignalType                         mResetSignal;
396   AppSignalType                         mResizeSignal;
397   AppControlSignalType                  mAppControlSignal;
398   AppSignalType                         mLanguageChangedSignal;
399   AppSignalType                         mRegionChangedSignal;
400   AppSignalType                         mBatteryLowSignal;
401   AppSignalType                         mMemoryLowSignal;
402   LowBatterySignalType                  mLowBatterySignal;
403   LowMemorySignalType                   mLowMemorySignal;
404
405   EventLoop*                            mEventLoop;
406   Framework*                            mFramework;
407
408   Dali::Configuration::ContextLoss      mContextLossConfiguration;
409   CommandLineOptions*                   mCommandLineOptions;
410
411   Dali::SingletonService                   mSingletonService;
412   Dali::Internal::Adaptor::AdaptorBuilder* mAdaptorBuilder;   ///< The adaptor builder
413   Dali::Adaptor*                           mAdaptor;
414
415   // The Main Window is that window created by the Application during initial startup
416   // (previously this was the only window)
417   Dali::Window                             mMainWindow;       ///< Main Window instance
418   Dali::Application::WINDOW_MODE           mMainWindowMode;   ///< Window mode of the main window
419   std::string                              mMainWindowName;   ///< Name of the main window as obtained from environment options
420
421   std::string                              mStylesheet;
422   EnvironmentOptions                       mEnvironmentOptions;
423   PositionSize                             mWindowPositionSize;
424   Launchpad::State                         mLaunchpadState;
425   bool                                     mUseRemoteSurface;
426
427   SlotDelegate< Application >           mSlotDelegate;
428
429   static ApplicationPtr                 gPreInitializedApplication;
430 };
431
432 inline Application& GetImplementation(Dali::Application& application)
433 {
434   DALI_ASSERT_ALWAYS(application && "application handle is empty");
435
436   BaseObject& handle = application.GetBaseObject();
437
438   return static_cast<Internal::Adaptor::Application&>(handle);
439 }
440
441 inline const Application& GetImplementation(const Dali::Application& application)
442 {
443   DALI_ASSERT_ALWAYS(application && "application handle is empty");
444
445   const BaseObject& handle = application.GetBaseObject();
446
447   return static_cast<const Internal::Adaptor::Application&>(handle);
448 }
449
450
451 } // namespace Adaptor
452
453 } // namespace Internal
454
455 } // namespace Dali
456
457 #endif // DALI_INTERNAL_APPLICATION_H