forked from iizukanao/node-rtsp-rtmp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bits.coffee
453 lines (389 loc) · 11.3 KB
/
bits.coffee
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
# Utility for Buffer operations
###
# Usage
Bits = require './bits'
# Reader
buf = new Buffer [
0b11010001
0b11110000
0x7f, 0xff, 0xff, 0xff
0x80, 0x00, 0x00, 0x00
]
myBits = new Bits buf # A Bits instance holds a cursor
console.log myBits.read_bit()
# => 1
console.log myBits.read_bits 2
# => 2
myBits.skip_bits 5
console.log myBits.read_byte() # Returns a number
# => 240
console.log myBits.read_bytes 2 # Returns a Buffer instance
# => <Buffer 7f ff>
myBits.push_back_bytes 2 # Move the cursor two bytes back
console.log myBits.read_int 32
# => 2147483647
console.log myBits.read_int 32
# => -2147483648
# Writer
myBits = new Bits()
myBits.create_buf()
myBits.add_bit 1 # 0b1_______
myBits.add_bits 2, 1 # 0b101_____
myBits.add_bits 5, 3 # 0b10100011
myBits.add_bits 8, 0xff # 0b10100011, 0b11111111
resultArray = myBits.get_created_buf() # Returns an array
resultBuf = new Buffer resultArray
Bits.printBinary resultBuf
# => 10100011 11111111
###
try
buffertools = require 'buffertools'
catch e
# buffertools is not available
zeropad = (width, num) ->
num += ''
while num.length < width
num = '0' + num
num
class Bits
constructor: (buffer) ->
@buf = null
@byte_index = 0
@bit_index = 0
@stash_buf = []
@stash_byte_index = []
@stash_bit_index = []
@c_buf = null
@c_byte_index = 0
@c_bit_index = 0
if buffer?
@set_data buffer
@set_warning_fatal: (is_fatal) ->
Bits.is_warning_fatal = is_fatal
create_buf: ->
@c_buf = []
@c_byte_index = 0
@c_bit_index = 0
add_bit: (value) ->
@add_bits 1, value
# @param numBits (int) number of bits to fill with 1
fill_bits_with_1: (numBits) ->
if numBits > 32
throw new Error "numBits must be <= 32"
value = Math.pow(2, numBits) - 1
@add_bits numBits, value
# value is up to 32-bit unsigned integer
add_bits: (numBits, value) ->
if value > 0xffffffff
throw new Error "value must be <= 0xffffffff (uint32)"
if value < 0
throw new Error "value must be >= 0 (uint32)"
remaining_len = numBits
while remaining_len > 0
if not @c_buf[@c_byte_index]? # not initialized
@c_buf[@c_byte_index] = 0x00 # initialize
available_len = 8 - @c_bit_index
if remaining_len <= available_len # fits into current byte
@c_buf[@c_byte_index] |= value << (available_len - remaining_len)
@c_bit_index += remaining_len
remaining_len = 0
if @c_bit_index is 8
@c_byte_index++
@c_bit_index = 0
else
this_value = (value >>> (remaining_len - available_len)) & 0xff
@c_buf[@c_byte_index] |= this_value
remaining_len -= available_len
@c_byte_index++
@c_bit_index = 0
# TODO: This method needs a better name, since it returns an array.
# @return array
get_created_buf: ->
return @c_buf
current_position: ->
return {
byte: @byte_index
bit : @bit_index
}
print_position: ->
remaining_bits = @get_remaining_bits()
console.log "byteIndex=#{@byte_index+1} bitIndex=#{@bit_index} remaining_bits=#{remaining_bits}"
peak_bytes: ->
console.log @buf[@byte_index..]
console.log "bit_index=#{@bit_index} (byte_index=#{@byte_index})"
skip_bits: (len) ->
@bit_index += len
while @bit_index >= 8
@byte_index++
@bit_index -= 8
return
skip_bytes: (len) ->
@byte_index += len
# Returns the number of skipped bytes
skip_bytes_equal_to: (value) ->
count = 0
loop
byte = @read_byte()
if byte isnt value
@push_back_byte()
return count
count++
read_uint32: ->
return @read_byte() * Math.pow(256, 3) +
(@read_byte() << 16) +
(@read_byte() << 8) +
@read_byte()
# Read a signed number represented by two's complement.
# bits argument is the length of the signed number including
# the sign bit.
read_int: (bits) ->
if bits < 0
throw new Error "read_int: bits argument must be positive: #{bits}"
if bits is 1
return @read_bit()
sign_bit = @read_bit()
value = @read_bits bits - 1
if sign_bit is 1 # negative number
return -Math.pow(2, bits - 1) + value
else # positive number
return value
# unsigned integer Exp-Golomb-coded syntax element
# see clause 9.1
read_ue: ->
return @read_exp_golomb()
# signed integer Exp-Golomb-coded syntax element
read_se: ->
value = @read_exp_golomb()
return Math.pow(-1, value + 1) * Math.ceil(value / 2)
read_exp_golomb: ->
leadingZeroBits = -1
b = 0
while b is 0
b = @read_bit()
leadingZeroBits++
return Math.pow(2, leadingZeroBits) - 1 + @read_bits(leadingZeroBits)
# Return an instance of Buffer
read_bytes: (len, suppress_boundary_warning=0) ->
if @bit_index isnt 0
throw new Error "read_bytes: bit_index must be 0"
if (not suppress_boundary_warning) and (@byte_index + len > @buf.length)
errmsg = "read_bytes exceeded boundary: #{@byte_index+len} > #{@buf.length}"
if Bits.is_warning_fatal
throw new Error errmsg
else
console.log "[warn] #{errmsg}"
range = @buf[@byte_index...@byte_index+len]
@byte_index += len
return range
read_byte: ->
if @bit_index is 0
if @byte_index >= @buf.length
throw new Error "read_byte error: no more data"
value = @buf[@byte_index++]
else
value = @read_bits 8
return value
read_bits: (len) ->
if len is 0
return 0
bit_buf = ''
for i in [0...len]
bit_buf += @read_bit().toString()
return parseInt bit_buf, 2
read_bit: ->
if @byte_index >= @buf.length
throw new Error "read_bit error: no more data"
value = @bit @bit_index++, @buf[@byte_index]
if @bit_index is 8
@byte_index++
@bit_index = 0
return value
push_back_byte: ->
@push_back_bytes 1
push_back_bytes: (len) ->
@push_back_bits len * 8
push_back_bits: (len) ->
while len-- > 0
@bit_index--
if @bit_index is -1
@bit_index = 7
@byte_index--
return
bit: (index, byte) ->
result = null
if index instanceof Array
result = []
for idx in result
result.push (byte >> (7 - idx)) & 0x01
else
result = (byte >> (7 - index)) & 0x01
return result
push_stash: ->
@stash_buf.push @buf
@stash_byte_index.push @byte_index
@stash_bit_index.push @bit_index
pop_stash: ->
@buf = @stash_buf.pop()
@byte_index = @stash_byte_index.pop()
@bit_index = @stash_bit_index.pop()
set_data: (bytes) ->
@buf = bytes
@byte_index = 0
@bit_index = 0
has_more_data: ->
return @get_remaining_bits() > 0
get_remaining_bits: ->
total_bits = @buf.length * 8
total_read_bits = @byte_index * 8 + @bit_index
return total_bits - total_read_bits
remaining_buffer: ->
return @buf[@byte_index..]
is_byte_aligned: ->
return @bit_index is 0
read_until_byte_aligned: ->
sum = 0
while @bit_index isnt 0
sum += @read_bit()
return sum
# @param bitVal (number) 0 or 1
#
# @return object or null If rbsp_stop_one_bit is found,
# returns an object {
# byte: (number) byte index (starts from 0)
# bit : (number) bit index (starts from 0)
# }. If it is not found, returns null.
lastIndexOfBit: (bitVal) ->
for i in [@buf.length-1..@byte_index]
byte = @buf[i]
if (bitVal is 1 and byte isnt 0x00) or (bitVal is 0 and byte isnt 0xff)
# this byte contains the target bit
for col in [0..7]
if ((byte >> col) & 0x01) is bitVal
return byte: i, bit: 7 - col
if (i is @byte_index) and (7 - col is @bit_index)
return null
return null # not found
get_current_byte: ->
return @get_byte_at 0
get_byte_at: (byteOffset) ->
if @bit_index is 0
return @buf[@byte_index + byteOffset]
else
Bits.parse_bits_uint @buf, byteOffset * 8, 8
mark: ->
if not @marks?
@marks = [ @byte_index ]
else
@marks.push @byte_index
marked_bytes: ->
if (not @marks?) or (@marks.length is 0)
throw new Error "The buffer has not been marked"
startIndex = @marks.pop()
return @buf[startIndex..@byte_index-1]
@searchBytesInArray: (haystack, needle, from_pos=0) ->
if buffertools? # buffertools is available
if haystack not instanceof Buffer
haystack = new Buffer haystack
if needle not instanceof Buffer
needle = new Buffer needle
return buffertools.indexOf haystack, needle, from_pos
else # buffertools is not available
haystack_len = haystack.length
if from_pos >= haystack_len
return -1
needle_idx = 0
needle_len = needle.length
haystack_idx = from_pos
loop
if haystack[haystack_idx] is needle[needle_idx]
needle_idx++
if needle_idx is needle_len
return haystack_idx - needle_len + 1
else if needle_idx > 0
haystack_idx -= needle_idx
needle_idx = 0
haystack_idx++
if haystack_idx is haystack_len
return -1
@searchBitsInArray: (haystack, needle, fromPos=0) ->
if fromPos >= haystack.length
return -1
needleIdx = 0
haystackIdx = fromPos
haystackLen = haystack.length
loop
if (haystack[haystackIdx] & needle[needleIdx]) is needle[needleIdx]
needleIdx++
if needleIdx is needle.length
return haystackIdx - needle.length + 1
else
if needleIdx > 0
haystackIdx -= needleIdx
needleIdx = 0
haystackIdx++
if haystackIdx is haystackLen
return -1
# Read <len> bits from the bit position <pos> from the start of
# the buffer <buf>, and return it as unsigned integer
@parse_bits_uint: (buffer, pos, len) ->
byteIndex = parseInt pos / 8
bitIndex = pos % 8
consumedLen = 0
num = 0
while consumedLen < len
consumedLen += 8 - bitIndex
otherBitsLen = 0
if consumedLen > len
otherBitsLen = consumedLen - len
consumedLen = len
num += ((buffer[byteIndex] & ((1 << (8 - bitIndex)) - 1)) <<
(len - consumedLen)) >> otherBitsLen
byteIndex++
bitIndex = 0
return num
@toBinary: (byte) ->
binString = ''
for i in [7..0]
binString += (byte >> i) & 0x01
return binString
@printBinary: (buffer) ->
col = 0
for byte in buffer
process.stdout.write Bits.toBinary byte
col++
if col is 4
console.log()
col = 0
else
process.stdout.write ' '
if col isnt 0
console.log()
@hexdump: (buffer) ->
col = 0
strline = ''
dump = ''
endline = ->
pad = ' '
while col < 16
pad += ' '
if col % 2 is 0
pad += ' '
col++
dump += pad + strline + '\n'
strline = ''
for byte in buffer
if 0x20 <= byte <= 0x7e # printable char
strline += String.fromCharCode byte
else
strline += ' '
dump += zeropad(2, byte.toString(16))
col++
if col is 16
endline()
col = 0
else if col % 2 is 0
dump += ' '
if col isnt 0
endline()
process.stdout.write dump
module.exports = Bits