Files
sing-box-for-apple/ApplicationLibrary/LubyTransform/LubyTransformDecoder.swift
T
2026-02-08 18:23:42 +08:00

295 lines
9.7 KiB
Swift

import Foundation
import zlib
final class LubyTransformDecoder {
private(set) var decodedData: [Data?] = []
private(set) var decodedCount = 0
private(set) var encodedCount = 0
private var encodedBlocks: Set<BlockWrapper> = []
private var encodedBlockKeyMap: [String: BlockWrapper] = [:]
private var encodedBlockSubkeyMap: [String: Set<BlockWrapper>] = [:]
private var encodedBlockIndexMap: [Int: Set<BlockWrapper>] = [:]
private var disposedEncodedBlocks: [Int: [() -> Void]] = [:]
private(set) var meta: EncodedBlock?
var k: Int {
meta?.k ?? 0
}
var progress: Double {
guard k > 0 else { return 0 }
return Double(decodedCount) / Double(k)
}
var isComplete: Bool {
meta != nil && decodedCount == k
}
private class BlockWrapper: Hashable {
var block: EncodedBlock
let id = UUID()
init(_ block: EncodedBlock) {
self.block = block
}
static func == (lhs: BlockWrapper, rhs: BlockWrapper) -> Bool {
lhs.id == rhs.id
}
func hash(into hasher: inout Hasher) {
hasher.combine(id)
}
}
enum DecoderError: Error {
case checksumMismatch
case incomplete
case noMeta
}
@discardableResult
func addBlock(_ block: EncodedBlock) throws -> Bool {
if meta == nil {
meta = block
decodedData = Array(repeating: nil, count: block.k)
}
guard block.checksum == meta?.checksum else {
throw DecoderError.checksumMismatch
}
encodedCount += 1
var mutableBlock = block
mutableBlock.indices.sort()
let wrapper = BlockWrapper(mutableBlock)
propagateDecoded(key: indicesToKey(mutableBlock.indices), wrapper: wrapper)
return decodedCount == k
}
private func indicesToKey(_ indices: [Int]) -> String {
indices.map(String.init).joined(separator: ",")
}
private func xorDataInPlace(_ dest: inout Data, _ src: Data) {
let count = min(dest.count, src.count)
dest.withUnsafeMutableBytes { destPtr in
src.withUnsafeBytes { srcPtr in
let d = destPtr.bindMemory(to: UInt8.self).baseAddress!
let s = srcPtr.bindMemory(to: UInt8.self).baseAddress!
for i in 0 ..< count {
d[i] ^= s[i]
}
}
}
}
private func propagateDecoded(key: String, wrapper: BlockWrapper) {
var queue: [(key: String, wrapper: BlockWrapper)] = [(key, wrapper)]
while !queue.isEmpty {
let (currentKey, currentWrapper) = queue.removeFirst()
processBlock(key: currentKey, wrapper: currentWrapper, queue: &queue)
}
}
private func processBlock(key: String, wrapper: BlockWrapper, queue: inout [(key: String, wrapper: BlockWrapper)]) {
var block = wrapper.block
var indices = block.indices
var indicesSet = Set(indices)
if encodedBlockKeyMap[key] != nil || indices.allSatisfy({ decodedData[$0] != nil }) {
return
}
// XOR with already decoded blocks to reduce degree
if indices.count > 1 {
for index in indices {
if let decoded = decodedData[index] {
xorDataInPlace(&block.data, decoded)
indicesSet.remove(index)
}
}
if indicesSet.count != indices.count {
indices = Array(indicesSet).sorted()
block.indices = indices
}
}
// Try subset matching for blocks with degree > 2
if indices.count > 2 {
var subkeys: [(index: Int, subkey: String)] = []
for index in indices {
let subIndices = indices.filter { $0 != index }
let subkey = indicesToKey(subIndices)
if let subWrapper = encodedBlockKeyMap[subkey] {
xorDataInPlace(&block.data, subWrapper.block.data)
for i in subWrapper.block.indices {
indicesSet.remove(i)
}
indices = Array(indicesSet).sorted()
block.indices = indices
subkeys.removeAll()
break
} else {
subkeys.append((index, subkey))
}
}
// Store subkeys for future matching if still high degree
if indicesSet.count > 1 {
for (index, subkey) in subkeys {
let dispose: () -> Void = { [weak self] in
_ = self?.encodedBlockSubkeyMap[subkey]?.remove(wrapper)
}
if encodedBlockSubkeyMap[subkey] == nil {
encodedBlockSubkeyMap[subkey] = []
}
encodedBlockSubkeyMap[subkey]?.insert(wrapper)
if disposedEncodedBlocks[index] == nil {
disposedEncodedBlocks[index] = []
}
disposedEncodedBlocks[index]?.append(dispose)
}
}
}
wrapper.block = block
// If still degree > 1, store as pending
if indices.count > 1 {
encodedBlocks.insert(wrapper)
for i in indices {
if encodedBlockIndexMap[i] == nil {
encodedBlockIndexMap[i] = []
}
encodedBlockIndexMap[i]?.insert(wrapper)
}
let newKey = indicesToKey(indices)
encodedBlockKeyMap[newKey] = wrapper
// Check if this can decode pending supersets
if let superset = encodedBlockSubkeyMap[newKey] {
encodedBlockSubkeyMap.removeValue(forKey: newKey)
for superWrapper in superset {
var superBlock = superWrapper.block
xorDataInPlace(&superBlock.data, block.data)
var superIndicesSet = Set(superBlock.indices)
for i in indices {
superIndicesSet.remove(i)
}
superBlock.indices = Array(superIndicesSet).sorted()
superWrapper.block = superBlock
queue.append((indicesToKey(superBlock.indices), superWrapper))
}
}
}
// Degree 1: directly decode
else if let index = indices.first, decodedData[index] == nil {
encodedBlocks.remove(wrapper)
disposedEncodedBlocks[index]?.forEach { $0() }
decodedData[index] = block.data
decodedCount += 1
// Propagate to waiting blocks
if let waitingBlocks = encodedBlockIndexMap[index] {
encodedBlockIndexMap.removeValue(forKey: index)
for waiting in waitingBlocks {
let waitingKey = indicesToKey(waiting.block.indices)
encodedBlockKeyMap.removeValue(forKey: waitingKey)
queue.append((waitingKey, waiting))
}
}
}
}
func getDecoded() throws -> Data {
guard decodedCount == k else {
throw DecoderError.incomplete
}
guard decodedData.allSatisfy({ $0 != nil }) else {
throw DecoderError.incomplete
}
guard let meta else {
throw DecoderError.noMeta
}
let sliceSize = meta.data.count
var result = Data(capacity: meta.bytes)
for (i, block) in decodedData.enumerated() {
guard let block else { continue }
let start = i * sliceSize
let copyLength = min(sliceSize, meta.bytes - start)
if copyLength > 0 {
result.append(block.prefix(copyLength))
}
}
// Try decompression
if let decompressed = Self.inflate(result) {
let checksum = CRC32.checksum(decompressed, k: meta.k)
if checksum == meta.checksum {
return decompressed
}
}
// Fallback to uncompressed
let checksum = CRC32.checksum(result, k: meta.k)
if checksum == meta.checksum {
return result
}
throw DecoderError.checksumMismatch
}
private static func inflate(_ data: Data) -> Data? {
var stream = z_stream()
// Use 15 for zlib format (with header/trailer) to match pako's default
guard inflateInit2_(
&stream,
15,
ZLIB_VERSION,
Int32(MemoryLayout<z_stream>.size)
) == Z_OK else {
return nil
}
defer { inflateEnd(&stream) }
var destCapacity = data.count * 4
var dest = Data(count: destCapacity)
return data.withUnsafeBytes { srcPtr -> Data? in
stream.next_in = UnsafeMutablePointer(mutating: srcPtr.bindMemory(to: Bytef.self).baseAddress)
stream.avail_in = uInt(data.count)
while true {
dest.withUnsafeMutableBytes { destPtr in
stream.next_out = destPtr.bindMemory(to: Bytef.self).baseAddress?.advanced(by: Int(stream.total_out))
stream.avail_out = uInt(destCapacity - Int(stream.total_out))
}
let result = zlib.inflate(&stream, Z_NO_FLUSH)
if result == Z_STREAM_END {
dest.count = Int(stream.total_out)
return dest
}
if result != Z_OK {
return nil
}
if stream.avail_out == 0 {
destCapacity *= 2
dest.count = destCapacity
}
}
}
}
}