/* AbiSource Program Utilities * Copyright (C) 1998 AbiSource, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. */ #ifndef UT_BYTEBUF_H #define UT_BYTEBUF_H /***************************************************************** ** A buffer class which can grow and shrink *****************************************************************/ #include #include "ut_types.h" class ABI_EXPORT UT_ByteBuf { public: UT_ByteBuf(UT_uint32 iChunk = 0); ~UT_ByteBuf(); bool append(const UT_Byte * pValue, UT_uint32 length); bool ins(UT_uint32 position, const UT_Byte * pValue, UT_uint32 length); bool ins(UT_uint32 position, UT_uint32 length); bool del(UT_uint32 position, UT_uint32 amount); bool overwrite(UT_uint32 position, UT_Byte * pValue, UT_uint32 length); void truncate(UT_uint32 position); UT_uint32 getLength(void) const; const UT_Byte * getPointer(UT_uint32 position) const; /* temporary use only */ bool writeToFile(const char* pszFileName) const; bool insertFromFile(UT_uint32 iPosition, const char* pszFilename); bool insertFromFile(UT_uint32 iPosition, FILE * fp); private: bool _byteBuf(UT_uint32 spaceNeeded); UT_Byte * m_pBuf; UT_uint32 m_iSize; /* amount currently used */ UT_uint32 m_iSpace; /* space currently allocated */ UT_uint32 m_iChunk; /* unit for realloc */ }; #endif /* UT_BYTEBUF_H */