mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-10-29 23:23:28 +00:00
Merge pull request #992 from lightpanda-io/http_buffer_presize
Pre-size the destination buffer when we know the response content length
This commit is contained in:
@@ -480,7 +480,11 @@ const PendingScript = struct {
|
|||||||
// will fail. This assertion exists to catch incorrect assumptions about
|
// will fail. This assertion exists to catch incorrect assumptions about
|
||||||
// how libcurl works, or about how we've configured it.
|
// how libcurl works, or about how we've configured it.
|
||||||
std.debug.assert(self.script.source.remote.capacity == 0);
|
std.debug.assert(self.script.source.remote.capacity == 0);
|
||||||
self.script.source = .{ .remote = self.manager.buffer_pool.get() };
|
var buffer = self.manager.buffer_pool.get();
|
||||||
|
if (transfer.getContentLength()) |cl| {
|
||||||
|
try buffer.ensureTotalCapacity(self.manager.allocator, cl);
|
||||||
|
}
|
||||||
|
self.script.source = .{ .remote = buffer };
|
||||||
}
|
}
|
||||||
|
|
||||||
fn dataCallback(self: *PendingScript, transfer: *Http.Transfer, data: []const u8) !void {
|
fn dataCallback(self: *PendingScript, transfer: *Http.Transfer, data: []const u8) !void {
|
||||||
|
|||||||
@@ -438,6 +438,10 @@ pub const XMLHttpRequest = struct {
|
|||||||
|
|
||||||
self.state = .loading;
|
self.state = .loading;
|
||||||
self.dispatchEvt("readystatechange");
|
self.dispatchEvt("readystatechange");
|
||||||
|
|
||||||
|
if (transfer.getContentLength()) |cl| {
|
||||||
|
try self.response_bytes.ensureTotalCapacity(self.arena, cl);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn httpDataCallback(transfer: *Http.Transfer, data: []const u8) !void {
|
fn httpDataCallback(transfer: *Http.Transfer, data: []const u8) !void {
|
||||||
|
|||||||
@@ -1040,6 +1040,35 @@ pub const Transfer = struct {
|
|||||||
|
|
||||||
try req.done_callback(req.ctx);
|
try req.done_callback(req.ctx);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// This function should be called during the dataCallback. Calling it after
|
||||||
|
// such as in the doneCallback is guaranteed to return null.
|
||||||
|
pub fn getContentLength(self: *const Transfer) ?u32 {
|
||||||
|
const cl = self.getContentLengthRawValue() orelse return null;
|
||||||
|
return std.fmt.parseInt(u32, cl, 10) catch null;
|
||||||
|
}
|
||||||
|
|
||||||
|
fn getContentLengthRawValue(self: *const Transfer) ?[]const u8 {
|
||||||
|
if (self._handle) |handle| {
|
||||||
|
// If we have a handle, than this is a normal request. We can get the
|
||||||
|
// header value from the easy handle.
|
||||||
|
const cl = getResponseHeader(handle.conn.easy, "content-length", 0) orelse return null;
|
||||||
|
return cl.value;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If we have no handle, then maybe this is being called after the
|
||||||
|
// doneCallback. OR, maybe this is a "fulfilled" request. Let's check
|
||||||
|
// the injected headers (if we have any).
|
||||||
|
|
||||||
|
const rh = self.response_header orelse return null;
|
||||||
|
for (rh._injected_headers) |hdr| {
|
||||||
|
if (std.ascii.eqlIgnoreCase(hdr.name, "content-length")) {
|
||||||
|
return hdr.value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
pub const ResponseHeader = struct {
|
pub const ResponseHeader = struct {
|
||||||
|
|||||||
Reference in New Issue
Block a user