React to window delete events & handle SIGTERM, SIGHUP
[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   // Quit the application when the window is closed
128   GetImplementation( mWindow ).DeleteRequestSignal().Connect( mSlotDelegate, &Application::Quit );
129 }
130
131 void Application::CreateAdaptor()
132 {
133   DALI_ASSERT_ALWAYS( mWindow && "Window required to create adaptor" );
134
135   mAdaptor = Dali::Internal::Adaptor::Adaptor::New( mWindow, mContextLossConfiguration, &mEnvironmentOptions );
136
137   mAdaptor->ResizedSignal().Connect( mSlotDelegate, &Application::OnResize );
138 }
139
140 void Application::MainLoop(Dali::Configuration::ContextLoss configuration)
141 {
142   mContextLossConfiguration = configuration;
143
144   // Run the application
145   mFramework->Run();
146 }
147
148 void Application::Lower()
149 {
150   // Lower the application without quitting it.
151   mWindow.Lower();
152 }
153
154 void Application::Quit()
155 {
156   // Actually quit the application.
157   AddIdle( MakeCallback( this, &Application::QuitFromMainLoop ) );
158 }
159
160 void Application::QuitFromMainLoop()
161 {
162   mAdaptor->Stop();
163
164   Dali::Application application(this);
165   mTerminateSignal.Emit( application );
166
167   mFramework->Quit();
168   // This will trigger OnTerminate(), below, after the main loop has completed.
169   mInitialized = false;
170 }
171
172 void Application::OnInit()
173 {
174   mFramework->AddAbortCallback( MakeCallback( this, &Application::QuitFromMainLoop ) );
175
176   CreateWindow();
177   CreateAdaptor();
178
179   // Run the adaptor
180   mAdaptor->Start();
181
182   // Check if user requires no vsyncing and set on X11 Adaptor
183   if (mCommandLineOptions->noVSyncOnRender)
184   {
185     mAdaptor->SetUseHardwareVSync(false);
186   }
187
188   Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).SetStereoBase( mCommandLineOptions->stereoBase );
189   if( mCommandLineOptions->viewMode != 0 )
190   {
191     ViewMode viewMode = MONO;
192     if( mCommandLineOptions->viewMode <= STEREO_INTERLACED )
193     {
194       viewMode = static_cast<ViewMode>( mCommandLineOptions->viewMode );
195     }
196     Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).SetViewMode( viewMode );
197   }
198
199   if( ! mStylesheet.empty() )
200   {
201     Dali::StyleMonitor::Get().SetTheme( mStylesheet );
202   }
203
204   mInitialized = true;
205
206   // Wire up the LifecycleController
207   Dali::LifecycleController lifecycleController = Dali::LifecycleController::Get();
208
209   InitSignal().Connect( &GetImplementation( lifecycleController ), &LifecycleController::OnInit );
210   TerminateSignal().Connect( &GetImplementation( lifecycleController ), &LifecycleController::OnTerminate );
211   PauseSignal().Connect( &GetImplementation( lifecycleController ), &LifecycleController::OnPause );
212   ResumeSignal().Connect( &GetImplementation( lifecycleController ), &LifecycleController::OnResume );
213   ResetSignal().Connect( &GetImplementation( lifecycleController ), &LifecycleController::OnReset );
214   ResizeSignal().Connect( &GetImplementation( lifecycleController ), &LifecycleController::OnResize );
215   LanguageChangedSignal().Connect( &GetImplementation( lifecycleController ), &LifecycleController::OnLanguageChanged );
216
217   Dali::Application application(this);
218   mInitSignal.Emit( application );
219
220   mAdaptor->NotifySceneCreated();
221 }
222
223 void Application::OnTerminate()
224 {
225   // we've been told to quit by AppCore, ecore_x_destroy has been called, need to quit synchronously
226   // delete the window as ecore_x has been destroyed by AppCore
227
228   mWindow.Reset();
229   mInitialized = false;
230 }
231
232 void Application::OnPause()
233 {
234   mAdaptor->Pause();
235   Dali::Application application(this);
236   mPauseSignal.Emit( application );
237 }
238
239 void Application::OnResume()
240 {
241   mAdaptor->Resume();
242   Dali::Application application(this);
243   mResumeSignal.Emit( application );
244 }
245
246 void Application::OnReset()
247 {
248   /*
249    * usually, reset callback was called when a caller request to launch this application via aul.
250    * because Application class already handled initialization in OnInit(), OnReset do nothing.
251    */
252   Dali::Application application(this);
253   mResetSignal.Emit( application );
254
255   mWindow.Raise();
256 }
257
258 void Application::OnAppControl(void *data)
259 {
260   Dali::Application application(this);
261   mAppControlSignal.Emit( application , data );
262 }
263
264 void Application::OnLanguageChanged()
265 {
266   mAdaptor->NotifyLanguageChanged();
267   Dali::Application application(this);
268   mLanguageChangedSignal.Emit( application );
269 }
270
271 void Application::OnRegionChanged()
272 {
273   Dali::Application application(this);
274   mRegionChangedSignal.Emit( application );
275 }
276
277 void Application::OnBatteryLow()
278 {
279   Dali::Application application(this);
280   mBatteryLowSignal.Emit( application );
281 }
282
283 void Application::OnMemoryLow()
284 {
285   Dali::Application application(this);
286   mMemoryLowSignal.Emit( application );
287 }
288
289 void Application::OnResize(Dali::Adaptor& adaptor)
290 {
291   Dali::Application application(this);
292   mResizeSignal.Emit( application );
293 }
294
295 bool Application::AddIdle( CallbackBase* callback )
296 {
297   return mAdaptor->AddIdle( callback );
298 }
299
300 Dali::Adaptor& Application::GetAdaptor()
301 {
302   return *mAdaptor;
303 }
304
305 Dali::Window Application::GetWindow()
306 {
307   return mWindow;
308 }
309
310 // Stereoscopy
311
312 void Application::SetViewMode( ViewMode viewMode )
313 {
314   Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).SetViewMode( viewMode );
315 }
316
317 ViewMode Application::GetViewMode() const
318 {
319   return Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).GetViewMode();
320 }
321
322 void Application::SetStereoBase( float stereoBase )
323 {
324   Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).SetStereoBase( stereoBase );
325 }
326
327 float Application::GetStereoBase() const
328 {
329   return Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).GetStereoBase();
330 }
331
332
333 void Application::ReplaceWindow(PositionSize windowPosition, const std::string& name)
334 {
335   Dali::Window newWindow = Dali::Window::New( windowPosition, name, mWindowMode == Dali::Application::TRANSPARENT );
336   Window& windowImpl = GetImplementation(newWindow);
337   windowImpl.SetAdaptor(*mAdaptor);
338   newWindow.ShowIndicator(Dali::Window::INVISIBLE);
339   Dali::RenderSurface* renderSurface = windowImpl.GetSurface();
340
341   Any nativeWindow = newWindow.GetNativeHandle();
342   Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).ReplaceSurface(nativeWindow, *renderSurface);
343   mWindow = newWindow;
344 }
345
346 } // namespace Adaptor
347
348 } // namespace Internal
349
350 } // namespace Dali