blob: 3ece4c94efc81744ea97c503b6b9a3e41304352e [file] [log] [blame]
Jason Samsa5597fc2009-07-08 18:01:53 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_RS_FILE_A3D_H
18#define ANDROID_RS_FILE_A3D_H
19
20#include "RenderScript.h"
Jason Samsa5597fc2009-07-08 18:01:53 -070021#include "rsMesh.h"
22
23#include <utils/String8.h>
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -070024#include "rsStream.h"
Jason Samsa5597fc2009-07-08 18:01:53 -070025#include <stdio.h>
26
Alex Sakhartchoukb825f672010-06-04 10:06:50 -070027#define A3D_MAGIC_KEY "Android3D_ff"
28
Jason Samsa5597fc2009-07-08 18:01:53 -070029// ---------------------------------------------------------------------------
30namespace android {
Alex Sakhartchoukb825f672010-06-04 10:06:50 -070031
Jason Samsa5597fc2009-07-08 18:01:53 -070032namespace renderscript {
33
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080034class FileA3D : public ObjectBase {
Jason Samsa5597fc2009-07-08 18:01:53 -070035public:
Alex Sakhartchoukb825f672010-06-04 10:06:50 -070036 FileA3D(Context *rsc);
Jason Samsa5597fc2009-07-08 18:01:53 -070037 ~FileA3D();
38
39 uint32_t mMajorVersion;
40 uint32_t mMinorVersion;
41 uint64_t mIndexOffset;
42 uint64_t mStringTableOffset;
43 bool mUse64BitOffsets;
44
Alex Sakhartchoukb825f672010-06-04 10:06:50 -070045 class A3DIndexEntry {
46 String8 mObjectName;
47 RsA3DClassID mType;
Jason Samsa5597fc2009-07-08 18:01:53 -070048 uint64_t mOffset;
Alex Sakhartchoukb825f672010-06-04 10:06:50 -070049 uint64_t mLength;
50 ObjectBase *mRsObj;
51 public:
52 friend class FileA3D;
53 const String8 &getObjectName() const {
54 return mObjectName;
55 }
56 RsA3DClassID getType() const {
57 return mType;
58 }
Jason Samsa5597fc2009-07-08 18:01:53 -070059 };
60
Alex Sakhartchoukb825f672010-06-04 10:06:50 -070061 bool load(FILE *f);
62 bool load(const void *data, size_t length);
63
64 size_t getNumIndexEntries() const;
65 const A3DIndexEntry* getIndexEntry(size_t index) const;
66 ObjectBase *initializeFromEntry(size_t index);
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -070067
68 void appendToFile(ObjectBase *obj);
69 bool writeFile(const char *filename);
Jason Samsa5597fc2009-07-08 18:01:53 -070070
Alex Sakhartchoukb825f672010-06-04 10:06:50 -070071 // Currently files do not get serialized,
72 // but we need to inherit from ObjectBase for ref tracking
73 virtual void serialize(OStream *stream) const {
74 }
75 virtual RsA3DClassID getClassId() const {
76 return RS_A3D_CLASS_ID_UNKNOWN;
77 }
78
Jason Samsa5597fc2009-07-08 18:01:53 -070079protected:
Jason Samsa5597fc2009-07-08 18:01:53 -070080
Alex Sakhartchoukb825f672010-06-04 10:06:50 -070081 void parseHeader(IStream *headerStream);
82
Jason Samsa5597fc2009-07-08 18:01:53 -070083 const uint8_t * mData;
84 void * mAlloc;
85 uint64_t mDataSize;
Jason Samsa5597fc2009-07-08 18:01:53 -070086
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -070087 OStream *mWriteStream;
88 Vector<A3DIndexEntry*> mWriteIndex;
Jason Samsa5597fc2009-07-08 18:01:53 -070089
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -070090 IStream *mReadStream;
91 Vector<A3DIndexEntry*> mIndex;
Jason Samsa5597fc2009-07-08 18:01:53 -070092};
93
94
95}
96}
97#endif //ANDROID_RS_FILE_A3D_H
98
99