1#ifndef _TCUANDROIDTESTACTIVITY_HPP
2#define _TCUANDROIDTESTACTIVITY_HPP
3/*-------------------------------------------------------------------------
4 * drawElements Quality Program Tester Core
5 * ----------------------------------------
6 *
7 * Copyright 2014 The Android Open Source Project
8 *
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 *      http://www.apache.org/licenses/LICENSE-2.0
14 *
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 *
21 *//*!
22 * \file
23 * \brief Android test activity.
24 *//*--------------------------------------------------------------------*/
25
26#include "tcuDefs.hpp"
27#include "tcuAndroidRenderActivity.hpp"
28#include "tcuAndroidPlatform.hpp"
29#include "tcuCommandLine.hpp"
30#include "tcuAndroidAssets.hpp"
31#include "tcuTestLog.hpp"
32#include "tcuApp.hpp"
33
34namespace tcu
35{
36namespace Android
37{
38
39class TestThread : public RenderThread
40{
41public:
42							TestThread					(NativeActivity& activity, const CommandLine& cmdLine);
43							~TestThread					(void);
44
45	void					run							(void);
46
47private:
48	virtual void			onWindowCreated				(ANativeWindow* window);
49	virtual void			onWindowResized				(ANativeWindow* window);
50	virtual void			onWindowDestroyed			(ANativeWindow* window);
51	virtual bool			render						(void);
52
53	const CommandLine&		m_cmdLine;
54	Platform				m_platform;
55	AssetArchive			m_archive;
56	TestLog					m_log;
57	App						m_app;
58	bool					m_finished;					//!< Is execution finished.
59};
60
61class TestActivity : public RenderActivity
62{
63public:
64							TestActivity				(ANativeActivity* nativeActivity);
65							~TestActivity				(void);
66
67	virtual void			onStart						(void);
68	virtual void			onDestroy					(void);
69	virtual void			onConfigurationChanged		(void);
70
71private:
72	CommandLine				m_cmdLine;
73	TestThread				m_testThread;
74	bool					m_started;
75};
76
77} // Android
78} // tcu
79
80#endif // _TCUANDROIDTESTACTIVITY_HPP
81