Merge "Fix Svace issue" into devel/master
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / dali-toolkit-test-utils / test-application.h
1 #ifndef __DALI_TEST_APPLICATION_H__
2 #define __DALI_TEST_APPLICATION_H__
3
4 /*
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <test-platform-abstraction.h>
23 #include "test-gesture-manager.h"
24 #include "test-gl-sync-abstraction.h"
25 #include "test-gl-abstraction.h"
26 #include "test-render-controller.h"
27 #include <dali/public-api/common/dali-common.h>
28 #include <dali/integration-api/resource-policies.h>
29
30 namespace Dali
31 {
32
33 class DALI_IMPORT_API TestApplication : public ConnectionTracker
34 {
35 public:
36
37   // Default values derived from H2 device.
38   static const unsigned int DEFAULT_SURFACE_WIDTH = 480;
39   static const unsigned int DEFAULT_SURFACE_HEIGHT = 800;
40
41 #ifdef _CPP11
42   static constexpr float DEFAULT_HORIZONTAL_DPI = 220.0f;
43   static constexpr float DEFAULT_VERTICAL_DPI   = 217.0f;
44 #else
45   static const float DEFAULT_HORIZONTAL_DPI = 220.0f;
46   static const float DEFAULT_VERTICAL_DPI   = 217.0f;
47 #endif
48
49   static const unsigned int DEFAULT_RENDER_INTERVAL = 1;
50
51   TestApplication( size_t surfaceWidth  = DEFAULT_SURFACE_WIDTH,
52                    size_t surfaceHeight = DEFAULT_SURFACE_HEIGHT,
53                    float  horizontalDpi = DEFAULT_HORIZONTAL_DPI,
54                    float  verticalDpi   = DEFAULT_VERTICAL_DPI,
55                    ResourcePolicy::DataRetention policy = ResourcePolicy::DALI_DISCARDS_ALL_DATA);
56
57   TestApplication( bool   initialize,
58                    size_t surfaceWidth  = DEFAULT_SURFACE_WIDTH,
59                    size_t surfaceHeight = DEFAULT_SURFACE_HEIGHT,
60                    float  horizontalDpi = DEFAULT_HORIZONTAL_DPI,
61                    float  verticalDpi   = DEFAULT_VERTICAL_DPI,
62                    ResourcePolicy::DataRetention policy = ResourcePolicy::DALI_DISCARDS_ALL_DATA);
63
64   void Initialize();
65   virtual ~TestApplication();
66   static void LogMessage( Dali::Integration::Log::DebugPriority level, std::string& message );
67   Dali::Integration::Core& GetCore();
68   TestPlatformAbstraction& GetPlatform();
69   TestRenderController& GetRenderController();
70   TestGlAbstraction& GetGlAbstraction();
71   TestGlSyncAbstraction& GetGlSyncAbstraction();
72   TestGestureManager& GetGestureManager();
73   void ProcessEvent(const Integration::Event& event);
74   void SendNotification();
75   void SetSurfaceWidth( unsigned int width, unsigned height );
76   bool Render( unsigned int intervalMilliseconds = DEFAULT_RENDER_INTERVAL, const char* location=NULL );
77   unsigned int GetUpdateStatus();
78   bool UpdateOnly( unsigned int intervalMilliseconds = DEFAULT_RENDER_INTERVAL );
79   bool RenderOnly( );
80   void ResetContext();
81   bool GetRenderNeedsUpdate();
82
83 private:
84   void DoUpdate( unsigned int intervalMilliseconds, const char* location=NULL );
85
86 protected:
87   TestPlatformAbstraction   mPlatformAbstraction;
88   TestRenderController      mRenderController;
89   TestGlAbstraction         mGlAbstraction;
90   TestGlSyncAbstraction     mGlSyncAbstraction;
91   TestGestureManager        mGestureManager;
92
93   Integration::UpdateStatus mStatus;
94   Integration::RenderStatus mRenderStatus;
95
96   Integration::Core* mCore;
97
98   unsigned int mSurfaceWidth;
99   unsigned int mSurfaceHeight;
100   unsigned int mFrame;
101
102   Vector2 mDpi;
103   unsigned int mLastVSyncTime;
104   ResourcePolicy::DataRetention mDataRetentionPolicy;
105 };
106
107 } // Dali
108
109 #endif