1 #ifndef _TCUANDROIDASSETS_HPP
2 #define _TCUANDROIDASSETS_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 Resource wrapper for AAssetManager.
24  *//*--------------------------------------------------------------------*/
25 
26 #include "tcuDefs.hpp"
27 #include "tcuResource.hpp"
28 
29 #include <android/asset_manager.h>
30 
31 namespace tcu
32 {
33 namespace Android
34 {
35 
36 class AssetArchive : public Archive
37 {
38 public:
39 						AssetArchive		(AAssetManager* assetMgr);
40 						~AssetArchive		(void);
41 
42 	Resource*			getResource			(const char* name) const;
43 
44 private:
45 	AAssetManager*		m_assetMgr;
46 };
47 
48 class AssetResource : public Resource
49 {
50 public:
51 						AssetResource		(AAssetManager* assetMgr, const char* name);
52 						~AssetResource		(void);
53 
54 	void				read				(deUint8* dst, int numBytes);
55 	int					getPosition			(void) const;
56 	void				setPosition			(int position);
57 	bool				isFinished			(void) const;
58 	int					getSize				(void) const;
59 
60 private:
61 						AssetResource		(const AssetResource& other);
62 	AssetResource		operator=			(const AssetResource& other);
63 
64 	AAsset*				m_asset;
65 };
66 
67 } // Android
68 } // tcu
69 
70 #endif // _TCUANDROIDASSETS_HPP
71