summaryrefslogtreecommitdiffstats
path: root/src/extension/internal/libwpg/WPGStreamImplementation.cpp
blob: bd0c59cd516549d9edaa016036fcb94c3d5e99b6 (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
/* libwpg
 * Copyright (C) 2006 Ariya Hidayat (ariya@kde.org)
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the 
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 
 * Boston, MA  02111-1301 USA
 *
 * For further information visit http://libwpg.sourceforge.net
 */

/* "This product is not manufactured, approved, or supported by
 * Corel Corporation or Corel Corporation Limited."
 */

#include "WPGStreamImplementation.h"
#include "WPGOLEStream.h"
#include "libwpg_utils.h"

#include <fstream>
#include <sstream>
#include <string>

// MSVC++ 6.0 defines getc as macro, so undefine it
#undef getc

namespace libwpg
{

class WPGFileStreamPrivate
{
public:
	WPGFileStreamPrivate();
	std::fstream file;
	std::stringstream buffer;
};

class WPGMemoryStreamPrivate
{
public:
	WPGMemoryStreamPrivate(const std::string str);
	std::stringstream buffer;
};

} // namespace libwpg

using namespace libwpg;

WPGFileStreamPrivate::WPGFileStreamPrivate() :
	buffer(std::ios::binary | std::ios::in | std::ios::out)
{
}

WPGMemoryStreamPrivate::WPGMemoryStreamPrivate(const std::string str) :
	buffer(str, std::ios::binary | std::ios::in)
{
}


WPGFileStream::WPGFileStream(const char* filename)
{
	d = new WPGFileStreamPrivate;
	
	d->file.open( filename, std::ios::binary | std::ios::in );
}

WPGFileStream::~WPGFileStream()
{
	delete d;
}

unsigned char WPGFileStream::getc()
{
	return d->file.get();
}

long WPGFileStream::read(long nbytes, char* buffer)
{
	long nread = 0;
	
	if(d->file.good())
	{
	long curpos = d->file.tellg();
	d->file.read(buffer, nbytes); 
	nread = (long)d->file.tellg() - curpos;
	}
	
	return nread;
}

long WPGFileStream::tell()
{
	return d->file.good() ? (long)d->file.tellg() : -1L;
}

void WPGFileStream::seek(long offset)
{
	if(d->file.good())
		d->file.seekg(offset);
}

bool WPGFileStream::atEnd()
{
	return d->file.eof();
}

bool WPGFileStream::isOle()
{
	if (d->buffer.str().empty())
		d->buffer << d->file.rdbuf();
	Storage tmpStorage( d->buffer );
	if (tmpStorage.isOle())
		return true;
	return false;
}

WPGInputStream* WPGFileStream::getWPGOleStream()
{
	if (d->buffer.str().empty())
		d->buffer << d->file.rdbuf();
	Storage *tmpStorage = new Storage( d->buffer );
	Stream tmpStream( tmpStorage, "PerfectOffice_MAIN" );
	if (!tmpStorage || (tmpStorage->result() != Storage::Ok)  || !tmpStream.size())
	{
		if (tmpStorage)
			delete tmpStorage;
		return (WPGInputStream*)0;
	}
	
	unsigned char *tmpBuffer = new unsigned char[tmpStream.size()];
	unsigned long tmpLength;
	tmpLength = tmpStream.read(tmpBuffer, tmpStream.size());

	// sanity check
	if (tmpLength > tmpStream.size() || tmpLength < tmpStream.size())
	/* something went wrong here and we do not trust the
	   resulting buffer */
	{
		if (tmpStorage)
			delete tmpStorage;
		return (WPGInputStream*)0;
	}

	delete tmpStorage;
	return new WPGMemoryStream((const char *)tmpBuffer, tmpLength);
}


WPGMemoryStream::WPGMemoryStream(const char *data, const unsigned int dataSize)
{
	d = new WPGMemoryStreamPrivate(std::string(data, dataSize));
}

WPGMemoryStream::~WPGMemoryStream()
{
	delete d;
}

unsigned char WPGMemoryStream::getc()
{
	return d->buffer.get();
}

long WPGMemoryStream::read(long nbytes, char* buffer)
{
	long nread = 0;
	
	if(d->buffer.good())
	{
	long curpos = d->buffer.tellg();
	d->buffer.read(buffer, nbytes); 
	nread = (long)d->buffer.tellg() - curpos;
	}
	
	return nread;
}

long WPGMemoryStream::tell()
{
	return d->buffer.good() ? (long)d->buffer.tellg() : -1L;
}

void WPGMemoryStream::seek(long offset)
{
	if(d->buffer.good())
		d->buffer.seekg(offset);
}

bool WPGMemoryStream::atEnd()
{
	return d->buffer.eof();
}

bool WPGMemoryStream::isOle()
{
	Storage tmpStorage( d->buffer );
	if (tmpStorage.isOle())
		return true;
	return false;
}

WPGInputStream* WPGMemoryStream::getWPGOleStream()
{
	Storage *tmpStorage = new Storage( d->buffer );
	Stream tmpStream( tmpStorage, "PerfectOffice_MAIN" );
	if (!tmpStorage || (tmpStorage->result() != Storage::Ok)  || !tmpStream.size())
	{
		if (tmpStorage)
			delete tmpStorage;
		return (WPGInputStream*)0;
	}
	
	unsigned char *tmpBuffer = new unsigned char[tmpStream.size()];
	unsigned long tmpLength;
	tmpLength = tmpStream.read(tmpBuffer, tmpStream.size());

	// sanity check
	if (tmpLength > tmpStream.size() || tmpLength < tmpStream.size())
	/* something went wrong here and we do not trust the
	   resulting buffer */
	{
		if (tmpStorage)
			delete tmpStorage;
		return (WPGInputStream*)0;
	}

	delete tmpStorage;
	return new WPGMemoryStream((const char *)tmpBuffer, tmpLength);
}