blob: 519fb726be75786521f8db653a545fa247ddd007 (
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
|
/*************************************************************************
** StreamReader.cpp **
** **
** This file is part of dvisvgm -- the DVI to SVG converter **
** Copyright (C) 2005-2010 Martin Gieseking <martin.gieseking@uos.de> **
** **
** This program is free software; you can redistribute it and/or **
** modify it under the terms of the GNU General Public License as **
** published by the Free Software Foundation; either version 3 of **
** the License, or (at your option) any later version. **
** **
** This program is distributed in the hope that it will be useful, but **
** WITHOUT ANY WARRANTY; without even the implied warranty of **
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the **
** GNU General Public License for more details. **
** **
** You should have received a copy of the GNU General Public License **
** along with this program; if not, see <http://www.gnu.org/licenses/>. **
*************************************************************************/
#include "StreamReader.h"
#include "macros.h"
using namespace std;
StreamReader::StreamReader (istream &s)
: is(&s)
{
}
istream& StreamReader::replaceStream (istream &in) {
istream &ret = *is;
is = ∈
return ret;
}
/** Reads an unsigned integer from assigned input stream.
* @param[in] bytes number of bytes to read (max. 4)
* @return read integer */
UInt32 StreamReader::readUnsigned (int bytes) {
UInt32 ret = 0;
for (bytes--; bytes >= 0 && !is->eof(); bytes--) {
UInt32 b = is->get();
ret |= b << (8*bytes);
}
return ret;
}
/** Reads an signed integer from assigned input stream.
* @param[in] bytes number of bytes to read (max. 4)
* @return read integer */
Int32 StreamReader::readSigned (int bytes) {
Int32 ret = is->get();
if (ret & 128) // negative value?
ret |= 0xffffff00;
for (bytes-=2; bytes >= 0 && !is->eof(); bytes--)
ret = (ret << 8) | is->get();
return ret;
}
string StreamReader::readString (int length) {
if (!is)
throw StreamReaderException("no stream assigned");
char *buf = new char[length+1];
if (length > 0)
is->get(buf, length+1); // reads 'length' bytes (pos. length+1 is set to 0)
else
*buf = 0;
string ret = buf;
delete [] buf;
return ret;
}
vector<UInt8>& StreamReader::readBytes (int n, vector<UInt8> &bytes) {
if (n > 0)
in().read((char*)&bytes[0], n);
return bytes;
}
|