c3cdd1e1e8e85fab31093e8c9ee45574867953d9
[platform/core/uifw/dali-adaptor.git] / adaptors / common / application-impl.cpp
1 /*
2  * Copyright (c) 2016 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   Framework::Type applicationType)
56 {
57   ApplicationPtr application ( new Application (argc, argv, stylesheet, windowMode, applicationType ) );
58   return application;
59 }
60
61 Application::Application( int* argc, char** argv[], const std::string& stylesheet,
62   Dali::Application::WINDOW_MODE windowMode, Framework::Type applicationType )
63 : mInitSignal(),
64   mTerminateSignal(),
65   mPauseSignal(),
66   mResumeSignal(),
67   mResetSignal(),
68   mResizeSignal(),
69   mAppControlSignal(),
70   mLanguageChangedSignal(),
71   mRegionChangedSignal(),
72   mBatteryLowSignal(),
73   mMemoryLowSignal(),
74   mEventLoop( NULL ),
75   mFramework( NULL ),
76   mContextLossConfiguration( Configuration::APPLICATION_DOES_NOT_HANDLE_CONTEXT_LOSS ),
77   mCommandLineOptions( NULL ),
78   mSingletonService( SingletonService::New() ),
79   mAdaptor( NULL ),
80   mWindow(),
81   mWindowMode( windowMode ),
82   mName(),
83   mStylesheet( stylesheet ),
84   mEnvironmentOptions(),
85   mSlotDelegate( this )
86 {
87   // Get mName from environment options
88   mName = mEnvironmentOptions.GetWindowName();
89   if( mName.empty() && argc && ( *argc > 0 ) )
90   {
91     // Set mName from command-line args if environment option not set
92     mName = (*argv)[0];
93   }
94
95   mCommandLineOptions = new CommandLineOptions(argc, argv);
96   mFramework = new Framework( *this, argc, argv, applicationType );
97   mUseRemoteSurface = (applicationType == Framework::WATCH);
98 }
99
100 Application::~Application()
101 {
102   mSingletonService.UnregisterAll();
103
104   delete mFramework;
105   delete mCommandLineOptions;
106   delete mAdaptor;
107   mWindow.Reset();
108 }
109
110 void Application::CreateWindow()
111 {
112   PositionSize windowPosition(0, 0, 0, 0);  // this will use full screen
113
114   if( mCommandLineOptions->stageWidth > 0 && mCommandLineOptions->stageHeight > 0 )
115   {
116     // Command line options override environment options and full screen
117     windowPosition = PositionSize( 0, 0, mCommandLineOptions->stageWidth, mCommandLineOptions->stageHeight );
118   }
119   else if( mEnvironmentOptions.GetWindowWidth() && mEnvironmentOptions.GetWindowHeight() )
120   {
121     // Environment options override full screen functionality if command line arguments not provided
122     windowPosition = PositionSize( 0, 0, mEnvironmentOptions.GetWindowWidth(), mEnvironmentOptions.GetWindowHeight() );
123   }
124
125   const std::string& windowClassName = mEnvironmentOptions.GetWindowClassName();
126   mWindow = Dali::Window::New( windowPosition, mName, windowClassName, mWindowMode == Dali::Application::TRANSPARENT );
127
128   // Quit the application when the window is closed
129   GetImplementation( mWindow ).DeleteRequestSignal().Connect( mSlotDelegate, &Application::Quit );
130 }
131
132 void Application::CreateAdaptor()
133 {
134   DALI_ASSERT_ALWAYS( mWindow && "Window required to create adaptor" );
135
136   mAdaptor = Dali::Internal::Adaptor::Adaptor::New( mWindow, mContextLossConfiguration, &mEnvironmentOptions );
137
138   mAdaptor->ResizedSignal().Connect( mSlotDelegate, &Application::OnResize );
139
140   Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).SetUseRemoteSurface( mUseRemoteSurface );
141 }
142
143 void Application::MainLoop(Dali::Configuration::ContextLoss configuration)
144 {
145   mContextLossConfiguration = configuration;
146
147   // Run the application
148   mFramework->Run();
149 }
150
151 void Application::Lower()
152 {
153   // Lower the application without quitting it.
154   mWindow.Lower();
155 }
156
157 void Application::Quit()
158 {
159   // Actually quit the application.
160   AddIdle( MakeCallback( this, &Application::QuitFromMainLoop ) );
161 }
162
163 void Application::QuitFromMainLoop()
164 {
165   mAdaptor->Stop();
166
167   mFramework->Quit();
168   // This will trigger OnTerminate(), below, after the main loop has completed.
169 }
170
171 void Application::OnInit()
172 {
173   mFramework->AddAbortCallback( MakeCallback( this, &Application::QuitFromMainLoop ) );
174
175   CreateWindow();
176   CreateAdaptor();
177
178   // Run the adaptor
179   mAdaptor->Start();
180
181   // Check if user requires no vsyncing and set on X11 Adaptor
182   if (mCommandLineOptions->noVSyncOnRender)
183   {
184     mAdaptor->SetUseHardwareVSync(false);
185   }
186
187   Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).SetStereoBase( mCommandLineOptions->stereoBase );
188   if( mCommandLineOptions->viewMode != 0 )
189   {
190     ViewMode viewMode = MONO;
191     if( mCommandLineOptions->viewMode <= STEREO_INTERLACED )
192     {
193       viewMode = static_cast<ViewMode>( mCommandLineOptions->viewMode );
194     }
195     Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).SetViewMode( viewMode );
196   }
197
198   if( ! mStylesheet.empty() )
199   {
200     Dali::StyleMonitor::Get().SetTheme( mStylesheet );
201   }
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   Dali::Application application(this);
226   mTerminateSignal.Emit( application );
227
228   if( mAdaptor )
229   {
230     // Ensure that the render-thread is not using the surface(window) after we delete it
231     mAdaptor->Stop();
232   }
233
234   mWindow.Reset();
235 }
236
237 void Application::OnPause()
238 {
239   mAdaptor->Pause();
240   Dali::Application application(this);
241   mPauseSignal.Emit( application );
242 }
243
244 void Application::OnResume()
245 {
246   // Emit the signal first so the application can queue any messages before we do an update/render
247   // This ensures we do not just redraw the last frame before pausing if that's not required
248   Dali::Application application(this);
249   mResumeSignal.Emit( application );
250   mAdaptor->Resume();
251 }
252
253 void Application::OnReset()
254 {
255   /*
256    * usually, reset callback was called when a caller request to launch this application via aul.
257    * because Application class already handled initialization in OnInit(), OnReset do nothing.
258    */
259   Dali::Application application(this);
260   mResetSignal.Emit( application );
261 }
262
263 void Application::OnAppControl(void *data)
264 {
265   Dali::Application application(this);
266   mAppControlSignal.Emit( application , data );
267 }
268
269 void Application::OnLanguageChanged()
270 {
271   mAdaptor->NotifyLanguageChanged();
272   Dali::Application application(this);
273   mLanguageChangedSignal.Emit( application );
274 }
275
276 void Application::OnRegionChanged()
277 {
278   Dali::Application application(this);
279   mRegionChangedSignal.Emit( application );
280 }
281
282 void Application::OnBatteryLow()
283 {
284   Dali::Application application(this);
285   mBatteryLowSignal.Emit( application );
286 }
287
288 void Application::OnMemoryLow()
289 {
290   Dali::Application application(this);
291   mMemoryLowSignal.Emit( application );
292 }
293
294 void Application::OnResize(Dali::Adaptor& adaptor)
295 {
296   Dali::Application application(this);
297   mResizeSignal.Emit( application );
298 }
299
300 bool Application::AddIdle( CallbackBase* callback )
301 {
302   return mAdaptor->AddIdle( callback );
303 }
304
305 Dali::Adaptor& Application::GetAdaptor()
306 {
307   return *mAdaptor;
308 }
309
310 Dali::Window Application::GetWindow()
311 {
312   return mWindow;
313 }
314
315 // Stereoscopy
316
317 void Application::SetViewMode( ViewMode viewMode )
318 {
319   Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).SetViewMode( viewMode );
320 }
321
322 ViewMode Application::GetViewMode() const
323 {
324   return Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).GetViewMode();
325 }
326
327 void Application::SetStereoBase( float stereoBase )
328 {
329   Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).SetStereoBase( stereoBase );
330 }
331
332 float Application::GetStereoBase() const
333 {
334   return Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).GetStereoBase();
335 }
336
337
338 void Application::ReplaceWindow(PositionSize windowPosition, const std::string& name)
339 {
340   Dali::Window newWindow = Dali::Window::New( windowPosition, name, mWindowMode == Dali::Application::TRANSPARENT );
341   Window& windowImpl = GetImplementation(newWindow);
342   windowImpl.SetAdaptor(*mAdaptor);
343   newWindow.ShowIndicator(Dali::Window::INVISIBLE);
344   Dali::RenderSurface* renderSurface = windowImpl.GetSurface();
345
346   Any nativeWindow = newWindow.GetNativeHandle();
347   Internal::Adaptor::Adaptor::GetImplementation( *mAdaptor ).ReplaceSurface(nativeWindow, *renderSurface);
348   mWindow = newWindow;
349 }
350
351 } // namespace Adaptor
352
353 } // namespace Internal
354
355 } // namespace Dali