X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=automated-tests%2Fsrc%2Fdali-toolkit%2Fdali-toolkit-test-utils%2Ftoolkit-adaptor.cpp;h=c675fef5f3c25e33698c3da9563070ec5a768ef9;hb=55b24ec2b71ef5819be7887e465a6b48d3bf65ee;hp=c9805017fa2709f9bf196d952925705f7c68d9df;hpb=d65d27692a440b8fb20b69668c32d365ee822320;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-adaptor.cpp b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-adaptor.cpp index c980501..c675fef 100644 --- a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-adaptor.cpp +++ b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-adaptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 Samsung Electronics Co., Ltd. + * Copyright (c) 2023 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,92 +15,229 @@ * */ -// CLASS HEADER -#include -#include +#include -#include +#include + +// Don't want to include the actual window.h which otherwise will be indirectly included by adaptor.h. +#define DALI_WINDOW_H +#include +#include -#include #include +#include #include -#include +#include +#include +#include namespace Dali { - namespace Internal { namespace Adaptor { +/////////////////////////////////////////////////////////////////////////////// +// +// Dali::Internal::Adaptor::Adaptor Stub +// +/////////////////////////////////////////////////////////////////////////////// -bool Adaptor::mAvailable = false; -Vector Adaptor::mCallbacks = Vector(); +Dali::Adaptor* gAdaptor = nullptr; + +Dali::Adaptor& Adaptor::New() +{ + DALI_ASSERT_ALWAYS(!gAdaptor); + gAdaptor = new Dali::Adaptor; + return *gAdaptor; +} Dali::Adaptor& Adaptor::Get() { - Dali::Adaptor* adaptor = new Dali::Adaptor; - Adaptor::mAvailable = true; - return *adaptor; + DALI_ASSERT_ALWAYS(gAdaptor); + return *gAdaptor; +} + +Adaptor::Adaptor() +{ +} + +Adaptor::~Adaptor() +{ + gAdaptor = nullptr; +} + +void Adaptor::Start(Dali::Window window) +{ + AddWindow(&GetImplementation(window)); +} + +Integration::Scene Adaptor::GetScene(Dali::Window window) +{ + return window.GetScene(); +} + +bool Adaptor::AddIdle(CallbackBase* callback, bool hasReturnValue) +{ + if(hasReturnValue) + { + mReturnCallbacks.PushBack(callback); + } + else + { + mCallbacks.PushBack(callback); + } + return true; +} + +void Adaptor::RemoveIdle(CallbackBase* callback) +{ + mCallbacks.Erase(std::remove_if(mCallbacks.Begin(), mCallbacks.End(), [&callback](CallbackBase* current) { return callback == current; }), mCallbacks.End()); + mReturnCallbacks.Erase(std::remove_if(mReturnCallbacks.Begin(), mReturnCallbacks.End(), [&callback](CallbackBase* current) { return callback == current; }), mReturnCallbacks.End()); +} + +void Adaptor::RunIdles() +{ + Dali::Vector reusedCallbacks; + for(auto& callback : mReturnCallbacks) + { + bool retValue = CallbackBase::ExecuteReturn(*callback); + if(retValue) + { + reusedCallbacks.PushBack(callback); + } + } + for(auto& callback : mCallbacks) + { + CallbackBase::Execute(*callback); + } + + mCallbacks.Clear(); + mReturnCallbacks.Clear(); + mReturnCallbacks.Swap(reusedCallbacks); } Dali::RenderSurfaceInterface& Adaptor::GetSurface() { - Dali::RenderSurfaceInterface* renderSurface = reinterpret_cast ( new Dali::TestRenderSurface( Dali::PositionSize( 0, 0, 480, 800 ) ) ); - return *renderSurface; + DALI_ASSERT_ALWAYS(!mWindows.empty()); + + return reinterpret_cast(mWindows.front()->GetRenderSurface()); } -Dali::Adaptor::AdaptorSignalType& Adaptor::AdaptorSignal() +Dali::WindowContainer Adaptor::GetWindows() { - Dali::Adaptor::AdaptorSignalType* signal = new Dali::Adaptor::AdaptorSignalType; - return *signal; + Dali::WindowContainer windows; + + for(auto iter = mWindows.begin(); iter != mWindows.end(); ++iter) + { + // Downcast to Dali::Window + Dali::Window window(dynamic_cast(*iter)); + if(window) + { + windows.push_back(window); + } + } + + return windows; } -} // namespace Adaptor -} // namespace Internal +Dali::SceneHolderList Adaptor::GetSceneHolders() +{ + Dali::SceneHolderList sceneHolderList; + + for(auto iter = mWindows.begin(); iter != mWindows.end(); ++iter) + { + sceneHolderList.push_back(Dali::Integration::SceneHolder(*iter)); + } + + return sceneHolderList; +} -Adaptor& Adaptor::New( Window window ) +Dali::Internal::Adaptor::SceneHolder* Adaptor::GetWindow(Dali::Actor& actor) { - return Internal::Adaptor::Adaptor::Get(); + Dali::Integration::Scene scene = Dali::Integration::Scene::Get(actor); + + for(auto window : mWindows) + { + if(scene == window->GetScene()) + { + return window; + } + } + + return nullptr; } -Adaptor& Adaptor::New( Window window, Configuration::ContextLoss configuration ) +void Adaptor::AddWindow(Internal::Adaptor::SceneHolder* window) { - return Internal::Adaptor::Adaptor::Get(); + if(window) + { + mWindows.push_back(window); + + Dali::Integration::SceneHolder newWindow(window); + mWindowCreatedSignal.Emit(newWindow); + } } -Adaptor& Adaptor::New( Window window, const Dali::RenderSurfaceInterface& surface ) +void Adaptor::RemoveWindow(Internal::Adaptor::SceneHolder* window) { - return Internal::Adaptor::Adaptor::Get(); + auto iter = std::find(mWindows.begin(), mWindows.end(), window); + if(iter != mWindows.end()) + { + mWindows.erase(iter); + } } -Adaptor& Adaptor::New( Window window, const Dali::RenderSurfaceInterface& surface, Configuration::ContextLoss configuration ) +void Adaptor::RegisterProcessor(Integration::Processor& processor, bool postProcessor) { - return Internal::Adaptor::Adaptor::Get(); + Integration::Core& core = mTestApplication->GetCore(); + core.RegisterProcessor(processor, postProcessor); } -Adaptor& Adaptor::New( Dali::Integration::SceneHolder window ) +void Adaptor::UnregisterProcessor(Integration::Processor& processor, bool postProcessor) { - return Internal::Adaptor::Adaptor::Get(); + Integration::Core& core = mTestApplication->GetCore(); + core.UnregisterProcessor(processor, postProcessor); } -Adaptor& Adaptor::New( Dali::Integration::SceneHolder window, Configuration::ContextLoss configuration ) +void Adaptor::SetApplication(Dali::TestApplication& testApplication) { - return Internal::Adaptor::Adaptor::Get(); + mTestApplication = &testApplication; } -Adaptor& Adaptor::New( Dali::Integration::SceneHolder window, const Dali::RenderSurfaceInterface& surface ) +Dali::Adaptor::AdaptorSignalType& Adaptor::ResizedSignal() { - return Internal::Adaptor::Adaptor::Get(); + return mResizedSignal; } -Adaptor& Adaptor::New( Dali::Integration::SceneHolder window, const Dali::RenderSurfaceInterface& surface, Configuration::ContextLoss configuration ) +Dali::Adaptor::AdaptorSignalType& Adaptor::LanguageChangedSignal() +{ + return mLanguageChangedSignal; +} + +Dali::Adaptor::WindowCreatedSignalType& Adaptor::WindowCreatedSignal() +{ + return mWindowCreatedSignal; +} + +} // namespace Adaptor +} // namespace Internal + +/////////////////////////////////////////////////////////////////////////////// +// +// Dali::Adaptor Stub +// +/////////////////////////////////////////////////////////////////////////////// + +Adaptor::Adaptor() +: mImpl(new Internal::Adaptor::Adaptor) { - return Internal::Adaptor::Adaptor::Get(); } Adaptor::~Adaptor() { + Internal::Adaptor::gAdaptor = nullptr; + delete mImpl; } void Adaptor::Start() @@ -119,59 +256,52 @@ void Adaptor::Stop() { } -bool Adaptor::AddIdle( CallbackBase* callback, bool hasReturnValue ) +bool Adaptor::AddIdle(CallbackBase* callback, bool hasReturnValue) { - const bool isAvailable = IsAvailable(); - - if( isAvailable ) - { - Internal::Adaptor::Adaptor::mCallbacks.PushBack( callback ); - } - - return isAvailable; + return mImpl->AddIdle(callback, hasReturnValue); } -void Adaptor::RemoveIdle( CallbackBase* callback ) +void Adaptor::RemoveIdle(CallbackBase* callback) { - const bool isAvailable = IsAvailable(); - - if( isAvailable ) - { - for( Vector::Iterator it = Internal::Adaptor::Adaptor::mCallbacks.Begin(), - endIt = Internal::Adaptor::Adaptor::mCallbacks.End(); - it != endIt; - ++it ) - { - if( callback == *it ) - { - Internal::Adaptor::Adaptor::mCallbacks.Remove( it ); - return; - } - } - } + mImpl->RemoveIdle(callback); } -void Adaptor::ReplaceSurface( Window window, Dali::RenderSurfaceInterface& surface ) +void Adaptor::ReplaceSurface(Window window, Dali::RenderSurfaceInterface& surface) { } -void Adaptor::ReplaceSurface( Dali::Integration::SceneHolder window, Dali::RenderSurfaceInterface& surface ) +void Adaptor::ReplaceSurface(Dali::Integration::SceneHolder window, Dali::RenderSurfaceInterface& surface) { } Adaptor::AdaptorSignalType& Adaptor::ResizedSignal() { - return Internal::Adaptor::Adaptor::AdaptorSignal(); + return mImpl->ResizedSignal(); } Adaptor::AdaptorSignalType& Adaptor::LanguageChangedSignal() { - return Internal::Adaptor::Adaptor::AdaptorSignal(); + return mImpl->LanguageChangedSignal(); +} + +Adaptor::WindowCreatedSignalType& Adaptor::WindowCreatedSignal() +{ + return mImpl->WindowCreatedSignal(); } Dali::RenderSurfaceInterface& Adaptor::GetSurface() { - return Internal::Adaptor::Adaptor::GetSurface(); + return mImpl->GetSurface(); +} + +Dali::WindowContainer Adaptor::GetWindows() const +{ + return mImpl->GetWindows(); +} + +Dali::SceneHolderList Adaptor::GetSceneHolders() const +{ + return mImpl->GetSceneHolders(); } Any Adaptor::GetNativeWindowHandle() @@ -180,15 +310,16 @@ Any Adaptor::GetNativeWindowHandle() return window; } -void Adaptor::ReleaseSurfaceLock() +Any Adaptor::GetNativeWindowHandle(Actor actor) { + return GetNativeWindowHandle(); } -void Adaptor::SetRenderRefreshRate( unsigned int numberOfVSyncsPerRender ) +void Adaptor::ReleaseSurfaceLock() { } -void Adaptor::SetUseHardwareVSync(bool useHardware) +void Adaptor::SetRenderRefreshRate(unsigned int numberOfVSyncsPerRender) { } @@ -199,7 +330,7 @@ Adaptor& Adaptor::Get() bool Adaptor::IsAvailable() { - return Internal::Adaptor::Adaptor::mAvailable; + return Internal::Adaptor::gAdaptor; } void Adaptor::NotifySceneCreated() @@ -210,15 +341,15 @@ void Adaptor::NotifyLanguageChanged() { } -void Adaptor::FeedTouchPoint( TouchPoint& point, int timeStamp ) +void Adaptor::FeedTouchPoint(TouchPoint& point, int timeStamp) { } -void Adaptor::FeedWheelEvent( WheelEvent& wheelEvent ) +void Adaptor::FeedWheelEvent(WheelEvent& wheelEvent) { } -void Adaptor::FeedKeyEvent( KeyEvent& keyEvent ) +void Adaptor::FeedKeyEvent(KeyEvent& keyEvent) { } @@ -231,7 +362,7 @@ class LogFactory : public LogFactoryInterface public: virtual void InstallLogFunction() const { - Dali::Integration::Log::LogFunction logFunction(&TestApplication::LogMessage); + Dali::Integration::Log::LogFunction logFunction(&ToolkitTestApplication::LogMessage); Dali::Integration::Log::InstallLogFunction(logFunction); } @@ -243,19 +374,51 @@ public: } }; -LogFactory* gLogFactory = NULL; +LogFactory* gLogFactory = NULL; const LogFactoryInterface& Adaptor::GetLogFactory() { - if( gLogFactory == NULL ) + if(gLogFactory == NULL) { gLogFactory = new LogFactory; } return *gLogFactory; } -Adaptor::Adaptor() -: mImpl( NULL ) +class TraceFactory : public TraceFactoryInterface +{ +public: + virtual void InstallTraceFunction() const + { + Dali::Integration::Trace::LogContextFunction logContextFunction(&TestApplication::LogContext); + Dali::Integration::Trace::InstallLogContextFunction(logContextFunction); + } + + TraceFactory() + { + } + virtual ~TraceFactory() + { + } +}; + +TraceFactory* gTraceFactory = NULL; +const TraceFactoryInterface& Adaptor::GetTraceFactory() +{ + if(gTraceFactory == NULL) + { + gTraceFactory = new TraceFactory; + } + return *gTraceFactory; +} + +void Adaptor::RegisterProcessor(Integration::Processor& processor, bool postProcessor) +{ + mImpl->RegisterProcessor(processor, postProcessor); +} + +void Adaptor::UnregisterProcessor(Integration::Processor& processor, bool postProcessor) { + mImpl->UnregisterProcessor(processor, postProcessor); } } // namespace Dali