summaryrefslogtreecommitdiffstats
path: root/mcop/buffer.h
blob: c1cc1b032f8595016c4c2bc6e90e65d966e3132e (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
    /*

    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 <string>
#include <vector>
#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<unsigned char> contents;

	BufferPrivate *d;	// unused
	unsigned char fromHexNibble(char c);

public:
	Buffer();
	~Buffer();

	bool readError();
	void writeBool(bool b);
	void writeBoolSeq(const std::vector<bool>& seq);
	void writeByte(mcopbyte b);
	void writeByteSeq(const std::vector<mcopbyte>& seq);
	void writeLong(long l);
	void writeLongSeq(const std::vector<long>& seq);
	void writeFloat(float f);
	void writeFloatSeq(const std::vector<float>& seq);
	void writeString(const std::string& s);
	void writeStringSeq(const std::vector<std::string>& seq);

	long size();
	long remaining();
	void *read(long l);
	void read(std::vector<mcopbyte>& raw, long l);
	void *peek(long l);
	void skip(long l);
	void rewind();

	void write(void *data, long l);
	void write(const std::vector<mcopbyte>& raw);

	bool readBool();
	void readBoolSeq(std::vector<bool>& result);
	mcopbyte readByte();
	void readByteSeq(std::vector<mcopbyte>& result);
	long readLong();
	void readLongSeq(std::vector<long>& result);
	float readFloat();
	void readFloatSeq(std::vector<float>& result);
	void readString(std::string& result);
	void readStringSeq(std::vector<std::string>& 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