You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-ios/SessionUtilitiesKit/Utilities/BencodeResponse.swift

41 lines
1.4 KiB
Swift

// Copyright © 2023 Rangeproof Pty Ltd. All rights reserved.
import Foundation
public struct BencodeResponse<T: Decodable> {
public let info: T
public let data: Data?
}
extension BencodeResponse: Decodable {
public init(from decoder: Decoder) throws {
var container: UnkeyedDecodingContainer = try decoder.unkeyedContainer()
/// The first element will be the request info
info = try {
/// First try to decode it directly
if let info: T = try? container.decode(T.self) {
return info
}
/// If that failed then we need to reset the container and try decode it as a JSON string
container = try decoder.unkeyedContainer()
let infoString: String = try container.decode(String.self)
let infoData: Data = try infoString.data(using: .ascii) ?? { throw NetworkError.parsingFailed }()
return try JSONDecoder(using: decoder.dependencies).decode(T.self, from: infoData)
}()
/// The second element (if present) will be the response data and should just
guard container.count == 2 else {
data = nil
return
}
data = try container.decode(Data.self)
}
}
extension BencodeResponse: Equatable where T: Equatable {}
extension BencodeResponse: Encodable where T: Encodable {}