/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org 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 Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef _VOS_STREAM_HXX_ #define _VOS_STREAM_HXX_ # include # include # include namespace vos { /** Adds seeking capabilities to IStream */ class IPositionableStream : public NAMESPACE_VOS(IStream) { public: typedef sal_Int32 Offset; public: /// virtual sal_Bool SAL_CALL seekTo(Offset position) const = 0; /// virtual sal_Bool SAL_CALL seekRelative(Offset change) const = 0; /// virtual sal_Bool SAL_CALL seekToEnd() const = 0; /// virtual sal_Bool SAL_CALL changeSize(sal_uInt32 new_size) = 0; /// virtual sal_uInt32 SAL_CALL getSize() const = 0; /// virtual Offset SAL_CALL getOffset() const = 0; protected: IPositionableStream() { } virtual ~IPositionableStream() { } }; /** Implements IPositionableStream */ class OStream : public NAMESPACE_VOS(OObject), public NAMESPACE_VOS(IPositionableStream) { VOS_DECLARE_CLASSINFO(VOS_NAMESPACE(OStream, vos)); public: /// OStream(IPositionableStream& rStream); /// virtual ~OStream (); // ----------------- Read operations ------------------------- /// virtual sal_Int32 SAL_CALL read(void* pbuffer, sal_uInt32 n) const; /// sal_Int32 SAL_CALL read(IPositionableStream::Offset offset, void* pbuffer, sal_uInt32 n) const; /// inline sal_Bool SAL_CALL read(sal_Int32& value) const; /// inline sal_Bool SAL_CALL read(sal_Int16& value) const; /// inline sal_Bool SAL_CALL read(sal_Char& value) const; /// inline sal_Bool SAL_CALL read(sal_uInt8& value) const; // ----------------- Write operations ------------------------ /// virtual sal_Int32 SAL_CALL write(const void* pbuffer, sal_uInt32 n); /// sal_Int32 SAL_CALL write(IPositionableStream::Offset offset, const void* pbuffer, sal_uInt32 n); /// inline sal_Bool SAL_CALL write(sal_Int32 value); /// inline sal_Bool SAL_CALL write(sal_Int16 value); /// inline sal_Bool SAL_CALL write(sal_Char value); /// inline sal_Bool SAL_CALL write(sal_uInt8 value); /// sal_Bool SAL_CALL append(void* pbuffer, sal_uInt32 n); // Write at the end of the Stream. // ------------- Positioning and sizing operations ---------- /// inline sal_Bool SAL_CALL seekToBegin() const; // ----------------- Stream interface ------------------------ /// virtual sal_Bool SAL_CALL seekTo(IPositionableStream::Offset pos) const; /// virtual sal_Bool SAL_CALL seekToEnd() const; /// virtual sal_Bool SAL_CALL seekRelative(IPositionableStream::Offset change) const; /// virtual sal_Bool SAL_CALL changeSize(sal_uInt32 new_size); /// virtual sal_uInt32 SAL_CALL getSize() const; /// virtual sal_Bool SAL_CALL isEof() const; /// virtual IPositionableStream::Offset SAL_CALL getOffset() const; protected: IPositionableStream& m_rStream; // ----------------- Stream operators ------------------------ friend const OStream& operator>> (OStream& rStream, sal_Int32& value); friend const OStream& operator>> (OStream& rStream, sal_Int16& value); friend const OStream& operator>> (OStream& rStream, sal_uInt8& value); friend const OStream& operator>> (OStream& rStream, sal_Char& value); friend OStream& operator<< (OStream& rStream, sal_Int32 value); friend OStream& operator<< (OStream& rStream, sal_Int16 value); friend OStream& operator<< (OStream& rStream, sal_uInt8 value); friend OStream& operator<< (OStream& rStream, sal_Char value); }; inline sal_Bool OStream::read(sal_Int32& value) const { return (read(&value, sizeof(value)) == sizeof(value)); } inline sal_Bool OStream::read(sal_Int16& value) const { return (read(&value, sizeof(value)) == sizeof(value)); } inline sal_Bool OStream::read(sal_Char& value) const { return (read(&value, sizeof(value)) == sizeof(value)); } inline sal_Bool OStream::read(sal_uInt8& value) const { return (read(&value, sizeof(value)) == sizeof(value)); } inline sal_Bool OStream::write(sal_Int32 value) { return (write(&value, sizeof(value)) == sizeof(value)); } inline sal_Bool OStream::write(sal_Int16 value) { return (write(&value, sizeof(value)) == sizeof(value)); } inline sal_Bool OStream::write(sal_Char value) { return (write(&value, sizeof(value)) == sizeof(value)); } inline sal_Bool OStream::write(sal_uInt8 value) { return (write((sal_uInt8*)&value, sizeof(value)) == sizeof(value)); } inline sal_Bool OStream::seekToBegin() const { return (seekTo(0L)); } inline const OStream& operator>> (OStream& rStream, sal_Int32& value) { rStream.read(value); return (rStream); } inline const OStream& operator>> (OStream& rStream, sal_Int16& value) { rStream.read(value); return (rStream); } inline const OStream& operator>> (OStream& rStream, sal_uInt8& value) { rStream.read(value); return (rStream); } inline const OStream& operator>> (OStream& rStream, sal_Char& value) { rStream.read(value); return (rStream); } inline OStream& operator<< (OStream& rStream, sal_Int32 value) { rStream.write(value); return (rStream); } inline OStream& operator<< (OStream& rStream, sal_Int16 value) { rStream.write(value); return (rStream); } inline OStream& operator<< (OStream& rStream, sal_uInt8 value) { rStream.write(value); return (rStream); } inline OStream& operator<< (OStream& rStream, sal_Char value) { rStream.write(value); return (rStream); } } #endif // _VOS_STREAM_HXX_