mirror of https://github.com/oxen-io/session-ios
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.
31 lines
1004 B
Swift
31 lines
1004 B
Swift
// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
|
|
|
|
import Foundation
|
|
import SessionUtilitiesKit
|
|
|
|
public extension Data {
|
|
init(from inputStream: InputStream) throws {
|
|
self.init()
|
|
inputStream.open()
|
|
defer { inputStream.close() }
|
|
let bufferSize = 1024
|
|
let buffer = UnsafeMutablePointer<UInt8>.allocate(capacity: bufferSize)
|
|
defer { buffer.deallocate() }
|
|
while inputStream.hasBytesAvailable {
|
|
let count = inputStream.read(buffer, maxLength: bufferSize)
|
|
if count < 0 {
|
|
throw inputStream.streamError!
|
|
} else if count == 0 {
|
|
break
|
|
} else {
|
|
append(buffer, count: count)
|
|
}
|
|
}
|
|
}
|
|
|
|
func decoded<T: Decodable>(as type: T.Type, using dependencies: Dependencies) throws -> T {
|
|
do { return try JSONDecoder(using: dependencies).decode(type, from: self) }
|
|
catch { throw NetworkError.parsingFailed }
|
|
}
|
|
}
|