/* Copyright (C) 2000 Stefan Westerfeld stefan@space.twc.de 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 BUFFER_H #define BUFFER_H #include #include #include "arts_export.h" /* * BC - Status (2002-03-08): Buffer. * * Has to be kept binary compatible. As buffer is speed relevant, currently * there are no private d ptrs, and the idea is to keep this as possible. * * If not, put additional stuff in the d ptr, but keep as much data as * possible in the main items. */ namespace Arts { #ifndef MCOPBYTE_DEFINED #define MCOPBYTE_DEFINED typedef unsigned char mcopbyte; #endif class BufferPrivate; class ARTS_EXPORT Buffer { private: long rpos; bool _readError; std::vector contents; BufferPrivate *d; // unused unsigned char fromHexNibble(char c); public: Buffer(); ~Buffer(); bool readError(); void writeBool(bool b); void writeBoolSeq(const std::vector& seq); void writeByte(mcopbyte b); void writeByteSeq(const std::vector& seq); void writeLong(long l); void writeLongSeq(const std::vector& seq); void writeFloat(float f); void writeFloatSeq(const std::vector& seq); void writeString(const std::string& s); void writeStringSeq(const std::vector& seq); long size(); long remaining(); void *read(long l); void read(std::vector& raw, long l); void *peek(long l); void skip(long l); void rewind(); void write(void *data, long l); void write(const std::vector& raw); bool readBool(); void readBoolSeq(std::vector& result); mcopbyte readByte(); void readByteSeq(std::vector& result); long readLong(); void readLongSeq(std::vector& result); float readFloat(); void readFloatSeq(std::vector& result); void readString(std::string& result); void readStringSeq(std::vector& result); void patchLength(); void patchLong(long position, long value); std::string toString(const std::string& name); bool fromString(const std::string& data, const std::string& name); }; } #endif