[Tizen] Support asan build option
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / dali-toolkit-test-utils / toolkit-adaptor.cpp
index 5d6cf4e..4d77310 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2024 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.
  *
  */
 
-// CLASS HEADER
-#include <dali/integration-api/adaptors/adaptor.h>
+#include <algorithm>
 
-#include <dali/public-api/object/base-object.h>
+#include <toolkit-window-impl.h>
+
+// Don't want to include the actual window.h which otherwise will be indirectly included by adaptor.h.
+#define DALI_WINDOW_H
+#include <dali/integration-api/adaptor-framework/adaptor.h>
+#include <dali/integration-api/adaptor-framework/scene-holder.h>
 
-#include <toolkit-adaptor-impl.h>
 #include <dali/integration-api/debug.h>
+#include <dali/integration-api/scene.h>
 #include <test-application.h>
-#include <test-render-surface.h>
+#include <toolkit-adaptor-impl.h>
+#include <toolkit-application.h>
+#include <toolkit-async-task-manager.h>
+#include <toolkit-scene-holder-impl.h>
+#include <toolkit-test-application.h>
+#include "dali-test-suite-utils.h"
 
 namespace Dali
 {
-
 namespace Internal
 {
 namespace Adaptor
 {
+///////////////////////////////////////////////////////////////////////////////
+//
+// Dali::Internal::Adaptor::Adaptor Stub
+//
+///////////////////////////////////////////////////////////////////////////////
 
-bool Adaptor::mAvailable = false;
-Vector<CallbackBase*> Adaptor::mCallbacks = Vector<CallbackBase*>();
+Dali::Adaptor* gAdaptor = nullptr;
 
-Dali::Adaptor& Adaptor::Get()
+Dali::Adaptor& Adaptor::New()
 {
-  Dali::Adaptor* adaptor = new Dali::Adaptor;
-  Adaptor::mAvailable = true;
-  return *adaptor;
+  DALI_ASSERT_ALWAYS(!gAdaptor);
+  gAdaptor = new Dali::Adaptor;
+  return *gAdaptor;
 }
 
-Dali::RenderSurfaceInterface& Adaptor::GetSurface()
+Dali::Adaptor& Adaptor::Get()
 {
-  Dali::RenderSurfaceInterface* renderSurface = reinterpret_cast <Dali::RenderSurfaceInterface*>( new Dali::TestRenderSurface( Dali::PositionSize( 0, 0, 480, 800 ) ) );
-  return *renderSurface;
+  DALI_ASSERT_ALWAYS(gAdaptor);
+  return *gAdaptor;
 }
 
-Dali::Adaptor::AdaptorSignalType& Adaptor::AdaptorSignal()
+Adaptor::Adaptor()
 {
-  Dali::Adaptor::AdaptorSignalType* signal = new Dali::Adaptor::AdaptorSignalType;
-  return *signal;
 }
 
-} // namespace Adaptor
-} // namespace Internal
-
-Adaptor& Adaptor::New( Window window )
+Adaptor::~Adaptor()
 {
-  return Internal::Adaptor::Adaptor::Get();
+  gAdaptor = nullptr;
+
+  // Ensure all threads and not-excuted tasks are destroyed.
+  // TODO : we'd better make some singletone service for toolkit UTC in future.
+  Test::AsyncTaskManager::DestroyAsyncTaskManager();
 }
 
-Adaptor& Adaptor::New( Window window, Configuration::ContextLoss configuration )
+void Adaptor::Start(Dali::Window window)
 {
-  return Internal::Adaptor::Adaptor::Get();
+  AddWindow(&GetImplementation(window));
 }
 
-Adaptor& Adaptor::New( Any nativeWindow, const Dali::RenderSurfaceInterface& surface )
+void Adaptor::Stop()
 {
-  return Internal::Adaptor::Adaptor::Get();
+  if(mTestApplication)
+  {
+    Integration::Core& core = mTestApplication->GetCore();
+    tet_printf("Adaptor::UnregisterProcessors\n");
+    core.UnregisterProcessors();
+  }
+
+  mStopped = true;
 }
 
-Adaptor& Adaptor::New( Any nativeWindow, const Dali::RenderSurfaceInterface& surface, Configuration::ContextLoss configuration )
+Integration::Scene Adaptor::GetScene(Dali::Window window)
 {
-  return Internal::Adaptor::Adaptor::Get();
+  return window.GetScene();
 }
 
-Adaptor::~Adaptor()
+bool Adaptor::AddIdle(CallbackBase* callback, bool hasReturnValue)
 {
+  if(ToolkitApplication::ADD_IDLE_SUCCESS)
+  {
+    if(hasReturnValue)
+    {
+      mReturnCallbacks.PushBack(callback);
+    }
+    else
+    {
+      mCallbacks.PushBack(callback);
+    }
+  }
+  return ToolkitApplication::ADD_IDLE_SUCCESS;
 }
 
-void Adaptor::Start()
+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::Pause()
+void Adaptor::RunIdles()
 {
+  Dali::Vector<CallbackBase*> reusedCallbacks;
+  for(auto& callback : mReturnCallbacks)
+  {
+    bool retValue = CallbackBase::ExecuteReturn<bool>(*callback);
+    if(retValue)
+    {
+      reusedCallbacks.PushBack(callback);
+    }
+  }
+  for(auto& callback : mCallbacks)
+  {
+    CallbackBase::Execute(*callback);
+  }
+
+  mCallbacks.Clear();
+  mReturnCallbacks.Clear();
+  mReturnCallbacks.Swap(reusedCallbacks);
 }
 
-void Adaptor::Resume()
+Dali::RenderSurfaceInterface& Adaptor::GetSurface()
 {
+  DALI_ASSERT_ALWAYS(!mWindows.empty());
+
+  return reinterpret_cast<Dali::RenderSurfaceInterface&>(mWindows.front()->GetRenderSurface());
 }
 
-void Adaptor::Stop()
+Dali::WindowContainer Adaptor::GetWindows()
 {
+  Dali::WindowContainer windows;
+
+  for(auto iter = mWindows.begin(); iter != mWindows.end(); ++iter)
+  {
+    // Downcast to Dali::Window
+    Dali::Window window(dynamic_cast<Dali::Internal::Adaptor::Window*>(*iter));
+    if(window)
+    {
+      windows.push_back(window);
+    }
+  }
+
+  return windows;
 }
 
-bool Adaptor::AddIdle( CallbackBase* callback, bool hasReturnValue )
+Dali::SceneHolderList Adaptor::GetSceneHolders()
 {
-  const bool isAvailable = IsAvailable();
+  Dali::SceneHolderList sceneHolderList;
 
-  if( isAvailable )
+  for(auto iter = mWindows.begin(); iter != mWindows.end(); ++iter)
   {
-    Internal::Adaptor::Adaptor::mCallbacks.PushBack( callback );
+    sceneHolderList.push_back(Dali::Integration::SceneHolder(*iter));
   }
 
-  return isAvailable;
+  return sceneHolderList;
 }
 
-void Adaptor::RemoveIdle( CallbackBase* callback )
+Dali::Internal::Adaptor::SceneHolder* Adaptor::GetWindow(Dali::Actor& actor)
 {
-  const bool isAvailable = IsAvailable();
+  Dali::Integration::Scene scene = Dali::Integration::Scene::Get(actor);
 
-  if( isAvailable )
+  for(auto window : mWindows)
   {
-    for( Vector<CallbackBase*>::Iterator it = Internal::Adaptor::Adaptor::mCallbacks.Begin(),
-           endIt = Internal::Adaptor::Adaptor::mCallbacks.End();
-         it != endIt;
-         ++it )
+    if(scene == window->GetScene())
     {
-      if( callback == *it )
-      {
-        Internal::Adaptor::Adaptor::mCallbacks.Remove( it );
-        return;
-      }
+      return window;
     }
   }
+
+  return nullptr;
+}
+
+void Adaptor::AddWindow(Internal::Adaptor::SceneHolder* window)
+{
+  if(window)
+  {
+    mWindows.push_back(window);
+
+    Dali::Integration::SceneHolder newWindow(window);
+    mWindowCreatedSignal.Emit(newWindow);
+  }
+}
+
+void Adaptor::RemoveWindow(Internal::Adaptor::SceneHolder* window)
+{
+  auto iter = std::find(mWindows.begin(), mWindows.end(), window);
+  if(iter != mWindows.end())
+  {
+    mWindows.erase(iter);
+  }
+}
+
+void Adaptor::RegisterProcessor(Integration::Processor& processor, bool postProcessor)
+{
+  Integration::Core& core = mTestApplication->GetCore();
+  tet_printf("Adaptor::RegisterProcessor : %s\n", processor.GetProcessorName().data());
+  core.RegisterProcessor(processor, postProcessor);
+}
+
+void Adaptor::UnregisterProcessor(Integration::Processor& processor, bool postProcessor)
+{
+  Integration::Core& core = mTestApplication->GetCore();
+  tet_printf("Adaptor::UnregisterProcessor : %s\n", processor.GetProcessorName().data());
+  core.UnregisterProcessor(processor, postProcessor);
+}
+
+void Adaptor::SetApplication(Dali::TestApplication& testApplication)
+{
+  mTestApplication = &testApplication;
+}
+
+Dali::Adaptor::AdaptorSignalType& Adaptor::ResizedSignal()
+{
+  return mResizedSignal;
+}
+
+Dali::Adaptor::AdaptorSignalType& Adaptor::LanguageChangedSignal()
+{
+  return mLanguageChangedSignal;
 }
 
-void Adaptor::ReplaceSurface( Any nativeWindow, Dali::RenderSurfaceInterface& surface )
+Dali::Adaptor::WindowCreatedSignalType& Adaptor::WindowCreatedSignal()
+{
+  return mWindowCreatedSignal;
+}
+
+} // namespace Adaptor
+} // namespace Internal
+
+///////////////////////////////////////////////////////////////////////////////
+//
+// Dali::Adaptor Stub
+//
+///////////////////////////////////////////////////////////////////////////////
+
+Adaptor::Adaptor()
+: mImpl(new Internal::Adaptor::Adaptor)
+{
+}
+
+Adaptor::~Adaptor()
+{
+  Internal::Adaptor::gAdaptor = nullptr;
+  delete mImpl;
+}
+
+void Adaptor::Start()
+{
+}
+
+void Adaptor::Pause()
+{
+}
+
+void Adaptor::Resume()
+{
+}
+
+void Adaptor::Stop()
+{
+  mImpl->Stop();
+}
+
+bool Adaptor::AddIdle(CallbackBase* callback, bool hasReturnValue)
+{
+  return mImpl->AddIdle(callback, hasReturnValue);
+}
+
+void Adaptor::RemoveIdle(CallbackBase* callback)
+{
+  mImpl->RemoveIdle(callback);
+}
+
+void Adaptor::ReplaceSurface(Window 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()
@@ -155,15 +335,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)
 {
 }
 
@@ -174,7 +355,7 @@ Adaptor& Adaptor::Get()
 
 bool Adaptor::IsAvailable()
 {
-  return Internal::Adaptor::Adaptor::mAvailable;
+  return Internal::Adaptor::gAdaptor && (!Internal::Adaptor::Adaptor::GetImpl(*Internal::Adaptor::gAdaptor).IsStopped());
 }
 
 void Adaptor::NotifySceneCreated()
@@ -185,19 +366,15 @@ void Adaptor::NotifyLanguageChanged()
 {
 }
 
-void Adaptor::SetMinimumPinchDistance(float distance)
+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)
 {
 }
 
@@ -210,7 +387,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);
   }
 
@@ -222,19 +399,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