我试图在swift中进行一些二进制文件解析,虽然我的工作正常但我有一个可变字段的情况。
我的所有解析都在默认情况下工作
我抓住
1-bit field
1-bit field
1-bit field
11-bits field
1-bit field
(optional) 4-bit field
(optional) 4-bit field
1-bit field
2-bit field
(optional) 4-bit field
5-bit field
6-bit field
(optional) 6-bit field
(optional) 24-bit field
(junk data - up until byte buffer 0 - 7 bits as needed)
大多数数据只使用一组选项,所以我已经开始编写类来处理这些数据。我的一般方法是创建一个指针结构,然后从中构造一个字节数组:
let rawData: NSMutableData = NSMutableData(data: input_nsdata)
var ptr: UnsafeMutablePointer<UInt8> = UnsafeMutablePointer<UInt8(rawData.mutableBytes)
bytes = UnsafeMutableBufferPointer<UInt8>(start: ptr, count: rawData.length - offset)
所以我最终使用了一个[UInt8]
数组,我可以用类似的方式进行解析:
let b1 = (bytes[3] & 0x01) << 5
let b2 = (bytes[4] & 0xF8) >> 3
return Int(b1 | b2)
所以我遇到麻烦的地方是可选字段,因为我的数据并不是专门针对字节边界的,所有内容都变得复杂。在理想的世界中,我可能只是直接使用指针并根据需要按字节前进,但是,我没有办法意识到将指针推进3位 - 这让我想到了我的问题
处理我的情况的最佳方法是什么?
我想到的一个想法是提出反映可选字段的各种结构,除了我不确定如何创建位对齐的压缩结构。
这里我最好的方法是什么?为了澄清 - 初始1-bit
字段确定设置了哪个可选字段。
答案 0 :(得分:2)
如果字段不在字节边界上,那么你必须保留 跟踪当前字节和一个字节内的当前位位置。
这是一种允许读取任意数字的可能解决方案
来自数据阵列的位并执行所有簿记。唯一的
限制是nextBits()
的结果必须符合UInt
(32或64位,具体取决于平台)。
struct BitReader {
private let data : [UInt8]
private var byteOffset : Int
private var bitOffset : Int
init(data : [UInt8]) {
self.data = data
self.byteOffset = 0
self.bitOffset = 0
}
func remainingBits() -> Int {
return 8 * (data.count - byteOffset) - bitOffset
}
mutating func nextBits(numBits : Int) -> UInt {
precondition(numBits <= remainingBits(), "attempt to read more bits than available")
var bits = numBits // remaining bits to read
var result : UInt = 0 // result accumulator
// Read remaining bits from current byte:
if bitOffset > 0 {
if bitOffset + bits < 8 {
result = (UInt(data[byteOffset]) & UInt(0xFF >> bitOffset)) >> UInt(8 - bitOffset - bits)
bitOffset += bits
return result
} else {
result = UInt(data[byteOffset]) & UInt(0xFF >> bitOffset)
bits = bits - (8 - bitOffset)
bitOffset = 0
byteOffset = byteOffset + 1
}
}
// Read entire bytes:
while bits >= 8 {
result = (result << UInt(8)) + UInt(data[byteOffset])
byteOffset = byteOffset + 1
bits = bits - 8
}
// Read remaining bits:
if bits > 0 {
result = (result << UInt(bits)) + (UInt(data[byteOffset]) >> UInt(8 - bits))
bitOffset = bits
}
return result
}
}
使用示例:
let data : [UInt8] = ... your data ...
var bitReader = BitReader(data: data)
let b1 = bitReader.nextBits(1)
let b2 = bitReader.nextBits(1)
let b3 = bitReader.nextBits(1)
let b4 = bitReader.nextBits(11)
let b5 = bitReader.nextBits(1)
if b1 > 0 {
let b6 = bitReader.nextBits(4)
let b7 = bitReader.nextBits(4)
}
// ... and so on ...
这是另一个可能的实现,这有点简单
也许更有效。它将字节收集到UInt
,和
然后在一个步骤中提取结果。
这里的限制是numBits + 7
必须小于或等于
到UInt
(32或64)中的位数。 (当然UInt
可以由UInt64
替换,以使其与平台无关。)
struct BitReader {
private let data : [UInt8]
private var byteOffset = 0
private var currentValue : UInt = 0 // Bits which still have to be consumed
private var currentBits = 0 // Number of valid bits in `currentValue`
init(data : [UInt8]) {
self.data = data
}
func remainingBits() -> Int {
return 8 * (data.count - byteOffset) + currentBits
}
mutating func nextBits(numBits : Int) -> UInt {
precondition(numBits <= remainingBits(), "attempt to read more bits than available")
// Collect bytes until we have enough bits:
while currentBits < numBits {
currentValue = (currentValue << 8) + UInt(data[byteOffset])
currentBits = currentBits + 8
byteOffset = byteOffset + 1
}
// Extract result:
let remaining = currentBits - numBits
let result = currentValue >> UInt(remaining)
// Update remaining bits:
currentValue = currentValue & UInt(1 << remaining - 1)
currentBits = remaining
return result
}
}