-
Notifications
You must be signed in to change notification settings - Fork 20
/
buffer_extras.js
258 lines (243 loc) · 7.21 KB
/
buffer_extras.js
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
/*
Copyright (c) 2010 Tim Caswell <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
var Buffer = module.exports = require('buffer').Buffer;
var proto = Buffer.prototype;
// Cleans the buffer to be all zeroes
proto.zeroOut = function zeroOut() {
for (var i = 0, l = this.length; i < l; i++) {
this[i] = 0;
}
};
// Writes a 32 bit integer at offset
proto.int32Write = function int32Write(number, offset) {
offset = offset || 0;
this[offset] = number >>> 24;
this[offset + 1] = number >>> 16;
this[offset + 2] = number >>> 8;
this[offset + 3] = number >>> 0;
};
//Writes a 64 bit integer at offset - ok, it says it does,
// but JS does not have such a beast - here be dragons...
proto.int64Write = function int64Write(high, low, offset) {
offset = offset || 0;
this[offset] = high >>> 24;
this[offset + 1] = high >>> 16;
this[offset + 2] = high >>> 8;
this[offset + 3] = high >>> 0;
this[offset + 4] = low >>> 24;
this[offset + 5] = low >>> 16;
this[offset + 6] = low >>> 8;
this[offset + 7] = low >>> 0;
};
// Writes a 16 bit integer at offset
proto.int16Write = function int16Write(number, offset) {
offset = offset || 0;
this[offset] = number >>> 8;
this[offset + 1] = number >>> 0;
};
// Reads a 32 bit integer from offset
proto.int32Read = function int32Read(offset) {
offset = offset || 0;
return (this[offset] * 0x1000000) +
(this[offset + 1] << 16) +
(this[offset + 2] << 8) +
this[offset + 3];
};
// With this func, you are responsible for dealing with the hi and
// low parts - it is not the job of this module to deal with
// 64-bit integers - at least, not right now.
proto.int64Read = function int64Read(offset) {
offset = offset || 0;
return [(this[offset] << 24) +
(this[offset + 1] << 16) +
(this[offset + 2] << 8) +
(this[offset + 3]),
(this[offset + 4] << 24) +
(this[offset + 5] << 16) +
(this[offset + 6] << 8) +
this[offset + 7]];
};
// Reads a 32 bit integer from offset
proto.int16Read = function int16Read(offset) {
offset = offset || 0;
return (this[offset] << 8) +
this[offset + 1];
};
Buffer.makeWriter = function makeWriter() {
var data = [];
var writer;
var push = {
int64: function pushInt64(hi, low) {
var b = new Buffer(8);
b.int64Write(hi, low);
data.push(b);
return writer;
},
int32: function pushInt32(number) {
var b = new Buffer(4);
b.int32Write(number);
data.push(b);
return writer;
},
int16: function pushInt16(number) {
var b = new Buffer(2);
b.int16Write(number);
data.push(b);
return writer;
},
string: function pushString(string) {
data.push(new Buffer(string, 'utf8'));
return writer;
},
cstring: function pushCstring(string) {
data.push(new Buffer(string + "\0", 'utf8'));
return writer;
},
lstring: function pushCstring(string) {
var b = new Buffer(4);
b.int32Write(Buffer.byteLength(string));
data.push(b);
data.push(new Buffer(string, 'utf8'));
return writer;
},
multicstring: function pushMulticstring(fields) {
data.push(new Buffer(fields.join("\0") + "\0\0", 'utf8'));
return writer;
},
hash: function pushHash(hash) {
var keys = Object.keys(hash);
var pairs = [];
for (var i = 0, l = keys.length; i < l; i++) {
var key = keys[i];
pairs.push(key + "\0" + hash[key] + "\0");
}
data.push(new Buffer(pairs.join("") + "\0", 'utf8'));
return writer;
}
};
writer = {
data: data,
push: push,
// Convert an array of buffers into a single buffer using memcopy
toBuffer: function toBuffer() {
var total = 0;
var i, l = data.length;
for (i = 0; i < l; i++) {
total += data[i].length;
}
var b = new Buffer(total);
var offset = 0;
for (i = 0; i < l; i++) {
data[i].copy(b, offset);
offset += data[i].length;
}
return b;
}
};
return writer;
};
proto.toReader = function toReader() {
var offset = 0, length = this.length, buffer = this;
return {
empty: function empty() {
return offset >= length;
},
int64: function shiftInt64() {
var hi_low_pair = buffer.int64Read(offset);
offset += 8;
return hi_low_pair;
},
int32: function shiftInt32() {
var number = buffer.int32Read(offset);
offset += 4;
return number;
},
int16: function shiftInt16() {
var number = buffer.int16Read(offset);
offset += 2;
return number;
},
buffer: function shiftBuffer(length) {
var b = buffer.slice(offset, offset + length);
offset += length;
return b;
},
string: function shiftString(length) {
var string = buffer.toString('utf8', offset, offset + length);
offset += length;
return string;
},
cstring: function shiftCstring() {
var end = offset;
while (buffer[end] > 0 && end < length) { end++; }
var string = buffer.toString('utf8', offset, end);
offset = end + 1;
return string;
},
lstring: function shiftLString() {
var length = buffer.int32Read(offset);
offset += 4;
var string = buffer.toString('utf8', offset, offset + length);
offset += length;
return string;
},
multicstring: function shiftMulticstring() {
var fields = [];
while (buffer[offset] > 0) {
fields.push(this.cstring());
}
offset++;
return fields;
},
hash: function shiftHash() {
var hash = {};
while (buffer[offset] > 0) {
hash[this.cstring()] = this.cstring();
}
offset++;
return hash;
}
};
};
// Test It
// var sys = require('sys');
//
// var w = Buffer.makeWriter();
// w.push.int32(305419896);
// w.push.int16(4660);
// w.push.string("12345");
// w.push.cstring("Héllø Wø®l∂");
// w.push.multicstring(["Hello", "World"]);
// w.push.hash({name: "Tim", age: "28"});
// w.push.int32(0x12345678);
// w.push.int16(0x1234);
// var b = w.toBuffer();
// // sys.p(b);
// var r = b.toReader();
// sys.p([
// r.int32(),
// r.int16(),
// r.string(5),
// r.cstring(),
// r.multicstring(),
// r.hash(),
// r.int32(),
// r.int16()
// ]);
//