Merge "DALi Version 1.0.48" into devel/master
[platform/core/uifw/dali-adaptor.git] / adaptors / common / application-impl.cpp
1 /*
2  * Copyright (c) 2014 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 "application-impl.h"
20
21 // EXTERNAL INCLUDES
22 #include <dali/integration-api/debug.h>
23
24 // INTERNAL INCLUDES
25 #include <style-monitor.h>
26 #include <command-line-options.h>
27 #include <common/adaptor-impl.h>
28 #include <singleton-service-impl.h>
29 #include <lifecycle-controller-impl.h>
30
31 namespace Dali
32 {
33
34 namespace TizenPlatform
35 {
36 class TizenPlatformAbstraction;
37 }
38
39 namespace Integration
40 {
41 class Core;
42 }
43
44 namespace Internal
45 {
46
47 namespace Adaptor
48 {
49
50 ApplicationPtr Application::New(
51   int* argc,
52   char **argv[],
53   const std::string& stylesheet,
54   Dali::Application::WINDOW_MODE windowMode)
55 {
56   ApplicationPtr application ( new Application (argc, argv, stylesheet, windowMode ) );
57   return application;
58 }
59
60 Application::Application( int* argc, char** argv[], const std::string& stylesheet, Dali::Application::WINDOW_MODE windowMode )
61 : mInitSignal(),
62   mTerminateSignal(),
63   mPauseSignal(),
64   mResumeSignal(),
65   mResetSignal(),
66   mResizeSignal(),
67   mAppControlSignal(),
68   mLanguageChangedSignal(),
69   mRegionChangedSignal(),
70   mBatteryLowSignal(),
71   mMemoryLowSignal(),
72   mEventLoop( NULL ),
73   mFramework( NULL ),
74   mContextLossConfiguration( Configuration::APPLICATION_DOES_NOT_HANDLE_CONTEXT_LOSS ),
75   mCommandLineOptions( NULL ),
76   mSingletonService( SingletonService::New() ),
77   mAdaptor( NULL ),
78   mWindow(),
79   mWindowMode( windowMode ),
80   mName(),
81   mStylesheet( stylesheet ),
82   mEnvironmentOptions(),
83   mInitialized( false ),
84   mSlotDelegate( this )
85 {
86   // Get mName from environment options
87   mName = mEnvironmentOptions.GetWindowName();
88   if( mName.empty() && argc && ( *argc > 0 ) )
89   {
90     // Set mName from command-line args if environment option not set
91     mName = (*argv)[0];
92   }
93
94   mCommandLineOptions = new CommandLineOptions(argc, argv);
95
96   mFramework = new Framework( *this, argc, argv );
97 }
98
99 Application::~Application()
100 {
101   mSingletonService.UnregisterAll();
102
103   delete mFramework;
104   delete mCommandLineOptions;
105   delete mAdaptor;
106   mWindow.Reset();
107 }
108
109 void Application::CreateWindow()
110 {
111   PositionSize windowPosition(0, 0, 0, 0);  // this will use full screen
112
113   if( mCommandLineOptions->stageWidth > 0 && mCommandLineOptions->stageHeight > 0 )
114   {
115     // Command line options override environment options and full screen
116     windowPosition = PositionSize( 0, 0, mCommandLineOptions->stageWidth, mCommandLineOptions->stageHeight );
117   }
118   else if( mEnvironmentOptions.GetWindowWidth() && mEnvironmentOptions.GetWindowHeight() )
119   {
120     // Environment options override full screen functionality if command line arguments not provided
121     windowPosition = PositionSize( 0, 0, mEnvironmentOptions.GetWindowWidth(), mEnvironmentOptions.GetWindowHeight() );
122   }
123
124   const std::string& windowClassName = mEnvironmentOptions.GetWindowClassName();
125   mWindow = Dali::Window::New( windowPosition, mName, windowClassName, mWindowMode == Dali::Application::TRANSPARENT );
126 }
127
128 void Application::CreateAdaptor()
129 {
130   DALI_ASSERT_ALWAYS( mWindow && "Window required to create adaptor" );
131
132   mAdaptor = Dali::Internal::Adaptor::Adaptor::New( mWindow, mContextLossConfiguration, &mEnvironmentOptions );
133
134   mAdaptor->ResizedSignal().Connect( mSlotDelegate, &Application::OnResize );
135 }
136
137 void Application::MainLoop(Dali::Configuration::ContextLoss configuration)
138 {
139   mContextLossConfiguration = configuration;
140
141   // Run the application
142   mFramework->Run();
143 }
144
145 void Application::Lower()
146 {
147   // Lower the application without quitting it.
148   mWindow.Lower();
149 }
150
151 void Application::Quit()
152 {
153   // Actually quit the application.
154   AddIdle( MakeCallback( this, &Application::QuitFromMainLoop ) );
155 }
156
157 void Application::QuitFromMainLoop()
158 {
159   mAdaptor->Stop();
160
161   Dali::Application application(this);
162   mTerminateSignal.Emit( application );
163
164   mFramework->Quit();
165   // This will trigger OnTerminate(), below, after the main loop has completed.
166   mInitialized = false;
167 }
168
169 void Application::OnInit()
170 {
171   mFramework->AddAbortCallback( MakeCallback( this, &Application::QuitFromMainLoop ) );
172
173   CreateWindow();
174   CreateAdaptor();
175
176   // Run the adaptor
177   mAdaptor->Start();
178
179   // Check if user requires no vsyncing and set on X11 Adaptor
180   if (mCommandLineOptions->noVSyncOnRender)
181   {
182     mAdaptor->SetUseHardwareVSync(false);
183   }
184
185   Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).SetStereoBase( mCommandLineOptions->stereoBase );
186   if( mCommandLineOptions->viewMode != 0 )
187   {
188     ViewMode viewMode = MONO;
189     if( mCommandLineOptions->viewMode <= STEREO_INTERLACED )
190     {
191       viewMode = static_cast<ViewMode>( mCommandLineOptions->viewMode );
192     }
193     Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).SetViewMode( viewMode );
194   }
195
196   if( ! mStylesheet.empty() )
197   {
198     Dali::StyleMonitor::Get().SetTheme( mStylesheet );
199   }
200
201   mInitialized = true;
202
203   // Wire up the LifecycleController
204   Dali::LifecycleController lifecycleController = Dali::LifecycleController::Get();
205
206   InitSignal().Connect( &GetImplementation( lifecycleController ), &LifecycleController::OnInit );
207   TerminateSignal().Connect( &GetImplementation( lifecycleController ), &LifecycleController::OnTerminate );
208   PauseSignal().Connect( &GetImplementation( lifecycleController ), &LifecycleController::OnPause );
209   ResumeSignal().Connect( &GetImplementation( lifecycleController ), &LifecycleController::OnResume );
210   ResetSignal().Connect( &GetImplementation( lifecycleController ), &LifecycleController::OnReset );
211   ResizeSignal().Connect( &GetImplementation( lifecycleController ), &LifecycleController::OnResize );
212   LanguageChangedSignal().Connect( &GetImplementation( lifecycleController ), &LifecycleController::OnLanguageChanged );
213
214   Dali::Application application(this);
215   mInitSignal.Emit( application );
216
217   mAdaptor->NotifySceneCreated();
218 }
219
220 void Application::OnTerminate()
221 {
222   // we've been told to quit by AppCore, ecore_x_destroy has been called, need to quit synchronously
223   // delete the window as ecore_x has been destroyed by AppCore
224
225   mWindow.Reset();
226   mInitialized = false;
227 }
228
229 void Application::OnPause()
230 {
231   mAdaptor->Pause();
232   Dali::Application application(this);
233   mPauseSignal.Emit( application );
234 }
235
236 void Application::OnResume()
237 {
238   mAdaptor->Resume();
239   Dali::Application application(this);
240   mResumeSignal.Emit( application );
241 }
242
243 void Application::OnReset()
244 {
245   /*
246    * usually, reset callback was called when a caller request to launch this application via aul.
247    * because Application class already handled initialization in OnInit(), OnReset do nothing.
248    */
249   Dali::Application application(this);
250   mResetSignal.Emit( application );
251
252   mWindow.Raise();
253 }
254
255 void Application::OnAppControl(void *data)
256 {
257   Dali::Application application(this);
258   mAppControlSignal.Emit( application , data );
259 }
260
261 void Application::OnLanguageChanged()
262 {
263   mAdaptor->NotifyLanguageChanged();
264   Dali::Application application(this);
265   mLanguageChangedSignal.Emit( application );
266 }
267
268 void Application::OnRegionChanged()
269 {
270   Dali::Application application(this);
271   mRegionChangedSignal.Emit( application );
272 }
273
274 void Application::OnBatteryLow()
275 {
276   Dali::Application application(this);
277   mBatteryLowSignal.Emit( application );
278 }
279
280 void Application::OnMemoryLow()
281 {
282   Dali::Application application(this);
283   mMemoryLowSignal.Emit( application );
284 }
285
286 void Application::OnResize(Dali::Adaptor& adaptor)
287 {
288   Dali::Application application(this);
289   mResizeSignal.Emit( application );
290 }
291
292 bool Application::AddIdle( CallbackBase* callback )
293 {
294   return mAdaptor->AddIdle( callback );
295 }
296
297 Dali::Adaptor& Application::GetAdaptor()
298 {
299   return *mAdaptor;
300 }
301
302 Dali::Window Application::GetWindow()
303 {
304   return mWindow;
305 }
306
307 // Stereoscopy
308
309 void Application::SetViewMode( ViewMode viewMode )
310 {
311   Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).SetViewMode( viewMode );
312 }
313
314 ViewMode Application::GetViewMode() const
315 {
316   return Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).GetViewMode();
317 }
318
319 void Application::SetStereoBase( float stereoBase )
320 {
321   Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).SetStereoBase( stereoBase );
322 }
323
324 float Application::GetStereoBase() const
325 {
326   return Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).GetStereoBase();
327 }
328
329
330 void Application::ReplaceWindow(PositionSize windowPosition, const std::string& name)
331 {
332   Dali::Window newWindow = Dali::Window::New( windowPosition, name, mWindowMode == Dali::Application::TRANSPARENT );
333   Window& windowImpl = GetImplementation(newWindow);
334   windowImpl.SetAdaptor(*mAdaptor);
335   newWindow.ShowIndicator(Dali::Window::INVISIBLE);
336   Dali::RenderSurface* renderSurface = windowImpl.GetSurface();
337
338   Any nativeWindow = newWindow.GetNativeHandle();
339   Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).ReplaceSurface(nativeWindow, *renderSurface);
340   mWindow = newWindow;
341 }
342
343 } // namespace Adaptor
344
345 } // namespace Internal
346
347 } // namespace Dali