blob: 432f952738f10c05400536600a7b02297548bae3 (
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
 | #ifndef XDRSTREAM_H
#define XDRSTREAM_H
#include <stdint.h>
class XDRStream {
 private:
	XDRStream(const XDRStream& copy);
	uint32_t next_array_len;
	bool is_fixed_length;
 public:
	XDRStream() : next_array_len(0) {}
	void setNextArrayLen(uint32_t len) {next_array_len = len;}
	void setFixedLength() { is_fixed_length = true; }
	void setVariableLength() { is_fixed_length = false; }
	virtual void put(char c) = 0;
	virtual void flush() {}
	XDRStream & operator<<(char c);
	XDRStream & operator<<(unsigned char c);
	XDRStream & operator<<(unsigned short number);
	XDRStream & operator<<(short number);
	XDRStream & operator<<(unsigned int number);
	XDRStream & operator<<(int number);
	XDRStream & operator<<(unsigned long number);
	XDRStream & operator<<(long number);
	XDRStream & operator<<(unsigned long long number);
	XDRStream & operator<<(long long number);
	XDRStream & operator<<(char const *text);
	template<int N> XDRStream & operator<<(char const (&text)[N]);
	XDRStream & operator<<(XDRStream & (*fun) (XDRStream &));
};
// FLUSH: flush XDRStream buffer
XDRStream & flush(XDRStream & os);
// TERM: zero-termination
XDRStream & term(XDRStream & os);
template<int N>
XDRStream & opaque(XDRStream & os);
XDRStream & fixed(XDRStream & os);
XDRStream & variable(XDRStream & os);
#endif //OUTPUTSTREAM_H
 |