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
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
|
--!A cross-platform build utility based on Lua
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
-- Copyright (C) 2015-present, Xmake Open Source Community.
--
-- @author ruki
-- @file bytes.lua
--
-- define module: bytes
local bytes = bytes or {}
local _instance = _instance or {}
-- load modules
local bit = require("base/bit")
local os = require("base/os")
local utils = require("base/utils")
local todisplay = require("base/todisplay")
local libc = require("base/libc")
local table = require("base/table")
-- new a bytes instance
--
-- bytes(size[, init]): allocates a buffer of given size, init with given number or char value
-- bytes(size, ptr [, manage]): mounts buffer on existing storage (manage memory or not)
-- bytes(str): mounts a buffer from the given string
-- bytes(bytes, start, last): mounts a buffer from another one, with start/last limits
-- bytes(bytes1, bytes2, bytes3, ...): allocates and concat buffer from list of byte buffers
-- bytes(bytes): allocates a buffer from another one (strict replica, sharing memory)
-- bytes({bytes1, bytes2, ...}): allocates and concat buffer from a list of byte buffers (table)
-- bytes({})/bytes(): allocate an empty buffer
--
function _instance.new(...)
local args = {...}
local arg1, arg2, arg3 = table.unpack(args)
local instance = table.inherit(_instance)
if type(arg1) == "number" then
local size = arg1
local arg2_type = type(arg2)
if arg2_type == "cdata" or arg2_type == "userdata" then
-- bytes(size, ptr [, manage]): mounts buffer on existing storage (manage memory or not)
local ptr = arg2
local manage = arg3
if manage then
instance._CDATA = libc.dataptr(ptr, {gc = true})
instance._MANAGED = true
else
instance._CDATA = libc.dataptr(ptr)
instance._MANAGED = false
end
else
-- bytes(size[, init]): allocates a buffer of given size
local init
if arg2 then
if arg2_type == "number" then
init = arg2
elseif arg2_type == "string" then
init = arg2:byte()
else
os.raise("invalid arguments #2 for bytes(size, ...), cdata, string, number or nil expected!")
end
end
local ptr = libc.malloc(size, {gc = true})
if init then
libc.memset(ptr, init, size)
end
instance._CDATA = ptr
instance._MANAGED = true
end
instance._SIZE = size
instance._READONLY = false
elseif type(arg1) == "string" then
-- bytes(str): mounts a buffer from the given string
local str = arg1
instance._SIZE = #str
instance._CDATA = libc.dataptr(str)
instance._REF = str -- keep ref for GC
instance._MANAGED = false
instance._READONLY = true
elseif type(arg1) == "table" then
if type(arg2) == 'number' then
-- bytes(bytes, start, last): mounts a buffer from another one, with start/last limits:
local b = arg1
local start = arg2 or 1
local last = arg3 or b:size()
if start < 1 or last > b:size() then
os.raise("incorrect bounds(%d-%d) for bytes(...)!", start, last)
end
instance._SIZE = last - start + 1
instance._CDATA = b:cdata() - 1 + start
instance._REF = b -- keep lua ref for GC
instance._MANAGED = false
instance._READONLY = b:readonly()
elseif type(arg2) == "table" then
-- bytes(bytes1, bytes2, bytes3, ...): allocates and concat buffer from list of byte buffers
instance._SIZE = 0
for _, b in ipairs(args) do
instance._SIZE = instance._SIZE + b:size()
end
instance._CDATA = libc.malloc(instance._SIZE, {gc = true})
local offset = 0
for _, b in ipairs(args) do
libc.memcpy(instance._CDATA + offset, b:cdata(), b:size())
offset = offset + b:size()
end
instance._MANAGED = true
instance._READONLY = false
elseif not arg2 and arg1[1] and type(arg1[1]) == 'table' then
-- bytes({bytes1, bytes2, ...}): allocates and concat buffer from a list of byte buffers (table)
args = arg1
instance._SIZE = 0
for _, b in ipairs(args) do
instance._SIZE = instance._SIZE + b:size()
end
instance._CDATA = libc.malloc(instance._SIZE, {gc = true})
local offset = 0
for _, b in ipairs(args) do
libc.memcpy(instance._CDATA + offset, b._CDATA, b:size())
offset = offset + b:size()
end
instance._MANAGED = true
instance._READONLY = false
elseif not arg2 and arg1.size and arg1:size() > 0 then
-- bytes(bytes): allocates a buffer from another one (strict replica, sharing memory)
local b = arg1
local start = 1
local last = arg3 or b:size()
if start < 1 or last > b:size() then
os.raise("incorrect bounds(%d-%d)!", start, last)
end
instance._SIZE = last - start + 1
instance._CDATA = b:cdata() -1 + start
instance._REF = b -- keep lua ref for GC
instance._MANAGED = false
instance._READONLY = b:readonly()
else
-- bytes({}): allocate an empty buffer
instance._SIZE = 0
instance._CDATA = nil
instance._MANAGED = false
instance._READONLY = true
end
elseif arg1 == nil then
-- bytes(): allocate an empty buffer
instance._SIZE = 0
instance._CDATA = nil
instance._MANAGED = false
instance._READONLY = true
end
if instance:size() == nil then
os.raise("invalid arguments for bytes(...)!")
end
setmetatable(instance, _instance)
return instance
end
-- get bytes size
function _instance:size()
return self._SIZE
end
-- get bytes data
function _instance:cdata()
return self._CDATA
end
-- get data address
function _instance:caddr()
return libc.ptraddr(self:cdata())
end
-- readonly?
function _instance:readonly()
return self._READONLY
end
-- bytes:ipairs()
function _instance:ipairs()
local index = 0
return function (...)
if index < self:size() then
index = index + 1
return index, self[index]
end
end
end
-- get a slice of bytes
function _instance:slice(start, last)
return bytes(self, start, last)
end
-- copy bytes
function _instance:copy(src, start, last)
if self:readonly() then
os.raise("%s: cannot be modified!", self)
end
if type(src) == "string" then
src = bytes(src)
end
local srcsize = src:size()
start = start or 1
last = last or srcsize
if start < 1 or start > srcsize then
os.raise("%s: invalid start(%d)!", self, start)
end
if last < start - 1 or last > srcsize + start - 1 then
os.raise("%s: invalid last(%d)!", self, last)
end
local copysize = last + 1 - start
if copysize > self:size() then
os.raise("%s: cannot copy bytes, src:size(%d) must be smaller than %d!", self, copysize, self:size())
end
libc.memcpy(self:cdata(), src:cdata() + start - 1, copysize)
return self
end
-- copy bytes to the given position
function _instance:copy2(pos, src, start, last)
if self:readonly() then
os.raise("%s: cannot be modified!", self)
end
if type(src) == "string" then
src = bytes(src)
end
local srcsize = src:size()
start = start or 1
last = last or srcsize
if start < 1 or start > srcsize then
os.raise("%s: invalid start(%d)!", self, start)
end
if last < start - 1 or last > srcsize + start - 1 then
os.raise("%s: invalid last(%d)!", self, last)
end
if pos < 1 or pos > self:size() then
os.raise("%s: invalid pos(%d)!", self, pos)
end
local copysize = last + 1 - start
local leftsize = self:size() + 1 - pos
if copysize > leftsize then
os.raise("%s: cannot copy bytes, src:size(%d) must be smaller than %d!", self, copysize, leftsize)
end
libc.memcpy(self:cdata() + pos - 1, src:cdata() + start - 1, copysize)
return self
end
-- move bytes to the begin position
function _instance:move(start, last)
if self:readonly() then
os.raise("%s: cannot be modified!", self)
end
local totalsize = self:size()
start = start or 1
last = last or totalsize
if start < 1 or start > totalsize then
os.raise("%s: invalid start(%d)!", self, start)
end
if last < start - 1 or last > totalsize + start - 1 then
os.raise("%s: invalid last(%d)!", self, last)
end
local movesize = last + 1 - start
if movesize > totalsize then
os.raise("%s: cannot move bytes, move size(%d) must be smaller than %d!", self, movesize, totalsize)
end
libc.memmov(self:cdata(), self:cdata() + start - 1, movesize)
return self
end
-- move bytes to the given position
function _instance:move2(pos, start, last)
if self:readonly() then
os.raise("%s: cannot be modified!", self)
end
local totalsize = self:size()
start = start or 1
last = last or totalsize
if start < 1 or start > totalsize then
os.raise("%s: invalid start(%d)!", self, start)
end
if last < start - 1 or last > totalsize + start - 1 then
os.raise("%s: invalid last(%d)!", self, last)
end
if pos < 1 or pos > totalsize then
os.raise("%s: invalid pos(%d)!", self, pos)
end
local movesize = last + 1 - start
local leftsize = totalsize + 1 - pos
if movesize > leftsize then
os.raise("%s: cannot move bytes, move size(%d) must be smaller than %d!", self, movesize, leftsize)
end
libc.memmov(self:cdata() + pos - 1, self:cdata() + start - 1, movesize)
return self
end
-- clone a new bytes buffer
function _instance:clone()
local new = bytes(self:size())
new:copy(self)
return new
end
-- dump whole bytes data
function _instance:dump(start, last)
start = start or 1
last = last or self:size()
local i = 0
local n = 147
local p = start - 1
local e = last
local line = nil
while p < e do
line = ""
if p + 0x20 <= e then
-- dump offset
line = line .. string.format("${color.dump.anchor}%08X ${color.dump.number}", p)
-- dump data
for i = 0, 0x20 - 1 do
if (i % 4) == 0 then
line = line .. " "
end
line = line .. string.format(" %02X", self[p + i + 1])
end
-- dump spaces
line = line .. " "
-- dump characters
line = line .. "${color.dump.string}"
for i = 0, 0x20 - 1 do
local v = self[p + i + 1]
if v > 0x1f and v < 0x7f then
line = line .. string.format("%c", v)
else
line = line .. '.'
end
end
line = line .. "${clear}"
-- dump line
utils.cprint(line)
-- next line
p = p + 0x20
elseif p < e then
-- init padding
local padding = n - 0x20
-- dump offset
line = line .. string.format("${color.dump.anchor}%08X ${color.dump.number}", p)
if padding >= 9 then
padding = padding - 9
end
-- dump data
local left = e - p
for i = 0, left - 1 do
if (i % 4) == 0 then
line = line .. " "
if padding then
padding = padding - 1
end
end
line = line .. string.format(" %02X", self[p + i + 1])
if padding >= 3 then
padding = padding - 3
end
end
-- dump spaces
while padding > 0 do
line = line .. " "
padding = padding - 1
end
-- dump characters
line = line .. "${color.dump.string}"
for i = 0, left - 1 do
local v = self[p + i + 1]
if v > 0x1f and v < 0x7f then
line = line .. string.format("%c", v)
else
line = line .. '.'
end
end
line = line .. "${clear}"
-- dump line
utils.cprint(line)
-- next line
p = p + left
else
break
end
end
end
-- convert bytes to string
function _instance:str(i, j)
local offset = i and i - 1 or 0
return libc.strndup(self:cdata() + offset, (j or self:size()) - offset)
end
-- get uint8 value
function _instance:u8(offset)
return self[offset]
end
-- set uint8 value
function _instance:u8_set(offset, value)
self[offset] = bit.band(value, 0xff)
return self
end
-- get sint8 value
function _instance:s8(offset)
local value = self[offset]
return value < 0x80 and value or -0x100 + value
end
-- get uint16 little-endian value
function _instance:u16le(offset)
return bit.lshift(self[offset + 1], 8) + self[offset]
end
-- set uint16 little-endian value
function _instance:u16le_set(offset, value)
self[offset + 1] = bit.band(bit.rshift(value, 8), 0xff)
self[offset] = bit.band(value, 0xff)
return self
end
-- get uint16 big-endian value
function _instance:u16be(offset)
return bit.lshift(self[offset], 8) + self[offset + 1]
end
-- set uint16 big-endian value
function _instance:u16be_set(offset, value)
self[offset] = bit.band(bit.rshift(value, 8), 0xff)
self[offset + 1] = bit.band(value, 0xff)
return self
end
-- get sint16 little-endian value
function _instance:s16le(offset)
local value = self:u16le(offset)
return value < 0x8000 and value or -0x10000 + value
end
-- get sint16 big-endian value
function _instance:s16be(offset)
local value = self:u16be(offset)
return value < 0x8000 and value or -0x10000 + value
end
-- get uint32 little-endian value
function _instance:u32le(offset)
return bit.lshift(self[offset + 3], 24) + bit.lshift(self[offset + 2], 16) + bit.lshift(self[offset + 1], 8) + self[offset]
end
-- set uint32 little-endian value
function _instance:u32le_set(offset, value)
self[offset + 3] = bit.band(bit.rshift(value, 24), 0xff)
self[offset + 2] = bit.band(bit.rshift(value, 16), 0xff)
self[offset + 1] = bit.band(bit.rshift(value, 8), 0xff)
self[offset] = bit.band(value, 0xff)
return self
end
-- get uint32 big-endian value
function _instance:u32be(offset)
return bit.lshift(self[offset], 24) + bit.lshift(self[offset + 1], 16) + bit.lshift(self[offset + 2], 8) + self[offset + 3]
end
-- set uint32 big-endian value
function _instance:u32be_set(offset, value)
self[offset] = bit.band(bit.rshift(value, 24), 0xff)
self[offset + 1] = bit.band(bit.rshift(value, 16), 0xff)
self[offset + 2] = bit.band(bit.rshift(value, 8), 0xff)
self[offset + 3] = bit.band(value, 0xff)
return self
end
-- get sint32 little-endian value
function _instance:s32le(offset)
return bit.tobit(self:u32le(offset))
end
-- get sint32 big-endian value
function _instance:s32be(offset)
return bit.tobit(self:u32be(offset))
end
-- get byte or bytes slice at the given index position
--
-- bytes[1]
-- bytes[{1, 2}]
--
function _instance:__index(key)
if type(key) == "number" then
if key < 1 or key > self:size() then
os.raise("%s: index(%d/%d) out of bounds!", self, key, self:size())
end
return libc.byteof(self._CDATA, key - 1)
elseif type(key) == "table" then
local start, last = key[1], key[2]
return self:slice(start, last)
end
return rawget(self, key)
end
-- set byte or bytes slice at the given index position
--
-- bytes[1] = 0x1
-- bytes[{1, 2}] = bytes(2)
--
function _instance:__newindex(key, value)
if self:readonly() then
os.raise("%s: cannot modify value at index[%s]!", self, key)
end
if type(key) == "number" then
if key < 1 or key > self:size() then
os.raise("%s: index(%d/%d) out of bounds!", self, key, self:size())
end
libc.setbyte(self._CDATA, key - 1, value)
return
elseif type(key) == "table" then
local start, last = key[1], key[2]
self:slice(start, last):copy(value)
return
end
rawset(self, key, value)
end
-- concat two bytes buffer
function _instance:__concat(other)
local new = bytes(self:size() + other:size())
new:slice(1, self:size()):copy(self)
new:slice(self:size() + 1, new:size()):copy(other)
return new
end
-- tostring(bytes)
function _instance:__tostring()
return "<bytes: " .. self:size() .. ">"
end
-- todisplay(bytes)
function _instance:__todisplay()
local parts = {}
local size = self:size()
if size > 8 then
size = 8
end
for i = 1, size do
parts[i] = "0x" .. bit.tohex(self[i], 2)
end
return "bytes${reset}(" .. todisplay(self:size()) .. ") <${color.dump.number}" .. table.concat(parts, " ") .. (self:size() > 8 and "${reset} ..>" or "${reset}>")
end
-- it's only called for lua runtime, because bytes is not userdata
function _instance:__gc()
if self._MANAGED and self._CDATA then
libc.free(self._CDATA)
self._CDATA = nil
end
end
-- create a new bytes instance
--
-- @param ... the data (string, number/size, cdata + size, or another bytes)
-- @return the bytes instance
--
function bytes.new(...)
return _instance.new(...)
end
-- is the data an instance of bytes?
--
-- @param data the data to check
-- @return true if it is a bytes instance
--
function bytes.instance_of(data)
if type(data) == "table" and data.cdata and data.size then
return true
end
return false
end
-- register call function
setmetatable(bytes, {
__call = function (_, ...)
return bytes.new(...)
end,
__todisplay = function()
return todisplay(bytes.new)
end
})
-- return module: bytes
return bytes
|