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
105
|
#include <string.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "Buffer.h"
#include "generic.h"
#include "gettext.h"
Buffer::Buffer() : Handle(-1), buffer(0), zero(0), realsiz(0), bufsiz(0), ptr(0) { }
Buffer::~Buffer() {
free(buffer);
}
Buffer::Buffer(const Buffer & b) : Handle(-1), buffer(0), zero(b.zero), realsiz(b.realsiz), bufsiz(b.bufsiz), ptr(b.ptr) {
buffer = (char *) malloc(bufsiz);
memcpy(buffer, b.buffer, bufsiz);
}
ssize_t Buffer::write(const void *buf, size_t count) throw (GeneralException) {
if (!count) {
return 0;
}
if (count + realsiz > bufsiz) {
int numblocks = (count + realsiz) / realloc_threshold;
int remains = (count + realsiz) % realloc_threshold;
buffer = (char *) realloc(buffer, bufsiz = ((numblocks + (remains ? 1 : 0)) * realloc_threshold));
}
memcpy(buffer + realsiz, buf, count);
realsiz += count;
return count;
}
ssize_t Buffer::read(void *buf, size_t count) throw (GeneralException) {
count = MIN(count, realsiz - ptr);
if (!count) {
return 0;
}
memcpy(buf, buffer + ptr, count);
ptr += count;
if (ptr >= realloc_threshold) {
int numblocks = (bufsiz / realloc_threshold) - (ptr / realloc_threshold);
memmove(buffer, buffer + (bufsiz - numblocks * realloc_threshold), numblocks * realloc_threshold);
ptr -= (bufsiz - numblocks * realloc_threshold);
realsiz -= (bufsiz - numblocks * realloc_threshold);
buffer = (char *) realloc(buffer, bufsiz = (numblocks * realloc_threshold));
}
return count;
}
bool Buffer::CanRead() const {
return true;
}
bool Buffer::CanWrite() const {
return true;
}
String Buffer::GetName() const {
return "Buffer";
}
Buffer Buffer::operator=(const Buffer & b) {
if (b.buffer != buffer) {
free(buffer);
realsiz = b.realsiz;
ptr = b.ptr;
if ((bufsiz = b.bufsiz)) {
buffer = (char *) malloc(bufsiz);
memcpy(buffer, b.buffer, realsiz);
} else {
buffer = 0;
}
}
return *this;
}
bool Buffer::CanWatch() const {
return false;
}
ssize_t Buffer::GetSize() const {
return realsiz;
}
char Buffer::operator[](size_t p) const {
if (p >= realsiz) {
return 0;
} else {
return buffer[ptr + p];
}
}
char & Buffer::operator[](size_t p) {
if (p >= realsiz) {
return zero;
} else {
return buffer[ptr + p];
}
}
|