summaryrefslogtreecommitdiffstats
path: root/src/kvilib/ext/kvi_databuffer.h
blob: 62e09b06c3452b6ffc9c20beaedd48a949700583 (plain)
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
#ifndef _KVI_DATABUFFER_H_
#define _KVI_DATABUFFER_H_
//
//   File : kvi_databuffer.h
//   Creation date : Thu Aug 23 17:04:25 2001 GMT by Szymon Stefanek
//
//   This file is part of the KVirc irc client distribution
//   Copyright (C) 2001 Szymon Stefanek (pragma at kvirc dot net)
//
//   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 opinion) 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. ,51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//

#include "kvi_settings.h"
#include "kvi_heapobject.h"

class KVILIB_API KviDataBuffer : public KviHeapObject
{
public:
	// uSize MUST be greater than 0
	// if data is non-zero, it MUST point to a buffer at least uSize bytes long
	// and the data is COPIED from that buffer!
	KviDataBuffer(int uSize,const unsigned char * data = 0);
	KviDataBuffer();
	~KviDataBuffer();
private:
	int m_uSize;
	unsigned char * m_pData;
public:
	int size() const { return m_uSize; };
	unsigned char * data() const { return m_pData; };
	// uSize MUST be smaller or equal to size()
	// consumes data!
	void remove(int uSize);
	void clear(){ if(m_uSize > 0)remove(m_uSize); };
	// uSize MUST be greater than 0
	void resize(int uSize);
	void addSize(int uSize){ resize(m_uSize + uSize); };
	void append(const unsigned char * data,int uSize);
	void append(const KviDataBuffer &b){ append(b.data(),b.size()); };
	int find(unsigned char c);
	int find(const unsigned char * block,int uSize);
};

#endif //_KVI_DATABUFFER_H_