forked from megagrump/moonblob
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlobWriter.moon
557 lines (502 loc) · 16.1 KB
/
BlobWriter.moon
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
-- @class BlobWriter
ffi = require('ffi')
band, bnot, shr, shl = bit.band, bit.bnot, bit.rshift, bit.lshift
local _byteOrder, _parseByteOrder, _Union
local _tags, _getTag, _taggedReaders, _taggedWriters, _packMap, _unpackMap, _arrayTypeMap
--- Writes binary data to memory.
class BlobWriter
--- Creates a new BlobWriter instance.
--
-- @tparam[opt] number|string sizeOrByteOrder Size or byte order
--
-- **Byte order**: Use `le` or `<` for little endian; `be` or `>` for big endian; `host`, `=` or `nil` to use the
-- host's native byteOrder (default)
--
-- @tparam[opt] number size The initial size of the blob in bytes. Default is 1024. Will grow automatically when
-- required.
-- @treturn BlobWriter A new BlobWriter instance.
-- @usage writer = BlobWriter!
-- @usage writer = BlobWriter('<', 1000)
-- @see clear
new: (sizeOrByteOrder, size) =>
@_union = _Union!
@_length, @_size = 0, 0
byteOrder = type(sizeOrByteOrder) == 'string' and sizeOrByteOrder or nil
size = type(sizeOrByteOrder) == 'number' and sizeOrByteOrder or size
@setByteOrder(byteOrder)
@_allocate(size or 1024)
--- Writes a value to the output buffer. Determines the type of the value automatically.
--
-- Supported value types are `number`, `string`, `boolean` and `table`.
-- @param value the value to write
-- @treturn BlobWriter self
write: (value) => @_writeTagged(value)
--- Writes a Lua number to the output buffer.
--
-- @tparam number value The number to write
-- @treturn BlobWriter self
number: (value) =>
@_union.f64 = value
@u32(@_union.u32[0])\u32(@_union.u32[1])
--- Writes a boolean value to the output buffer.
--
-- The value is written as an unsigned 8 bit value (`true = 1`, `false = 0`)
-- @tparam bool value The boolean value to write
--
-- @treturn BlobWriter self
bool: (value) => @u8(value and 1 or 0)
--- Writes a string to the output buffer.
--
-- Stores the length of the string as a `vu32` field before the actual string data.
-- @tparam string value The string to write
-- @treturn BlobWriter self
string: (value) =>
length = #value
@vu32(length)\raw(value, length)
--- Writes an unsigned 8 bit value to the output buffer.
--
-- @tparam number value The value to write
-- @treturn BlobWriter self
u8: (value) =>
@_grow(1) if @_length + 1 > @_size
@_data[@_length] = value
@_length += 1
@
--- Writes a signed 8 bit value to the output buffer.
--
-- @tparam number value The value to write
-- @treturn BlobWriter self
s8: (value) =>
@_union.s8[0] = value
@u8(@_union.u8[0])
--- Writes an unsigned 16 bit value to the output buffer.
--
-- @tparam number value The value to write
-- @treturn BlobWriter self
u16: (value) =>
len = @_length
@_grow(2) if len + 2 > @_size
@_data[len], @_data[len + 1] = @._orderBytes(band(value, 2 ^ 8 - 1), shr(value, 8))
@_length += 2
@
--- Writes a signed 16 bit value to the output buffer.
--
-- @tparam number value The value to write
-- @treturn BlobWriter self
s16: (value) =>
@_union.s16[0] = value
@u16(@_union.u16[0])
--- Writes an unsigned 32 bit value to the output buffer.
--
-- @tparam number value The value to write
-- @treturn BlobWriter self
u32: (value) =>
len = @_length
@_grow(4) if len + 4 > @_size
w1, w2 = @._orderBytes(band(value, 2 ^ 16 - 1), shr(value, 16))
b1, b2 = @._orderBytes(band(w1, 2 ^ 8 - 1), shr(w1, 8))
b3, b4 = @._orderBytes(band(w2, 2 ^ 8 - 1), shr(w2, 8))
@_data[len], @_data[len + 1], @_data[len + 2], @_data[len + 3] = b1, b2, b3, b4
@_length += 4
@
--- Writes a signed 32 bit value to the output buffer.
--
-- @tparam number value The value to write
-- @treturn BlobWriter self
s32: (value) =>
@_union.s32[0] = value
@u32(@_union.u32[0])
--- Writes a length-encoded unsigned 32 bit integer value.
--
-- The value is written in an encoded format. The length depends on the value; larger values need more space.
--
-- Space requirements:
--
-- | lower bound | upper bound | # bytes |
-- |------------:|------------:|:-------:|
-- | 0 | 127 | 1 |
-- | 128 | 16383 | 2 |
-- | 16384 | 2097151 | 3 |
-- | 2097151 | 268435455 | 4 |
-- | 268435456 | 4294967295 | 5 |
--
-- @{vu32size} computes the space requirement for an unsigned integer value.
-- @tparam number value The unsigned integer value to write
-- @treturn BlobWriter self
-- @see BlobWriter:vu32size
vu32: (value) =>
error("Exceeded u32 value limits") unless value < 2 ^ 32
for i = 7, 28, 7
mask, shift = 2 ^ i - 1, i - 7
return @u8(shr(band(value, mask), shift)) if value < 2 ^ i
@u8(shr(band(value, mask), shift) + 0x80)
@u8(shr(band(value, 0xf0000000), 28))
--- Writes a length-encoded signed 32 bit integer.
--
-- The value is written in an encoded format. The length depends on the value; larger values need more space.
--
-- Space requirements:
--
-- | lower bound | upper bound | # bytes |
-- |------------:|------------:|:-------:|
-- | -2147483648 | -268435455 | 5 |
-- | -268435454 | -2097151 | 4 |
-- | -2097150 | -16383 | 3 |
-- | -16382 | -127 | 2 |
-- | -126 | 126 | 1 |
-- | 127 | 16382 | 2 |
-- | 16383 | 2097150 | 3 |
-- | 2097151 | 268435454 | 4 |
-- | 268435455 | 2147483647 | 5 |
--
-- @{vs32size} computes the space requirement for a signed integer value.
-- @tparam number value The signed integer value to write
-- @treturn BlobWriter self
-- @see BlobWriter:vu32
-- @see BlobWriter:vs32size
vs32: (value) =>
error("Exceeded s32 value limits") unless value < 2 ^ 31 and value >= -2^31
signBit, value = value < 0 and 1 or 0, math.abs(value)
return @u8(shl(band(value, 0x3f), 1) + signBit) if value < 2 ^ 6
@u8(shl(band(value, 0x3f), 1) + signBit + 0x80)
for i = 13, 27, 7
mask, shift = 2 ^ i - 1, i - 7
return @u8(shr(band(value, mask), shift)) if value < 2 ^ i
@u8(shr(band(value, mask), shift) + 0x80)
@u8(shr(band(value, 0xf8000000), 27))
--- Writes an unsigned 64 bit value to the output buffer.
--
-- Lua numbers are only accurate for values < 2 ^ 53. Use the LuaJIT `ULL` suffix to write large numbers.
-- @usage writer\u64(72057594037927936ULL)
-- @tparam number value The value to write
-- @treturn BlobWriter self
u64: (value) =>
@_union.u64 = value
a, b = @._orderBytes(@_union.u32[0], @_union.u32[1])
@u32(a)\u32(b)
--- Writes a signed 64 bit value to the output buffer.
--
-- @tparam number value The value to write
-- @treturn BlobWriter self
-- @see BlobWriter:u64
s64: (value) =>
@_union.s64 = value
a, b = @._orderBytes(@_union.u32[0], @_union.u32[1])
@u32(a)\u32(b)
--- Writes a 32 bit floating point value to the output buffer.
--
-- @tparam number value The value to write
-- @treturn BlobWriter self
f32: (value) =>
@_union.f32[0] = value
@u32(@_union.u32[0])
--- Writes a 64 bit floating point value to the output buffer.
---
-- @tparam number value The value to write
-- @treturn BlobWriter self
f64: (value) => @number(value)
--- Writes raw binary data to the output buffer.
--
-- @tparam string|cdata value A `string` or `cdata` with the data to write
-- @tparam[opt] number length Length of data (not required when `value` is a string)
-- @treturn BlobWriter self
raw: (value, length) =>
length = length or #value
makeRoom = (@_size - @_length) - length
@_grow(math.abs(makeRoom)) if makeRoom < 0
ffi.copy(ffi.cast('uint8_t*', @_data + @_length), value, length)
@_length += length
@
--- Writes a string to the output buffer, followed by a null byte.
--
-- @tparam string value The string to write
-- @treturn BlobWriter self
cstring: (value) => @raw(value)\u8(0)
--- Writes a table to the output buffer.
--
-- Supported field types are number, string, bool and table. Functions are ignored. Cyclic references throw an error.
-- @tparam table value The table to write
-- @treturn BlobWriter self
table: (value) => @_writeTable(value, {})
--- Writes a sequential table of values. All values must be of the same type.
--
-- @tparam string valueType Type of the values in the array
--
-- Valid types are `s8`, `u8`, `s16`, `u16`, `s32`, `u32`, `vs32`, `vu32`, `s64`, `u64`, `f32`, `f64`,
-- `number`, `string`, `bool`, `cstring`, and `table`.
--
-- Stores the array length as a `vu32` encoded value before the actual table values (see parameter `writeLength`)
--
-- @tparam table values A sequential table of values of type `valueType`
--
-- Maximum allowed length is `2 ^ 32 - 1` values.
-- Behavior is undefined for table keys that are not sequential, or not starting at index 1.
-- @tparam[opt] boolean writeLength If `false`, no preceding length information will be written (default `true`)
-- @treturn BlobWriter self
array: (valueType, values, writeLength = true) =>
writer = _arrayTypeMap[valueType]
error("Invalid array type <#{valueType}>") unless writer
@vu32(#values) if writeLength
writer(@, v) for v in *values
@
--- Writes data according to a format string.
--
-- @tparam string format Data format descriptor string.
-- The format string syntax is loosely based on the format that Lua 5.3's
-- [string.pack](http://www.lua.org/manual/5.3/manual.html#6.4.2) accepts, but does not implement all
-- features and uses fixed instead of native data sizes.
--
-- Supported format specifiers:
--
-- * Byte order:
-- * `<`: little endian
-- * `>`: big endian
-- * `=`: host endian, default
--
-- Byte order can be switched any number of times in a format string.
-- * Integer types:
-- * `b` / `B`: signed/unsigned 8 bits
-- * `h` / `H`: signed/unsigned 16 bits
-- * `l` / `L`: signed/unsigned 32 bits
-- * `v` / `V`: signed/unsigned variable length 32 bits (see @{vs32} / @{vu32})
-- * `q` / `Q`: signed/unsigned 64 bits
-- * Boolean:
-- * `y`: 8 bits boolean value
-- * Floating point types:
-- * `f`: 32 bits floating point
-- * `d`, `n`: 64 bits floating point
-- * String types:
-- * `z`: zero terminated string
-- * `s`: string with preceding length information. Length is stored as a `vu32` encoded value
-- * Raw data:
-- * `c[length]`: Raw binary data
-- * Table:
-- * `t`: table as written by @{table}
--
-- @param ... values to write
-- @treturn BlobWriter self
-- @usage writer\pack('Bfy', 255, 23.0, true)
-- @see BlobReader:unpack
pack: (format, ...) =>
data, index, len = {...}, 1, nil
limit = select('#', ...)
_writeRaw = ->
l = tonumber(table.concat(len))
error("Invalid string length specification: #{table.concat(len)}") unless l
error("Maximum string length exceeded") unless l < 2 ^ 32
@raw(data[index], l)
index, len = index + 1, nil
format\gsub('.', (c) ->
if len
if tonumber(c)
table.insert(len, c)
else
error("Number of arguments to pack does not match format specifiers") unless index <= limit
_writeRaw!
unless len
writer = _packMap[c]
error("Invalid data type specifier: #{c}") unless writer
if c == 'c'
len = {}
else
error("Number of arguments to pack does not match format specifiers") unless index <= limit
index += 1 if writer(@, data[index])
)
_writeRaw! if len -- final specifier in format was a length specifier
@
-----------------------------------------------------------------------------
--- Clears the blob and discards all buffered data.
--
-- @tparam[opt] number size Set the writer buffer size to this value. If `nil`, the currently allocated buffer
-- is reused.
-- @treturn BlovWriter self
clear: (size) =>
@_length = 0
if size
@_data = nil
@_allocate(size)
@
--- Returns the current buffer contents as a string.
--
-- @treturn string A string with the current buffer contents
tostring: => ffi.string(@_data, @_length)
--- Returns the number of bytes stored in the blob.
--
-- @treturn number The number of bytes stored in the blob
length: => @_length
--- Returns the size of the write buffer in bytes
--
-- @treturn number Write buffer size in bytes
size: => @_size
--- Returns the number of bytes required to store an unsigned 32 bit value when written by @{vu32}.
--
-- @tparam number value The unsigned 32 bit value to write
-- @treturn number The number of bytes required by @{vu32} to store `value`
vu32size: (value) =>
error("Exceeded u32 value limits") unless value < 2 ^ 32
return 1 if value < 2 ^ 7
return 2 if value < 2 ^ 14
return 3 if value < 2 ^ 21
return 4 if value < 2 ^ 28
5
--- Returns the number of bytes required to store a signed 32 bit value when written by @{vs32}.
--
-- @tparam number value The signed 32 bit value to write
-- @treturn number The number of bytes required by @{vs32} to store `value`
vs32size: (value) =>
error("Exceeded s32 value limits") unless value < 2 ^ 31 and value >= -2 ^ 31
value = math.abs(value) + 1
return 1 if value < 2 ^ 7
return 2 if value < 2 ^ 14
return 3 if value < 2 ^ 21
return 4 if value < 2 ^ 28
5
--- Sets the order in which multi-byte values will be written.
--
-- @tparam string byteOrder Byte order
--
-- Can be either `le` or `<` for little endian, `be` or `>` for big endian, or `host` or `nil` for native host byte
-- order.
--
-- @treturn BlobWriter self
setByteOrder: (byteOrder) =>
@_orderBytes = _byteOrder[_parseByteOrder(byteOrder)]
@
------------------------------------------------------------------------------------------------------
_allocate: (size) =>
local data
if size > 0
data = ffi.new('uint8_t[?]', size)
ffi.copy(data, @_data, @_length) if @_data
@_data, @_size = data, size
@_length = math.min(size, @_length)
_grow: (minimum = 0) =>
newSize = math.max(@_size + minimum, math.floor(math.max(1, @_size * 1.5) + .5))
@_allocate(newSize)
_writeTable: (t, stack = {}) =>
error("Cycle detected; can't serialize table") if stack[t]
stack[t] = true
@_writeTaggedPair(key, value, stack) for key, value in pairs(t)
stack[t] = nil
@u8(_tags.stop)
_writeTaggedPair: (key, value, stack) =>
return @ if type(value) == 'function'
@_writeTagged(key, stack)
@_writeTagged(value, stack)
_writeTagged: (value, stack) =>
tag = _getTag(value)
error("Can't write values of type '#{type(value)}'") unless tag
@u8(tag)
_taggedWriters[tag](@, value, stack)
_byteOrder =
le: (v1, v2) -> v1, v2
be: (v1, v2) -> v2, v1
_tags =
stop: 0
number: 1
string: 2
table: 3
[true]: 4
[false]: 5
zero: 6
vs32: 7
vu32: 8
vs64: 9
vu64: 10
with BlobWriter
_taggedWriters = {
.number
.string
._writeTable
=> @ -- true
=> @ -- false
=> @ -- 0
.vs32
.vu32
(val) => -- vs64
@_union.s64 = val
@vs32(@_union.s32[0])\vs32(@_union.s32[1])
(val) => -- vu64
@_union.u64 = val
@vu32(@_union.u32[0])\vs32(@_union.u32[1])
}
_arrayTypeMap =
s8: .s8
u8: .u8
s16: .s16
u16: .u16
s32: .s32
u32: .u32
s64: .s64
u64: .u64
vs32: .vs32
vu32: .vu32
f32: .f32
f64: .f64
number: .number
string: .string
cstring: .cstring
bool: .bool
table: .table
_packMap =
b: .s8
B: .u8
h: .s16
H: .u16
l: .s32
L: .u32
v: .vs32
V: .vu32
q: .s64
Q: .u64
f: .f32
d: .number
n: .number
c: .raw
s: .string
z: .cstring
t: .table
y: .bool
['<']: => nil, @setByteOrder('<')
['>']: => nil, @setByteOrder('>')
['=']: => nil, @setByteOrder('=')
_parseByteOrder = (endian) ->
switch endian
when nil, '=', 'host'
endian = ffi.abi('le') and 'le' or 'be'
when '<', 'le'
endian = 'le'
when '>', 'be'
endian = 'be'
else
error("Invalid byteOrder identifier: #{endian}")
endian
_getTag = (value) ->
t = type(value)
switch t
when 'boolean'
return _tags[value]
when 'number'
return _tags.number if math.floor(value) ~= value
return _tags.zero if value == 0
if value > 0
return _tags.vu32 if value < 2 ^ 32
return _tags.vu64
return _tags.vs32 if value >= -2 ^ 31
return _tags.vs64
_tags[t]
_Union = ffi.typeof([[
union {
int8_t s8[8];
uint8_t u8[8];
int16_t s16[4];
uint16_t u16[4];
int32_t s32[2];
uint32_t u32[2];
float f32[2];
int64_t s64;
uint64_t u64;
double f64;
}
]])
BlobWriter