summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/assimp/code/StreamReader.h
blob: 73467943b4bf70833b3dd80ac27e39c7d56e4ea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
/*
---------------------------------------------------------------------------
Open Asset Import Library (assimp)
---------------------------------------------------------------------------

Copyright (c) 2006-2012, assimp team

All rights reserved.

Redistribution and use of this software in source and binary forms, 
with or without modification, are permitted provided that the following 
conditions are met:

* Redistributions of source code must retain the above
  copyright notice, this list of conditions and the
  following disclaimer.

* Redistributions in binary form must reproduce the above
  copyright notice, this list of conditions and the
  following disclaimer in the documentation and/or other
  materials provided with the distribution.

* Neither the name of the assimp team, nor the names of its
  contributors may be used to endorse or promote products
  derived from this software without specific prior
  written permission of the assimp team.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
---------------------------------------------------------------------------
*/

/** @file Defines the StreamReader class which reads data from
 *  a binary stream with a well-defined endianess. */

#ifndef AI_STREAMREADER_H_INCLUDED
#define AI_STREAMREADER_H_INCLUDED

#include "ByteSwap.h"

namespace Assimp {

// --------------------------------------------------------------------------------------------
/** Wrapper class around IOStream to allow for consistent reading of binary data in both 
 *  little and big endian format. Don't attempt to instance the template directly. Use 
 *  StreamReaderLE to read from a little-endian stream and StreamReaderBE to read from a 
 *  BE stream. The class expects that the endianess of any input data is known at 
 *  compile-time, which should usually be true (#BaseImporter::ConvertToUTF8 implements
 *  runtime endianess conversions for text files). 
 *
 *  XXX switch from unsigned int for size types to size_t? or ptrdiff_t?*/
// --------------------------------------------------------------------------------------------
template <bool SwapEndianess = false, bool RuntimeSwitch = false>
class StreamReader
{

public:

	// FIXME: use these data types throughout the whole library,
	// then change them to 64 bit values :-)
	
	typedef int diff;
	typedef unsigned int pos;

public:


	// ---------------------------------------------------------------------
	/** Construction from a given stream with a well-defined endianess.
	 * 
	 *  The StreamReader holds a permanent strong reference to the
	 *  stream, which is released upon destruction.
	 *  @param stream Input stream. The stream is not restarted if
	 *    its file pointer is not at 0. Instead, the stream reader
	 *    reads from the current position to the end of the stream.
	 *  @param le If @c RuntimeSwitch is true: specifies whether the
	 *    stream is in little endian byte order. Otherwise the
	 *    endianess information is contained in the @c SwapEndianess
	 *    template parameter and this parameter is meaningless.  */
	StreamReader(boost::shared_ptr<IOStream> stream, bool le = false)
		: stream(stream)
		, le(le)
	{
		ai_assert(stream); 
		InternBegin();
	}

	// ---------------------------------------------------------------------
	StreamReader(IOStream* stream, bool le = false)
		: stream(boost::shared_ptr<IOStream>(stream))
		, le(le)
	{
		ai_assert(stream);
		InternBegin();
	}

	// ---------------------------------------------------------------------
	~StreamReader() {
		delete[] buffer;
	}

public:

	// deprecated, use overloaded operator>> instead

	// ---------------------------------------------------------------------
	/** Read a float from the stream  */
	float GetF4()
	{
		return Get<float>();
	}

	// ---------------------------------------------------------------------
	/** Read a double from the stream  */
	double GetF8()	{
		return Get<double>();
	}

	// ---------------------------------------------------------------------
	/** Read a signed 16 bit integer from the stream */
	int16_t GetI2()	{
		return Get<int16_t>();
	}

	// ---------------------------------------------------------------------
	/** Read a signed 8 bit integer from the stream */
	int8_t GetI1()	{
		return Get<int8_t>();
	}

	// ---------------------------------------------------------------------
	/** Read an signed 32 bit integer from the stream */
	int32_t GetI4()	{
		return Get<int32_t>();
	}

	// ---------------------------------------------------------------------
	/** Read a signed 64 bit integer from the stream */
	int64_t GetI8()	{
		return Get<int64_t>();
	}

	// ---------------------------------------------------------------------
	/** Read a unsigned 16 bit integer from the stream */
	uint16_t GetU2()	{
		return Get<uint16_t>();
	}

	// ---------------------------------------------------------------------
	/** Read a unsigned 8 bit integer from the stream */
	uint8_t GetU1()	{
		return Get<uint8_t>();
	}

	// ---------------------------------------------------------------------
	/** Read an unsigned 32 bit integer from the stream */
	uint32_t GetU4()	{
		return Get<uint32_t>();
	}

	// ---------------------------------------------------------------------
	/** Read a unsigned 64 bit integer from the stream */
	uint64_t GetU8()	{
		return Get<uint64_t>();
	}

public:

	// ---------------------------------------------------------------------
	/** Get the remaining stream size (to the end of the srream) */
	unsigned int GetRemainingSize() const {
		return (unsigned int)(end - current);
	}


	// ---------------------------------------------------------------------
	/** Get the remaining stream size (to the current read limit). The
	 *  return value is the remaining size of the stream if no custom
	 *  read limit has been set. */
	unsigned int GetRemainingSizeToLimit() const {
		return (unsigned int)(limit - current);
	}


	// ---------------------------------------------------------------------
	/** Increase the file pointer (relative seeking)  */
	void IncPtr(size_t plus)	{
		current += plus;
		if (current > limit) {
			throw DeadlyImportError("End of file or read limit was reached");
		}
	}

	// ---------------------------------------------------------------------
	/** Get the current file pointer */
	int8_t* GetPtr() const	{
		return current;
	}


	// ---------------------------------------------------------------------
	/** Set current file pointer (Get it from #GetPtr). This is if you
	 *  prefer to do pointer arithmetics on your own or want to copy 
	 *  large chunks of data at once. 
	 *  @param p The new pointer, which is validated against the size
	 *    limit and buffer boundaries. */
	void SetPtr(int8_t* p)	{

		current = p;
		if (current > limit || current < buffer) {
			throw DeadlyImportError("End of file or read limit was reached");
		}
	}

	// ---------------------------------------------------------------------
	/** Copy n bytes to an external buffer
	 *  @param out Destination for copying
	 *  @param bytes Number of bytes to copy */
	void CopyAndAdvance(void* out, size_t bytes)	{

		int8_t* ur = GetPtr();
		SetPtr(ur+bytes); // fire exception if eof

		memcpy(out,ur,bytes);
	}


	// ---------------------------------------------------------------------
	/** Get the current offset from the beginning of the file */
	int GetCurrentPos() const	{
		return (unsigned int)(current - buffer);
	}

	void SetCurrentPos(size_t pos) {
		SetPtr(buffer + pos);
	}

	// ---------------------------------------------------------------------
	/** Setup a temporary read limit
	 * 
	 *  @param limit Maximum number of bytes to be read from
	 *    the beginning of the file. Specifying UINT_MAX
	 *    resets the limit to the original end of the stream. */
	void SetReadLimit(unsigned int _limit)	{

		if (UINT_MAX == _limit) {
			limit = end;
			return;
		}

		limit = buffer + _limit;
		if (limit > end) {
			throw DeadlyImportError("StreamReader: Invalid read limit");
		}
	}

	// ---------------------------------------------------------------------
	/** Get the current read limit in bytes. Reading over this limit
	 *  accidentially raises an exception.  */
	int GetReadLimit() const	{
		return (unsigned int)(limit - buffer);
	}

	// ---------------------------------------------------------------------
	/** Skip to the read limit in bytes. Reading over this limit
	 *  accidentially raises an exception. */
	void SkipToReadLimit()	{
		current = limit;
	}

	// ---------------------------------------------------------------------
	/** overload operator>> and allow chaining of >> ops. */
	template <typename T>
	StreamReader& operator >> (T& f) {
		f = Get<T>(); 
		return *this;
	}

private:

	// ---------------------------------------------------------------------
	/** Generic read method. ByteSwap::Swap(T*) *must* be defined */
	template <typename T>
	T Get()	{
		if (current + sizeof(T) > limit) {
			throw DeadlyImportError("End of file or stream limit was reached");
		}

#ifdef __arm__
		T f;
		memcpy (&f, current, sizeof(T));
#else
		T f = *((const T*)current);
#endif	
		Intern :: Getter<SwapEndianess,T,RuntimeSwitch>() (&f,le);

		current += sizeof(T);
		return f;
	}

	// ---------------------------------------------------------------------
	void InternBegin() {
		if (!stream) {
			// incase someone wonders: StreamReader is frequently invoked with
			// no prior validation whether the input stream is valid. Since
			// no one bothers changing the error message, this message here
			// is passed down to the caller and 'unable to open file'
			// simply describes best what happened.
			throw DeadlyImportError("StreamReader: Unable to open file");
		}

		const size_t s = stream->FileSize() - stream->Tell();
		if (!s) {
			throw DeadlyImportError("StreamReader: File is empty or EOF is already reached");
		}

		current = buffer = new int8_t[s];
		const size_t read = stream->Read(current,1,s);
		// (read < s) can only happen if the stream was opened in text mode, in which case FileSize() is not reliable
		ai_assert(read <= s);
		end = limit = &buffer[read];
	}

private:


	boost::shared_ptr<IOStream> stream;
	int8_t *buffer, *current, *end, *limit;
	bool le;
};


// --------------------------------------------------------------------------------------------
// `static` StreamReaders. Their byte order is fixed and they might be a little bit faster.
#ifdef AI_BUILD_BIG_ENDIAN
	typedef StreamReader<true>  StreamReaderLE;
	typedef StreamReader<false> StreamReaderBE;
#else
	typedef StreamReader<true>  StreamReaderBE;
	typedef StreamReader<false> StreamReaderLE;
#endif

// `dynamic` StreamReader. The byte order of the input data is specified in the
// c'tor. This involves runtime branching and might be a little bit slower.
typedef StreamReader<true,true> StreamReaderAny;

} // end namespace Assimp

#endif // !! AI_STREAMREADER_H_INCLUDED