2 * Copyright (C) 2004-2008 Geometer Plus <contact@geometerplus.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
24 #include "PdbStream.h"
26 PdbStream::PdbStream(ZLFile
&file
) : myBase(file
.inputStream()) {
30 PdbStream::~PdbStream() {
33 bool PdbStream::open() {
35 if (myBase
.isNull() || !myBase
->open() || !myHeader
.read(myBase
)) {
39 myBase
->seek(myHeader
.Offsets
[0], true);
49 size_t PdbStream::read(char *buffer
, size_t maxSize
) {
51 while (realSize
< maxSize
) {
55 size_t size
= std::min((size_t)(maxSize
- realSize
), (size_t)(myBufferLength
- myBufferOffset
));
58 memcpy(buffer
+ realSize
, myBuffer
+ myBufferOffset
, size
);
61 myBufferOffset
+= size
;
69 void PdbStream::close() {
70 if (!myBase
.isNull()) {
79 void PdbStream::seek(int offset
, bool absoluteOffset
) {
81 offset
-= this->offset();
85 } else if (offset
< 0) {
86 offset
+= this->offset();
94 size_t PdbStream::offset() const {
98 size_t PdbStream::sizeOfOpened() {