Wait for completion of chunked body

This commit is contained in:
Matthias Neeracher 2020-02-12 02:08:28 +01:00
父節點 a8cf77ec7c
當前提交 1550ec1298
共有 2 個檔案被更改,包括 6 行新增3 行删除

查看文件

@ -11,7 +11,7 @@ let package = Package(
.package(url: "https://github.com/vapor/vapor.git", from: "3.0.0"),
// 🤐 Unzip archives
.package(url: "https://github.com/microtherion/ZIPFoundation.git", .upToNextMajor(from: "0.9.9-µ2"))
.package(url: "https://github.com/microtherion/ZIPFoundation.git", from: "0.9.9-µ5")
],
targets: [
.target(name: "GzipMiddleware", dependencies: ["Vapor", "ZIPFoundation"]),

查看文件

@ -51,14 +51,17 @@ public struct GzipServerMiddleware: Middleware, ServiceType {
return stream.write(.chunk(buffer))
}
})
_ = write.flatMap {
write = write.flatMap {
buffer.clear()
buffer.write(integer: crc32, endianness: .little)
buffer.write(integer: UInt32(data.count), endianness: .little)
return stream.write(.chunk(buffer))
}.flatMap {
return stream.write(.end)
}.transform(to: ())
}
DispatchQueue.global().async {
_ = try? write.wait()
}
let httpResponse = HTTPResponse(status: response.http.status, headers: headers, body: stream)
return request.response(http: httpResponse)