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
|
/* This file is part of the KDE project
Copyright (C) 2000 David Faure <faure@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; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef koStoreDevice_h
#define koStoreDevice_h
#include <KoStore.h>
/**
* This class implements a QIODevice around KoStore, so that
* it can be used to create a QDomDocument from it, to be written or read
* using QDataStream or to be written using QTextStream
*/
class KoStoreDevice : public QIODevice
{
public:
/// Note: KoStore::open() should be called before calling this.
explicit KoStoreDevice(KoStore * store) : m_store(store) {
// koffice-1.x behavior compat: a KoStoreDevice is automatically open
setOpenMode(m_store->mode() == KoStore::Read ? QIODevice::ReadOnly : QIODevice::WriteOnly);
}
~KoStoreDevice() {}
virtual bool isSequential() const {
return true;
}
virtual bool open(OpenMode m) {
setOpenMode(m);
if (m & QIODevice::ReadOnly)
return (m_store->mode() == KoStore::Read);
if (m & QIODevice::WriteOnly)
return (m_store->mode() == KoStore::Write);
return false;
}
virtual void close() {}
qint64 size() const {
if (m_store->mode() == KoStore::Read)
return m_store->size();
else
return 0xffffffff;
}
#if 0
int getch() {
char c[2];
if (m_store->read(c, 1) == -1)
return -1;
else
return c[0];
}
int putch(int _c) {
char c[2];
c[0] = _c;
c[1] = 0;
if (m_store->write(c, 1) == 1)
return _c;
else
return -1;
}
int ungetch(int) {
return -1;
} // unsupported
#endif
// See QIODevice
virtual qint64 pos() const {
return m_store->pos();
}
virtual bool seek(qint64 pos) {
return m_store->seek(pos);
}
virtual bool atEnd() const {
return m_store->atEnd();
}
protected:
KoStore * m_store;
virtual qint64 readData(char *data, qint64 maxlen) {
return m_store->read(data, maxlen);
}
virtual qint64 writeData(const char *data, qint64 len) {
return m_store->write(data, len);
}
};
#endif
|