You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
2.9 KiB
98 lines
2.9 KiB
/* 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 TQIODevice around KoStore, so that
|
|
* it can be used to create a TQDomDocument from it, to be written or read
|
|
* using TQDataStream or to be written using TQTextStream
|
|
*/
|
|
class KoStoreDevice : public TQIODevice
|
|
{
|
|
public:
|
|
/// Note: KoStore::open() should be called before calling this.
|
|
KoStoreDevice( KoStore * store ) : m_store(store) {
|
|
setType( IO_Direct );
|
|
}
|
|
~KoStoreDevice() {}
|
|
|
|
bool open( int m ) {
|
|
if ( m & IO_ReadOnly )
|
|
return ( m_store->mode() == KoStore::Read );
|
|
if ( m & IO_WriteOnly )
|
|
return ( m_store->mode() == KoStore::Write );
|
|
return false;
|
|
}
|
|
void close() { }
|
|
void flush() { }
|
|
|
|
#ifdef USE_QT4
|
|
qint64 size() const {
|
|
#else // USE_QT4
|
|
Offset size() const {
|
|
#endif // USE_QT4
|
|
if ( m_store->mode() == KoStore::Read )
|
|
return m_store->size();
|
|
else
|
|
return 0xffffffff;
|
|
}
|
|
|
|
virtual TQ_LONG readBlock( char *data, TQ_ULONG maxlen ) { return m_store->read(data, maxlen); }
|
|
virtual TQ_LONG writeBlock( const char *data, TQ_ULONG len ) { return m_store->write( data, len ); }
|
|
// Not virtual, only to uncover shadow
|
|
TQ_LONG writeBlock( const TQByteArray& data ) { return TQIODevice::writeBlock( data ); }
|
|
|
|
#ifdef USE_QT4
|
|
inline qint64 readData ( char * data, qint64 maxSize ) { return readBlock(data, maxSize); }
|
|
inline qint64 writeData ( const char * data, qint64 maxSize ) { return writeBlock(data, maxSize); }
|
|
#endif // USE_QT4
|
|
|
|
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
|
|
|
|
// See TQIODevice
|
|
virtual bool at( Offset pos ) { return m_store->at(pos); }
|
|
virtual Offset at() const { return m_store->at(); }
|
|
virtual bool atEnd() const { return m_store->atEnd(); }
|
|
|
|
protected:
|
|
KoStore * m_store;
|
|
};
|
|
|
|
#endif
|