X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=automated-tests%2Fsrc%2Fdali-toolkit%2Fdali-toolkit-test-utils%2Ftoolkit-adaptor.cpp;h=8f3095fd877afd93d20d8f64c1c9b745446d486d;hp=5dbbe764d21b833fdcd2cbf7a1762bebe3d06f0f;hb=7018f61b640b6fcf9cb576b537bafcb6bb8240e8;hpb=65fe4d97a7a58199b2f5ad2d84e26acbb2b6ae39 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 5dbbe76..8f3095f 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) 2020 Samsung Electronics Co., Ltd. + * Copyright (c) 2021 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. @@ -29,34 +29,11 @@ #include #include #include +#include namespace Dali { -namespace -{ - -/////////////////////////////////////////////////////////////////////////////// -// -// LogFactoryStub -// -/////////////////////////////////////////////////////////////////////////////// - -class LogFactory : public LogFactoryInterface -{ -public: - LogFactory() = default; - virtual ~LogFactory() = default; - -private: - void InstallLogFunction() const override - { - Dali::Integration::Log::InstallLogFunction( &TestApplication::LogMessage ); - } -}; -LogFactory* gLogFactory = NULL; // For some reason, destroying this when the Adaptor is destroyed causes a crash in some test cases when running all of them. -} //unnamed namespace - namespace Internal { namespace Adaptor @@ -195,16 +172,16 @@ void Adaptor::RemoveWindow( Internal::Adaptor::SceneHolder* window ) } } -void Adaptor::RegisterProcessor( Integration::Processor& processor ) +void Adaptor::RegisterProcessor( Integration::Processor& processor, bool postProcessor ) { Integration::Core& core = mTestApplication->GetCore(); - core.RegisterProcessor( processor ); + core.RegisterProcessor( processor, postProcessor ); } -void Adaptor::UnregisterProcessor( Integration::Processor& processor ) +void Adaptor::UnregisterProcessor( Integration::Processor& processor, bool postProcessor ) { Integration::Core& core = mTestApplication->GetCore(); - core.UnregisterProcessor( processor ); + core.UnregisterProcessor( processor, postProcessor ); } void Adaptor::SetApplication( Dali::TestApplication& testApplication ) @@ -364,6 +341,24 @@ void Adaptor::SceneCreated() { } +class LogFactory : public LogFactoryInterface +{ +public: + virtual void InstallLogFunction() const + { + Dali::Integration::Log::LogFunction logFunction(&ToolkitTestApplication::LogMessage); + Dali::Integration::Log::InstallLogFunction(logFunction); + } + + LogFactory() + { + } + virtual ~LogFactory() + { + } +}; + +LogFactory* gLogFactory = NULL; const LogFactoryInterface& Adaptor::GetLogFactory() { if( gLogFactory == NULL ) @@ -373,14 +368,14 @@ const LogFactoryInterface& Adaptor::GetLogFactory() return *gLogFactory; } -void Adaptor::RegisterProcessor( Integration::Processor& processor ) +void Adaptor::RegisterProcessor( Integration::Processor& processor, bool postProcessor) { - mImpl->RegisterProcessor( processor ); + mImpl->RegisterProcessor( processor, postProcessor ); } -void Adaptor::UnregisterProcessor( Integration::Processor& processor ) +void Adaptor::UnregisterProcessor( Integration::Processor& processor, bool postProcessor) { - mImpl->UnregisterProcessor( processor ); + mImpl->UnregisterProcessor( processor, postProcessor ); } } // namespace Dali