2 * Copyright (c) 2021 Samsung Electronics Co., Ltd.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 #include <dali/internal/adaptor/common/adaptor-builder-impl.h>
20 #include <dali/internal/adaptor/common/adaptor-impl.h>
21 #include <dali/internal/addons/common/addon-manager-factory.h>
22 #include <dali/internal/addons/common/addon-manager-impl.h>
25 #include <dali/devel-api/actors/actor-devel.h>
26 #include <dali/devel-api/common/stage.h>
27 #include <dali/integration-api/addon-manager.h>
28 #include <dali/integration-api/context-notifier.h>
29 #include <dali/integration-api/core.h>
30 #include <dali/integration-api/debug.h>
31 #include <dali/integration-api/events/key-event-integ.h>
32 #include <dali/integration-api/events/touch-event-integ.h>
33 #include <dali/integration-api/events/wheel-event-integ.h>
34 #include <dali/integration-api/input-options.h>
35 #include <dali/integration-api/processor-interface.h>
36 #include <dali/integration-api/profiling.h>
37 #include <dali/public-api/actors/layer.h>
38 #include <dali/public-api/events/wheel-event.h>
39 #include <dali/public-api/object/any.h>
40 #include <dali/public-api/object/object-registry.h>
45 #include <dali/internal/adaptor/common/lifecycle-observer.h>
46 #include <dali/internal/adaptor/common/thread-controller-interface.h>
47 #include <dali/internal/system/common/performance-interface-factory.h>
48 #include <dali/internal/system/common/thread-controller.h>
49 #include <dali/public-api/dali-adaptor-common.h>
51 #include <dali/internal/graphics/gles/egl-graphics-factory.h>
52 #include <dali/internal/graphics/gles/egl-graphics.h> // Temporary until Core is abstracted
54 #include <dali/devel-api/text-abstraction/font-client.h>
56 #include <dali/internal/accessibility/common/tts-player-impl.h>
57 #include <dali/internal/clipboard/common/clipboard-impl.h>
58 #include <dali/internal/graphics/common/egl-image-extensions.h>
59 #include <dali/internal/graphics/gles/egl-sync-implementation.h>
60 #include <dali/internal/graphics/gles/gl-implementation.h>
61 #include <dali/internal/graphics/gles/gl-proxy-implementation.h>
62 #include <dali/internal/system/common/callback-manager.h>
63 #include <dali/internal/system/common/object-profiler.h>
64 #include <dali/internal/window-system/common/display-connection.h>
65 #include <dali/internal/window-system/common/display-utils.h> // For Utils::MakeUnique
66 #include <dali/internal/window-system/common/event-handler.h>
67 #include <dali/internal/window-system/common/window-impl.h>
68 #include <dali/internal/window-system/common/window-render-surface.h>
70 #include <dali/devel-api/adaptor-framework/accessibility-impl.h>
71 #include <dali/internal/system/common/logging.h>
73 #include <dali/internal/imaging/common/image-loader-plugin-proxy.h>
74 #include <dali/internal/imaging/common/image-loader.h>
75 #include <dali/internal/system/common/locale-utils.h>
77 #include <dali/internal/system/common/configuration-manager.h>
78 #include <dali/internal/system/common/environment-variables.h>
80 using Dali::TextAbstraction::FontClient;
82 extern std::string GetSystemCachePath();
92 thread_local Adaptor* gThreadLocalAdaptor = NULL; // raw thread specific pointer to allow Adaptor::Get
94 } // unnamed namespace
96 Dali::Adaptor* Adaptor::New(Dali::Integration::SceneHolder window, Dali::RenderSurfaceInterface* surface, EnvironmentOptions* environmentOptions, ThreadMode threadMode)
98 Dali::Adaptor* adaptor = new Dali::Adaptor;
99 Adaptor* impl = new Adaptor(window, *adaptor, surface, environmentOptions, threadMode);
100 adaptor->mImpl = impl;
102 Dali::Internal::Adaptor::AdaptorBuilder* mAdaptorBuilder = new AdaptorBuilder(*(impl->mEnvironmentOptions));
103 auto graphicsFactory = mAdaptorBuilder->GetGraphicsFactory();
105 impl->Initialize(graphicsFactory);
106 delete mAdaptorBuilder; // Not needed anymore as the graphics interface has now been created
111 Dali::Adaptor* Adaptor::New(Dali::Integration::SceneHolder window, EnvironmentOptions* environmentOptions)
113 Internal::Adaptor::SceneHolder& windowImpl = Dali::GetImplementation(window);
114 Dali::Adaptor* adaptor = New(window, windowImpl.GetSurface(), environmentOptions, ThreadMode::NORMAL);
115 windowImpl.SetAdaptor(*adaptor);
119 Dali::Adaptor* Adaptor::New(GraphicsFactory& graphicsFactory, Dali::Integration::SceneHolder window, Dali::RenderSurfaceInterface* surface, EnvironmentOptions* environmentOptions, ThreadMode threadMode)
121 Dali::Adaptor* adaptor = new Dali::Adaptor; // Public adaptor
122 Adaptor* impl = new Adaptor(window, *adaptor, surface, environmentOptions, threadMode); // Impl adaptor
123 adaptor->mImpl = impl;
125 impl->Initialize(graphicsFactory);
130 Dali::Adaptor* Adaptor::New(GraphicsFactory& graphicsFactory, Dali::Integration::SceneHolder window, EnvironmentOptions* environmentOptions)
132 Internal::Adaptor::SceneHolder& windowImpl = Dali::GetImplementation(window);
133 Dali::Adaptor* adaptor = New(graphicsFactory, window, windowImpl.GetSurface(), environmentOptions, ThreadMode::NORMAL);
134 windowImpl.SetAdaptor(*adaptor);
138 void Adaptor::Initialize(GraphicsFactory& graphicsFactory)
140 // all threads here (event, update, and render) will send their logs to TIZEN Platform's LogMessage handler.
141 Dali::Integration::Log::LogFunction logFunction(Dali::TizenPlatform::LogMessage);
142 mEnvironmentOptions->SetLogFunction(logFunction);
143 mEnvironmentOptions->InstallLogFunction(); // install logging for main thread
145 mPlatformAbstraction = new TizenPlatform::TizenPlatformAbstraction;
148 GetDataStoragePath(path);
149 mPlatformAbstraction->SetDataStoragePath(path);
151 if(mEnvironmentOptions->PerformanceServerRequired())
153 mPerformanceInterface = PerformanceInterfaceFactory::CreateInterface(*this, *mEnvironmentOptions);
156 mEnvironmentOptions->CreateTraceManager(mPerformanceInterface);
157 mEnvironmentOptions->InstallTraceFunction(); // install tracing for main thread
159 mCallbackManager = CallbackManager::New();
161 Dali::Internal::Adaptor::SceneHolder* defaultWindow = mWindows.front();
163 DALI_ASSERT_DEBUG(defaultWindow->GetSurface() && "Surface not initialized");
165 mGraphics = std::unique_ptr<GraphicsInterface>(&graphicsFactory.Create());
167 // Create the AddOnManager
168 mAddOnManager.reset(Dali::Internal::AddOnManagerFactory::CreateAddOnManager());
170 mCore = Integration::Core::New(*this,
171 *mPlatformAbstraction,
172 mGraphics->GetController(),
173 (0u != mEnvironmentOptions->GetRenderToFboInterval()) ? Integration::RenderToFrameBuffer::TRUE : Integration::RenderToFrameBuffer::FALSE,
174 mGraphics->GetDepthBufferRequired(),
175 mGraphics->GetStencilBufferRequired(),
176 mGraphics->GetPartialUpdateRequired());
178 defaultWindow->SetAdaptor(Get());
180 Dali::Integration::SceneHolder defaultSceneHolder(defaultWindow);
182 mWindowCreatedSignal.Emit(defaultSceneHolder);
184 const unsigned int timeInterval = mEnvironmentOptions->GetObjectProfilerInterval();
185 if(0u < timeInterval)
187 mObjectProfiler = new ObjectProfiler(mCore->GetObjectRegistry(), timeInterval);
190 mNotificationTrigger = TriggerEventFactory::CreateTriggerEvent(MakeCallback(this, &Adaptor::ProcessCoreEvents), TriggerEventInterface::KEEP_ALIVE_AFTER_TRIGGER);
192 mDisplayConnection = Dali::DisplayConnection::New(*mGraphics, defaultWindow->GetSurface()->GetSurfaceType());
194 mThreadController = new ThreadController(*this, *mEnvironmentOptions, mThreadMode);
196 // Should be called after Core creation
197 if(mEnvironmentOptions->GetPanGestureLoggingLevel())
199 Integration::EnableProfiling(Dali::Integration::PROFILING_TYPE_PAN_GESTURE);
201 if(mEnvironmentOptions->GetPanGesturePredictionMode() >= 0)
203 Integration::SetPanGesturePredictionMode(mEnvironmentOptions->GetPanGesturePredictionMode());
205 if(mEnvironmentOptions->GetPanGesturePredictionAmount() >= 0)
207 Integration::SetPanGesturePredictionAmount(mEnvironmentOptions->GetPanGesturePredictionAmount());
209 if(mEnvironmentOptions->GetPanGestureMaximumPredictionAmount() >= 0)
211 Integration::SetPanGestureMaximumPredictionAmount(mEnvironmentOptions->GetPanGestureMaximumPredictionAmount());
213 if(mEnvironmentOptions->GetPanGestureMinimumPredictionAmount() >= 0)
215 Integration::SetPanGestureMinimumPredictionAmount(mEnvironmentOptions->GetPanGestureMinimumPredictionAmount());
217 if(mEnvironmentOptions->GetPanGesturePredictionAmountAdjustment() >= 0)
219 Integration::SetPanGesturePredictionAmountAdjustment(mEnvironmentOptions->GetPanGesturePredictionAmountAdjustment());
221 if(mEnvironmentOptions->GetPanGestureSmoothingMode() >= 0)
223 Integration::SetPanGestureSmoothingMode(mEnvironmentOptions->GetPanGestureSmoothingMode());
225 if(mEnvironmentOptions->GetPanGestureSmoothingAmount() >= 0.0f)
227 Integration::SetPanGestureSmoothingAmount(mEnvironmentOptions->GetPanGestureSmoothingAmount());
229 if(mEnvironmentOptions->GetPanGestureUseActualTimes() >= 0)
231 Integration::SetPanGestureUseActualTimes(mEnvironmentOptions->GetPanGestureUseActualTimes() == 0 ? true : false);
233 if(mEnvironmentOptions->GetPanGestureInterpolationTimeRange() >= 0)
235 Integration::SetPanGestureInterpolationTimeRange(mEnvironmentOptions->GetPanGestureInterpolationTimeRange());
237 if(mEnvironmentOptions->GetPanGestureScalarOnlyPredictionEnabled() >= 0)
239 Integration::SetPanGestureScalarOnlyPredictionEnabled(mEnvironmentOptions->GetPanGestureScalarOnlyPredictionEnabled() == 0 ? true : false);
241 if(mEnvironmentOptions->GetPanGestureTwoPointPredictionEnabled() >= 0)
243 Integration::SetPanGestureTwoPointPredictionEnabled(mEnvironmentOptions->GetPanGestureTwoPointPredictionEnabled() == 0 ? true : false);
245 if(mEnvironmentOptions->GetPanGestureTwoPointInterpolatePastTime() >= 0)
247 Integration::SetPanGestureTwoPointInterpolatePastTime(mEnvironmentOptions->GetPanGestureTwoPointInterpolatePastTime());
249 if(mEnvironmentOptions->GetPanGestureTwoPointVelocityBias() >= 0.0f)
251 Integration::SetPanGestureTwoPointVelocityBias(mEnvironmentOptions->GetPanGestureTwoPointVelocityBias());
253 if(mEnvironmentOptions->GetPanGestureTwoPointAccelerationBias() >= 0.0f)
255 Integration::SetPanGestureTwoPointAccelerationBias(mEnvironmentOptions->GetPanGestureTwoPointAccelerationBias());
257 if(mEnvironmentOptions->GetPanGestureMultitapSmoothingRange() >= 0)
259 Integration::SetPanGestureMultitapSmoothingRange(mEnvironmentOptions->GetPanGestureMultitapSmoothingRange());
261 if(mEnvironmentOptions->GetMinimumPanDistance() >= 0)
263 Integration::SetPanGestureMinimumDistance(mEnvironmentOptions->GetMinimumPanDistance());
265 if(mEnvironmentOptions->GetMinimumPanEvents() >= 0)
267 Integration::SetPanGestureMinimumPanEvents(mEnvironmentOptions->GetMinimumPanEvents());
269 if(mEnvironmentOptions->GetMinimumPinchDistance() >= 0)
271 Integration::SetPinchGestureMinimumDistance(mEnvironmentOptions->GetMinimumPinchDistance());
273 if(mEnvironmentOptions->GetMinimumPinchTouchEvents() >= 0)
275 Integration::SetPinchGestureMinimumTouchEvents(mEnvironmentOptions->GetMinimumPinchTouchEvents());
277 if(mEnvironmentOptions->GetMinimumPinchTouchEventsAfterStart() >= 0)
279 Integration::SetPinchGestureMinimumTouchEventsAfterStart(mEnvironmentOptions->GetMinimumPinchTouchEventsAfterStart());
281 if(mEnvironmentOptions->GetMinimumRotationTouchEvents() >= 0)
283 Integration::SetRotationGestureMinimumTouchEvents(mEnvironmentOptions->GetMinimumRotationTouchEvents());
285 if(mEnvironmentOptions->GetMinimumRotationTouchEventsAfterStart() >= 0)
287 Integration::SetRotationGestureMinimumTouchEventsAfterStart(mEnvironmentOptions->GetMinimumRotationTouchEventsAfterStart());
289 if(mEnvironmentOptions->GetLongPressMinimumHoldingTime() >= 0)
291 Integration::SetLongPressMinimumHoldingTime(mEnvironmentOptions->GetLongPressMinimumHoldingTime());
293 if(mEnvironmentOptions->GetTapMaximumAllowedTime() > 0)
295 Integration::SetTapMaximumAllowedTime(mEnvironmentOptions->GetTapMaximumAllowedTime());
299 std::string systemCachePath = GetSystemCachePath();
300 if(!systemCachePath.empty())
302 const int dir_err = mkdir(systemCachePath.c_str(), S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
303 if(0 != dir_err && errno != EEXIST)
305 DALI_LOG_ERROR("Error creating system cache directory: %s!\n", systemCachePath.c_str());
310 mConfigurationManager = Utils::MakeUnique<ConfigurationManager>(systemCachePath, mGraphics.get(), mThreadController);
313 void Adaptor::AccessibilityObserver::OnAccessibleKeyEvent(const Dali::KeyEvent& event)
315 Accessibility::KeyEventType type;
316 if(event.GetState() == Dali::KeyEvent::DOWN)
318 type = Accessibility::KeyEventType::KEY_PRESSED;
320 else if(event.GetState() == Dali::KeyEvent::UP)
322 type = Accessibility::KeyEventType::KEY_RELEASED;
328 Dali::Accessibility::Bridge::GetCurrentBridge()->Emit(type, event.GetKeyCode(), event.GetKeyName(), event.GetTime(), !event.GetKeyString().empty());
333 Accessibility::Bridge::GetCurrentBridge()->Terminate();
335 // Ensure stop status
338 // set to NULL first as we do not want any access to Adaptor as it is being destroyed.
339 gThreadLocalAdaptor = NULL;
341 for(ObserverContainer::iterator iter = mObservers.begin(), endIter = mObservers.end(); iter != endIter; ++iter)
343 (*iter)->OnDestroy();
346 // Clear out all the handles to Windows
349 delete mThreadController; // this will shutdown render thread, which will call Core::ContextDestroyed before exit
350 delete mObjectProfiler;
354 delete mDisplayConnection;
355 delete mPlatformAbstraction;
356 delete mCallbackManager;
357 delete mPerformanceInterface;
359 mGraphics->Destroy();
361 // uninstall it on this thread (main actor thread)
362 Dali::Integration::Log::UninstallLogFunction();
364 // Delete environment options if we own it
365 if(mEnvironmentOptionsOwned)
367 delete mEnvironmentOptions;
371 void Adaptor::Start()
373 // It doesn't support restart after stop at this moment to support restarting, need more testing
381 SetupSystemInformation();
383 // Start the callback manager
384 mCallbackManager->Start();
386 // Initialize accessibility bridge after callback manager is started to use Idler callback
387 auto appName = GetApplicationPackageName();
388 auto bridge = Accessibility::Bridge::GetCurrentBridge();
389 bridge->SetApplicationName(appName);
390 bridge->Initialize();
391 Dali::Stage::GetCurrent().KeyEventSignal().Connect(&mAccessibilityObserver, &AccessibilityObserver::OnAccessibleKeyEvent);
393 Dali::Internal::Adaptor::SceneHolder* defaultWindow = mWindows.front();
395 unsigned int dpiHor, dpiVer;
398 defaultWindow->GetSurface()->GetDpi(dpiHor, dpiVer);
400 // set the DPI value for font rendering
401 FontClient fontClient = FontClient::Get();
402 fontClient.SetDpi(dpiHor, dpiVer);
404 // Initialize the thread controller
405 mThreadController->Initialize();
407 // Set max texture size
408 if(mEnvironmentOptions->GetMaxTextureSize() > 0)
410 Dali::TizenPlatform::ImageLoader::SetMaxTextureSize(mEnvironmentOptions->GetMaxTextureSize());
414 unsigned int maxTextureSize = mConfigurationManager->GetMaxTextureSize();
415 Dali::TizenPlatform::ImageLoader::SetMaxTextureSize(maxTextureSize);
418 // cache advanced blending and shader language version
419 mGraphics->CacheConfigurations(*mConfigurationManager.get());
421 ProcessCoreEvents(); // Ensure any startup messages are processed.
423 // Initialize the image loader plugin
424 Internal::Adaptor::ImageLoaderPluginProxy::Initialize();
426 for(ObserverContainer::iterator iter = mObservers.begin(), endIter = mObservers.end(); iter != endIter; ++iter)
433 mAddOnManager->Start();
437 // Dali::Internal::Adaptor::Adaptor::Pause
438 void Adaptor::Pause()
440 // Only pause the adaptor if we're actually running.
441 if(RUNNING == mState)
443 // Inform observers that we are about to be paused.
444 for(ObserverContainer::iterator iter = mObservers.begin(), endIter = mObservers.end(); iter != endIter; ++iter)
452 mAddOnManager->Pause();
455 // Pause all windows event handlers when adaptor paused
456 for(auto window : mWindows)
461 mThreadController->Pause();
464 // Ensure any messages queued during pause callbacks are processed by doing another update.
467 DALI_LOG_RELEASE_INFO("Adaptor::Pause: Paused\n");
471 DALI_LOG_RELEASE_INFO("Adaptor::Pause: Not paused [%d]\n", mState);
475 // Dali::Internal::Adaptor::Adaptor::Resume
476 void Adaptor::Resume()
478 // Only resume the adaptor if we are in the suspended state.
483 // Reset the event handlers when adaptor resumed
484 for(auto window : mWindows)
489 // Resume AddOnManager
492 mAddOnManager->Resume();
495 // Inform observers that we have resumed.
496 for(ObserverContainer::iterator iter = mObservers.begin(), endIter = mObservers.end(); iter != endIter; ++iter)
501 // Trigger processing of events queued up while paused
502 mCore->ProcessEvents();
504 // Do at end to ensure our first update/render after resumption includes the processed messages as well
505 mThreadController->Resume();
507 DALI_LOG_RELEASE_INFO("Adaptor::Resume: Resumed\n");
511 DALI_LOG_RELEASE_INFO("Adaptor::Resume: Not resumed [%d]\n", mState);
517 if(RUNNING == mState ||
519 PAUSED_WHILE_HIDDEN == mState)
521 for(ObserverContainer::iterator iter = mObservers.begin(), endIter = mObservers.end(); iter != endIter; ++iter)
528 mAddOnManager->Stop();
531 mThreadController->Stop();
533 // Delete the TTS player
534 for(int i = 0; i < Dali::TtsPlayer::MODE_NUM; i++)
538 mTtsPlayers[i].Reset();
542 // Destroy the image loader plugin
543 Internal::Adaptor::ImageLoaderPluginProxy::Destroy();
545 delete mNotificationTrigger;
546 mNotificationTrigger = NULL;
548 mCallbackManager->Stop();
552 DALI_LOG_RELEASE_INFO("Adaptor::Stop\n");
556 void Adaptor::ContextLost()
558 mCore->GetContextNotifier()->NotifyContextLost(); // Inform stage
561 void Adaptor::ContextRegained()
563 // Inform core, so that texture resources can be reloaded
564 mCore->RecoverFromContextLoss();
566 mCore->GetContextNotifier()->NotifyContextRegained(); // Inform stage
569 void Adaptor::FeedTouchPoint(TouchPoint& point, int timeStamp)
571 Integration::Point convertedPoint(point);
572 mWindows.front()->FeedTouchPoint(convertedPoint, timeStamp);
575 void Adaptor::FeedWheelEvent(Dali::WheelEvent& wheelEvent)
577 Integration::WheelEvent event(static_cast<Integration::WheelEvent::Type>(wheelEvent.GetType()), wheelEvent.GetDirection(), wheelEvent.GetModifiers(), wheelEvent.GetPoint(), wheelEvent.GetDelta(), wheelEvent.GetTime());
578 mWindows.front()->FeedWheelEvent(event);
581 void Adaptor::FeedKeyEvent(Dali::KeyEvent& keyEvent)
583 Integration::KeyEvent convertedEvent(keyEvent.GetKeyName(), keyEvent.GetLogicalKey(), keyEvent.GetKeyString(), keyEvent.GetKeyCode(), keyEvent.GetKeyModifier(), keyEvent.GetTime(), static_cast<Integration::KeyEvent::State>(keyEvent.GetState()), keyEvent.GetCompose(), keyEvent.GetDeviceName(), keyEvent.GetDeviceClass(), keyEvent.GetDeviceSubclass());
584 mWindows.front()->FeedKeyEvent(convertedEvent);
587 void Adaptor::ReplaceSurface(Dali::Integration::SceneHolder window, Dali::RenderSurfaceInterface& newSurface)
589 Internal::Adaptor::SceneHolder* windowImpl = &Dali::GetImplementation(window);
590 for(auto windowPtr : mWindows)
592 if(windowPtr == windowImpl) // the window is not deleted
594 mResizedSignal.Emit(mAdaptor);
596 windowImpl->SetSurface(&newSurface);
598 // Flush the event queue to give the update-render thread chance
599 // to start processing messages for new camera setup etc as soon as possible
602 // This method blocks until the render thread has completed the replace.
603 mThreadController->ReplaceSurface(&newSurface);
609 void Adaptor::DeleteSurface(Dali::RenderSurfaceInterface& surface)
611 // Flush the event queue to give the update-render thread chance
612 // to start processing messages for new camera setup etc as soon as possible
615 // This method blocks until the render thread has finished rendering the current surface.
616 mThreadController->DeleteSurface(&surface);
619 Dali::RenderSurfaceInterface& Adaptor::GetSurface() const
621 return *mWindows.front()->GetSurface();
624 void Adaptor::ReleaseSurfaceLock()
626 mWindows.front()->GetSurface()->ReleaseLock();
629 Dali::TtsPlayer Adaptor::GetTtsPlayer(Dali::TtsPlayer::Mode mode)
631 if(!mTtsPlayers[mode])
633 // Create the TTS player when it needed, because it can reduce launching time.
634 mTtsPlayers[mode] = TtsPlayer::New(mode);
637 return mTtsPlayers[mode];
640 bool Adaptor::AddIdle(CallbackBase* callback, bool hasReturnValue, bool forceAdd)
642 bool idleAdded(false);
644 // Only add an idle if the Adaptor is actually running
645 if(RUNNING == mState || READY == mState || forceAdd)
647 idleAdded = mCallbackManager->AddIdleCallback(callback, hasReturnValue);
653 void Adaptor::RemoveIdle(CallbackBase* callback)
655 mCallbackManager->RemoveIdleCallback(callback);
658 void Adaptor::ProcessIdle()
660 bool idleProcessed = mCallbackManager->ProcessIdle();
661 mNotificationOnIdleInstalled = mNotificationOnIdleInstalled && !idleProcessed;
664 void Adaptor::SetPreRenderCallback(CallbackBase* callback)
666 mThreadController->SetPreRenderCallback(callback);
669 bool Adaptor::AddWindow(Dali::Integration::SceneHolder childWindow)
671 Internal::Adaptor::SceneHolder& windowImpl = Dali::GetImplementation(childWindow);
672 windowImpl.SetAdaptor(Get());
674 // ChildWindow is set to the layout direction of the default window.
675 windowImpl.GetRootLayer().SetProperty(Dali::Actor::Property::LAYOUT_DIRECTION, mRootLayoutDirection);
677 // Add the new Window to the container - the order is not important
678 mWindows.push_back(&windowImpl);
680 Dali::RenderSurfaceInterface* surface = windowImpl.GetSurface();
682 mThreadController->AddSurface(surface);
684 mWindowCreatedSignal.Emit(childWindow);
689 bool Adaptor::RemoveWindow(Dali::Integration::SceneHolder* childWindow)
691 Internal::Adaptor::SceneHolder& windowImpl = Dali::GetImplementation(*childWindow);
692 for(WindowContainer::iterator iter = mWindows.begin(); iter != mWindows.end(); ++iter)
694 if(*iter == &windowImpl)
696 mWindows.erase(iter);
704 bool Adaptor::RemoveWindow(std::string childWindowName)
706 for(WindowContainer::iterator iter = mWindows.begin(); iter != mWindows.end(); ++iter)
708 if((*iter)->GetName() == childWindowName)
710 mWindows.erase(iter);
718 bool Adaptor::RemoveWindow(Internal::Adaptor::SceneHolder* childWindow)
720 for(WindowContainer::iterator iter = mWindows.begin(); iter != mWindows.end(); ++iter)
722 if((*iter)->GetId() == childWindow->GetId())
724 mWindows.erase(iter);
732 Dali::Adaptor& Adaptor::Get()
734 DALI_ASSERT_ALWAYS(IsAvailable() && "Adaptor not instantiated");
735 return gThreadLocalAdaptor->mAdaptor;
738 bool Adaptor::IsAvailable()
740 return gThreadLocalAdaptor != NULL;
743 void Adaptor::SceneCreated()
745 mCore->SceneCreated();
748 Dali::Integration::Core& Adaptor::GetCore()
753 void Adaptor::SetRenderRefreshRate(unsigned int numberOfVSyncsPerRender)
755 mThreadController->SetRenderRefreshRate(numberOfVSyncsPerRender);
758 Dali::DisplayConnection& Adaptor::GetDisplayConnectionInterface()
760 DALI_ASSERT_DEBUG(mDisplayConnection && "Display connection not created");
761 return *mDisplayConnection;
764 GraphicsInterface& Adaptor::GetGraphicsInterface()
766 DALI_ASSERT_DEBUG(mGraphics && "Graphics interface not created");
767 return *(mGraphics.get());
770 Dali::Integration::PlatformAbstraction& Adaptor::GetPlatformAbstractionInterface()
772 return *mPlatformAbstraction;
775 TriggerEventInterface& Adaptor::GetProcessCoreEventsTrigger()
777 return *mNotificationTrigger;
780 SocketFactoryInterface& Adaptor::GetSocketFactoryInterface()
782 return mSocketFactory;
785 Dali::RenderSurfaceInterface* Adaptor::GetRenderSurfaceInterface()
787 if(!mWindows.empty())
789 return mWindows.front()->GetSurface();
795 TraceInterface& Adaptor::GetKernelTraceInterface()
797 return mKernelTracer;
800 TraceInterface& Adaptor::GetSystemTraceInterface()
802 return mSystemTracer;
805 PerformanceInterface* Adaptor::GetPerformanceInterface()
807 return mPerformanceInterface;
810 Integration::PlatformAbstraction& Adaptor::GetPlatformAbstraction() const
812 DALI_ASSERT_DEBUG(mPlatformAbstraction && "PlatformAbstraction not created");
813 return *mPlatformAbstraction;
816 void Adaptor::GetWindowContainerInterface(WindowContainer& windows)
821 void Adaptor::DestroyTtsPlayer(Dali::TtsPlayer::Mode mode)
823 if(mTtsPlayers[mode])
825 mTtsPlayers[mode].Reset();
829 Any Adaptor::GetNativeWindowHandle()
831 return mWindows.front()->GetNativeHandle();
834 Any Adaptor::GetNativeWindowHandle(Dali::Actor actor)
836 Any nativeWindowHandle;
838 Dali::Integration::Scene scene = Dali::Integration::Scene::Get(actor);
840 for(auto sceneHolder : mWindows)
842 if(scene == sceneHolder->GetScene())
844 nativeWindowHandle = sceneHolder->GetNativeHandle();
849 return nativeWindowHandle;
852 Any Adaptor::GetGraphicsDisplay()
858 GraphicsInterface* graphics = mGraphics.get(); // This interface is temporary until Core has been updated to match
859 auto eglGraphics = static_cast<EglGraphics*>(graphics);
861 EglImplementation& eglImpl = eglGraphics->GetEglImplementation();
862 display = eglImpl.GetDisplay();
868 void Adaptor::SetUseRemoteSurface(bool useRemoteSurface)
870 mUseRemoteSurface = useRemoteSurface;
873 void Adaptor::AddObserver(LifeCycleObserver& observer)
875 ObserverContainer::iterator match(find(mObservers.begin(), mObservers.end(), &observer));
877 if(match == mObservers.end())
879 mObservers.push_back(&observer);
883 void Adaptor::RemoveObserver(LifeCycleObserver& observer)
885 ObserverContainer::iterator match(find(mObservers.begin(), mObservers.end(), &observer));
887 if(match != mObservers.end())
889 mObservers.erase(match);
893 void Adaptor::QueueCoreEvent(const Dali::Integration::Event& event)
897 mCore->QueueEvent(event);
901 void Adaptor::ProcessCoreEvents()
905 if(mPerformanceInterface)
907 mPerformanceInterface->AddMarker(PerformanceInterface::PROCESS_EVENTS_START);
910 mCore->ProcessEvents();
912 if(mPerformanceInterface)
914 mPerformanceInterface->AddMarker(PerformanceInterface::PROCESS_EVENTS_END);
919 void Adaptor::RequestUpdate(bool forceUpdate)
925 mThreadController->RequestUpdate();
929 case PAUSED_WHILE_HIDDEN:
933 // Update (and resource upload) without rendering
934 mThreadController->RequestUpdateOnce(UpdateMode::SKIP_RENDER);
946 void Adaptor::RequestProcessEventsOnIdle(bool forceProcess)
948 // Only request a notification if the Adaptor is actually running
949 // and we haven't installed the idle notification
950 if((!mNotificationOnIdleInstalled) && (RUNNING == mState || READY == mState || forceProcess))
952 mNotificationOnIdleInstalled = AddIdleEnterer(MakeCallback(this, &Adaptor::ProcessCoreEventsFromIdle), forceProcess);
956 void Adaptor::OnWindowShown()
958 if(PAUSED_WHILE_HIDDEN == mState)
960 // Adaptor can now be resumed
965 // Force a render task
968 else if(RUNNING == mState)
970 // Force a render task
973 DALI_LOG_RELEASE_INFO("Adaptor::OnWindowShown: Update requested.\n");
975 else if(PAUSED_WHILE_INITIALIZING == mState)
977 // Change the state to READY again. It will be changed to RUNNING after the adaptor is started.
982 DALI_LOG_RELEASE_INFO("Adaptor::OnWindowShown: Adaptor is not paused state.[%d]\n", mState);
986 void Adaptor::OnWindowHidden()
988 if(RUNNING == mState || READY == mState)
990 bool allWindowsHidden = true;
992 for(auto window : mWindows)
994 if(window->IsVisible())
996 allWindowsHidden = false;
1001 // Only pause the adaptor when all the windows are hidden
1002 if(allWindowsHidden)
1004 if(mState == RUNNING)
1008 // Adaptor cannot be resumed until any window is shown
1009 mState = PAUSED_WHILE_HIDDEN;
1011 else // mState is READY
1013 // Pause the adaptor after the state gets RUNNING
1014 mState = PAUSED_WHILE_INITIALIZING;
1019 DALI_LOG_RELEASE_INFO("Adaptor::OnWindowHidden: Some windows are shown. Don't pause adaptor.\n");
1024 DALI_LOG_RELEASE_INFO("Adaptor::OnWindowHidden: Adaptor is not running state.[%d]\n", mState);
1028 // Dali::Internal::Adaptor::Adaptor::OnDamaged
1029 void Adaptor::OnDamaged(const DamageArea& area)
1031 // This is needed for the case where Dali window is partially obscured
1032 RequestUpdate(false);
1035 void Adaptor::SurfaceResizePrepare(Dali::RenderSurfaceInterface* surface, SurfaceSize surfaceSize)
1037 mResizedSignal.Emit(mAdaptor);
1040 void Adaptor::SurfaceResizeComplete(Dali::RenderSurfaceInterface* surface, SurfaceSize surfaceSize)
1042 // Nofify surface resizing before flushing event queue
1043 mThreadController->ResizeSurface();
1045 // Flush the event queue to give the update-render thread chance
1046 // to start processing messages for new camera setup etc as soon as possible
1047 ProcessCoreEvents();
1050 void Adaptor::NotifySceneCreated()
1052 GetCore().SceneCreated();
1054 // Flush the event queue to give the update-render thread chance
1055 // to start processing messages for new camera setup etc as soon as possible
1056 ProcessCoreEvents();
1058 // Start thread controller after the scene has been created
1059 mThreadController->Start();
1061 // Process after surface is created (registering to remote surface provider if required)
1062 SurfaceInitialized();
1064 if(mState != PAUSED_WHILE_INITIALIZING)
1068 DALI_LOG_RELEASE_INFO("Adaptor::NotifySceneCreated: Adaptor is running\n");
1076 mState = PAUSED_WHILE_HIDDEN;
1078 DALI_LOG_RELEASE_INFO("Adaptor::NotifySceneCreated: Adaptor is paused\n");
1082 void Adaptor::NotifyLanguageChanged()
1084 mLanguageChangedSignal.Emit(mAdaptor);
1087 void Adaptor::RenderOnce()
1089 if(mThreadController)
1091 UpdateMode updateMode;
1092 if(mThreadMode == ThreadMode::NORMAL)
1094 updateMode = UpdateMode::NORMAL;
1098 updateMode = UpdateMode::FORCE_RENDER;
1100 ProcessCoreEvents();
1102 mThreadController->RequestUpdateOnce(updateMode);
1106 const LogFactoryInterface& Adaptor::GetLogFactory()
1108 return *mEnvironmentOptions;
1111 void Adaptor::RegisterProcessor(Integration::Processor& processor, bool postProcessor)
1113 GetCore().RegisterProcessor(processor, postProcessor);
1116 void Adaptor::UnregisterProcessor(Integration::Processor& processor, bool postProcessor)
1118 GetCore().UnregisterProcessor(processor, postProcessor);
1121 bool Adaptor::IsMultipleWindowSupported() const
1123 return mConfigurationManager->IsMultipleWindowSupported();
1126 void Adaptor::RequestUpdateOnce()
1128 if(mThreadController)
1130 mThreadController->RequestUpdateOnce(UpdateMode::NORMAL);
1134 bool Adaptor::ProcessCoreEventsFromIdle()
1136 ProcessCoreEvents();
1138 // the idle handle automatically un-installs itself
1139 mNotificationOnIdleInstalled = false;
1144 Dali::Internal::Adaptor::SceneHolder* Adaptor::GetWindow(Dali::Actor& actor)
1146 Dali::Integration::Scene scene = Dali::Integration::Scene::Get(actor);
1148 for(auto window : mWindows)
1150 if(scene == window->GetScene())
1159 Dali::WindowContainer Adaptor::GetWindows() const
1161 Dali::WindowContainer windows;
1163 for(auto iter = mWindows.begin(); iter != mWindows.end(); ++iter)
1165 // Downcast to Dali::Window
1166 Dali::Window window(dynamic_cast<Dali::Internal::Adaptor::Window*>(*iter));
1169 windows.push_back(window);
1176 Dali::SceneHolderList Adaptor::GetSceneHolders() const
1178 Dali::SceneHolderList sceneHolderList;
1180 for(auto iter = mWindows.begin(); iter != mWindows.end(); ++iter)
1182 sceneHolderList.push_back(Dali::Integration::SceneHolder(*iter));
1185 return sceneHolderList;
1188 Dali::ObjectRegistry Adaptor::GetObjectRegistry() const
1190 Dali::ObjectRegistry registry;
1193 registry = mCore->GetObjectRegistry();
1198 Adaptor::Adaptor(Dali::Integration::SceneHolder window, Dali::Adaptor& adaptor, Dali::RenderSurfaceInterface* surface, EnvironmentOptions* environmentOptions, ThreadMode threadMode)
1200 mLanguageChangedSignal(),
1201 mWindowCreatedSignal(),
1205 mThreadController(nullptr),
1207 mDisplayConnection(nullptr),
1209 mConfigurationManager(nullptr),
1210 mPlatformAbstraction(nullptr),
1211 mCallbackManager(nullptr),
1212 mNotificationOnIdleInstalled(false),
1213 mNotificationTrigger(nullptr),
1214 mDaliFeedbackPlugin(),
1215 mFeedbackController(nullptr),
1218 mEnvironmentOptions(environmentOptions ? environmentOptions : new EnvironmentOptions /* Create the options if not provided */),
1219 mPerformanceInterface(nullptr),
1222 mObjectProfiler(nullptr),
1224 mThreadMode(threadMode),
1225 mEnvironmentOptionsOwned(environmentOptions ? false : true /* If not provided then we own the object */),
1226 mUseRemoteSurface(false),
1227 mRootLayoutDirection(Dali::LayoutDirection::LEFT_TO_RIGHT)
1229 DALI_ASSERT_ALWAYS(!IsAvailable() && "Cannot create more than one Adaptor per thread");
1230 mWindows.insert(mWindows.begin(), &Dali::GetImplementation(window));
1232 gThreadLocalAdaptor = this;
1235 void Adaptor::SetRootLayoutDirection(std::string locale)
1237 mRootLayoutDirection = static_cast<LayoutDirection::Type>(Internal::Adaptor::Locale::GetDirection(std::string(locale)));
1238 for(auto& window : mWindows)
1240 Dali::Actor root = window->GetRootLayer();
1241 root.SetProperty(Dali::Actor::Property::LAYOUT_DIRECTION, mRootLayoutDirection);
1245 bool Adaptor::AddIdleEnterer(CallbackBase* callback, bool forceAdd)
1247 bool idleAdded(false);
1249 // Only add an idle if the Adaptor is actually running
1250 if(RUNNING == mState || READY == mState || forceAdd)
1252 idleAdded = mCallbackManager->AddIdleEntererCallback(callback);
1264 void Adaptor::RemoveIdleEnterer(CallbackBase* callback)
1266 mCallbackManager->RemoveIdleEntererCallback(callback);
1269 } // namespace Adaptor
1271 } // namespace Internal