Merge pull request #1658 from lightpanda-io/wp/mrdimidium/typesafe-libcurl

Move curl C API to type-safe wrapper
This commit is contained in:
Karl Seguin
2026-02-26 10:28:37 +08:00
committed by GitHub
4 changed files with 858 additions and 355 deletions

View File

@@ -21,10 +21,7 @@ const builtin = @import("builtin");
const posix = std.posix; const posix = std.posix;
const Allocator = std.mem.Allocator; const Allocator = std.mem.Allocator;
const ArenaAllocator = std.heap.ArenaAllocator; const ArenaAllocator = std.heap.ArenaAllocator;
const libcurl = @import("sys/libcurl.zig");
pub const c = @cImport({
@cInclude("curl/curl.h");
});
const log = @import("log.zig"); const log = @import("log.zig");
const Config = @import("Config.zig"); const Config = @import("Config.zig");
@@ -33,243 +30,19 @@ const assert = @import("lightpanda").assert;
pub const ENABLE_DEBUG = false; pub const ENABLE_DEBUG = false;
const IS_DEBUG = builtin.mode == .Debug; const IS_DEBUG = builtin.mode == .Debug;
const Error = error{ pub const Blob = libcurl.CurlBlob;
UnsupportedProtocol, pub const WaitFd = libcurl.CurlWaitFd;
FailedInit, pub const writefunc_error = libcurl.curl_writefunc_error;
UrlMalformat,
NotBuiltIn,
CouldntResolveProxy,
CouldntResolveHost,
CouldntConnect,
WeirdServerReply,
RemoteAccessDenied,
FtpAcceptFailed,
FtpWeirdPassReply,
FtpAcceptTimeout,
FtpWeirdPasvReply,
FtpWeird227Format,
FtpCantGetHost,
Http2,
FtpCouldntSetType,
PartialFile,
FtpCouldntRetrFile,
QuoteError,
HttpReturnedError,
WriteError,
UploadFailed,
ReadError,
OutOfMemory,
OperationTimedout,
FtpPortFailed,
FtpCouldntUseRest,
RangeError,
SslConnectError,
BadDownloadResume,
FileCouldntReadFile,
LdapCannotBind,
LdapSearchFailed,
AbortedByCallback,
BadFunctionArgument,
InterfaceFailed,
TooManyRedirects,
UnknownOption,
SetoptOptionSyntax,
GotNothing,
SslEngineNotfound,
SslEngineSetfailed,
SendError,
RecvError,
SslCertproblem,
SslCipher,
PeerFailedVerification,
BadContentEncoding,
FilesizeExceeded,
UseSslFailed,
SendFailRewind,
SslEngineInitfailed,
LoginDenied,
TftpNotfound,
TftpPerm,
RemoteDiskFull,
TftpIllegal,
TftpUnknownid,
RemoteFileExists,
TftpNosuchuser,
SslCacertBadfile,
RemoteFileNotFound,
Ssh,
SslShutdownFailed,
Again,
SslCrlBadfile,
SslIssuerError,
FtpPretFailed,
RtspCseqError,
RtspSessionError,
FtpBadFileList,
ChunkFailed,
NoConnectionAvailable,
SslPinnedpubkeynotmatch,
SslInvalidcertstatus,
Http2Stream,
RecursiveApiCall,
AuthError,
Http3,
QuicConnectError,
Proxy,
SslClientcert,
UnrecoverablePoll,
TooLarge,
Unknown,
};
fn errorFromCode(code: c.CURLcode) Error { const Error = libcurl.Error;
if (comptime IS_DEBUG) { const ErrorMulti = libcurl.ErrorMulti;
std.debug.assert(code != c.CURLE_OK); const errorFromCode = libcurl.errorFromCode;
} const errorMFromCode = libcurl.errorMFromCode;
const errorCheck = libcurl.errorCheck;
const errorMCheck = libcurl.errorMCheck;
return switch (code) { pub fn curl_version() [*c]const u8 {
c.CURLE_UNSUPPORTED_PROTOCOL => Error.UnsupportedProtocol, return libcurl.curl_version();
c.CURLE_FAILED_INIT => Error.FailedInit,
c.CURLE_URL_MALFORMAT => Error.UrlMalformat,
c.CURLE_NOT_BUILT_IN => Error.NotBuiltIn,
c.CURLE_COULDNT_RESOLVE_PROXY => Error.CouldntResolveProxy,
c.CURLE_COULDNT_RESOLVE_HOST => Error.CouldntResolveHost,
c.CURLE_COULDNT_CONNECT => Error.CouldntConnect,
c.CURLE_WEIRD_SERVER_REPLY => Error.WeirdServerReply,
c.CURLE_REMOTE_ACCESS_DENIED => Error.RemoteAccessDenied,
c.CURLE_FTP_ACCEPT_FAILED => Error.FtpAcceptFailed,
c.CURLE_FTP_WEIRD_PASS_REPLY => Error.FtpWeirdPassReply,
c.CURLE_FTP_ACCEPT_TIMEOUT => Error.FtpAcceptTimeout,
c.CURLE_FTP_WEIRD_PASV_REPLY => Error.FtpWeirdPasvReply,
c.CURLE_FTP_WEIRD_227_FORMAT => Error.FtpWeird227Format,
c.CURLE_FTP_CANT_GET_HOST => Error.FtpCantGetHost,
c.CURLE_HTTP2 => Error.Http2,
c.CURLE_FTP_COULDNT_SET_TYPE => Error.FtpCouldntSetType,
c.CURLE_PARTIAL_FILE => Error.PartialFile,
c.CURLE_FTP_COULDNT_RETR_FILE => Error.FtpCouldntRetrFile,
c.CURLE_QUOTE_ERROR => Error.QuoteError,
c.CURLE_HTTP_RETURNED_ERROR => Error.HttpReturnedError,
c.CURLE_WRITE_ERROR => Error.WriteError,
c.CURLE_UPLOAD_FAILED => Error.UploadFailed,
c.CURLE_READ_ERROR => Error.ReadError,
c.CURLE_OUT_OF_MEMORY => Error.OutOfMemory,
c.CURLE_OPERATION_TIMEDOUT => Error.OperationTimedout,
c.CURLE_FTP_PORT_FAILED => Error.FtpPortFailed,
c.CURLE_FTP_COULDNT_USE_REST => Error.FtpCouldntUseRest,
c.CURLE_RANGE_ERROR => Error.RangeError,
c.CURLE_SSL_CONNECT_ERROR => Error.SslConnectError,
c.CURLE_BAD_DOWNLOAD_RESUME => Error.BadDownloadResume,
c.CURLE_FILE_COULDNT_READ_FILE => Error.FileCouldntReadFile,
c.CURLE_LDAP_CANNOT_BIND => Error.LdapCannotBind,
c.CURLE_LDAP_SEARCH_FAILED => Error.LdapSearchFailed,
c.CURLE_ABORTED_BY_CALLBACK => Error.AbortedByCallback,
c.CURLE_BAD_FUNCTION_ARGUMENT => Error.BadFunctionArgument,
c.CURLE_INTERFACE_FAILED => Error.InterfaceFailed,
c.CURLE_TOO_MANY_REDIRECTS => Error.TooManyRedirects,
c.CURLE_UNKNOWN_OPTION => Error.UnknownOption,
c.CURLE_SETOPT_OPTION_SYNTAX => Error.SetoptOptionSyntax,
c.CURLE_GOT_NOTHING => Error.GotNothing,
c.CURLE_SSL_ENGINE_NOTFOUND => Error.SslEngineNotfound,
c.CURLE_SSL_ENGINE_SETFAILED => Error.SslEngineSetfailed,
c.CURLE_SEND_ERROR => Error.SendError,
c.CURLE_RECV_ERROR => Error.RecvError,
c.CURLE_SSL_CERTPROBLEM => Error.SslCertproblem,
c.CURLE_SSL_CIPHER => Error.SslCipher,
c.CURLE_PEER_FAILED_VERIFICATION => Error.PeerFailedVerification,
c.CURLE_BAD_CONTENT_ENCODING => Error.BadContentEncoding,
c.CURLE_FILESIZE_EXCEEDED => Error.FilesizeExceeded,
c.CURLE_USE_SSL_FAILED => Error.UseSslFailed,
c.CURLE_SEND_FAIL_REWIND => Error.SendFailRewind,
c.CURLE_SSL_ENGINE_INITFAILED => Error.SslEngineInitfailed,
c.CURLE_LOGIN_DENIED => Error.LoginDenied,
c.CURLE_TFTP_NOTFOUND => Error.TftpNotfound,
c.CURLE_TFTP_PERM => Error.TftpPerm,
c.CURLE_REMOTE_DISK_FULL => Error.RemoteDiskFull,
c.CURLE_TFTP_ILLEGAL => Error.TftpIllegal,
c.CURLE_TFTP_UNKNOWNID => Error.TftpUnknownid,
c.CURLE_REMOTE_FILE_EXISTS => Error.RemoteFileExists,
c.CURLE_TFTP_NOSUCHUSER => Error.TftpNosuchuser,
c.CURLE_SSL_CACERT_BADFILE => Error.SslCacertBadfile,
c.CURLE_REMOTE_FILE_NOT_FOUND => Error.RemoteFileNotFound,
c.CURLE_SSH => Error.Ssh,
c.CURLE_SSL_SHUTDOWN_FAILED => Error.SslShutdownFailed,
c.CURLE_AGAIN => Error.Again,
c.CURLE_SSL_CRL_BADFILE => Error.SslCrlBadfile,
c.CURLE_SSL_ISSUER_ERROR => Error.SslIssuerError,
c.CURLE_FTP_PRET_FAILED => Error.FtpPretFailed,
c.CURLE_RTSP_CSEQ_ERROR => Error.RtspCseqError,
c.CURLE_RTSP_SESSION_ERROR => Error.RtspSessionError,
c.CURLE_FTP_BAD_FILE_LIST => Error.FtpBadFileList,
c.CURLE_CHUNK_FAILED => Error.ChunkFailed,
c.CURLE_NO_CONNECTION_AVAILABLE => Error.NoConnectionAvailable,
c.CURLE_SSL_PINNEDPUBKEYNOTMATCH => Error.SslPinnedpubkeynotmatch,
c.CURLE_SSL_INVALIDCERTSTATUS => Error.SslInvalidcertstatus,
c.CURLE_HTTP2_STREAM => Error.Http2Stream,
c.CURLE_RECURSIVE_API_CALL => Error.RecursiveApiCall,
c.CURLE_AUTH_ERROR => Error.AuthError,
c.CURLE_HTTP3 => Error.Http3,
c.CURLE_QUIC_CONNECT_ERROR => Error.QuicConnectError,
c.CURLE_PROXY => Error.Proxy,
c.CURLE_SSL_CLIENTCERT => Error.SslClientcert,
c.CURLE_UNRECOVERABLE_POLL => Error.UnrecoverablePoll,
c.CURLE_TOO_LARGE => Error.TooLarge,
else => Error.Unknown,
};
}
const ErrorMulti = error{
BadHandle,
BadEasyHandle,
OutOfMemory,
InternalError,
BadSocket,
UnknownOption,
AddedAlready,
RecursiveApiCall,
WakeupFailure,
BadFunctionArgument,
AbortedByCallback,
UnrecoverablePoll,
Unknown,
};
fn errorMFromCode(code: c.CURLMcode) ErrorMulti {
if (comptime IS_DEBUG) {
std.debug.assert(code != c.CURLM_OK);
}
return switch (code) {
c.CURLM_BAD_HANDLE => ErrorMulti.BadHandle,
c.CURLM_BAD_EASY_HANDLE => ErrorMulti.BadEasyHandle,
c.CURLM_OUT_OF_MEMORY => ErrorMulti.OutOfMemory,
c.CURLM_INTERNAL_ERROR => ErrorMulti.InternalError,
c.CURLM_BAD_SOCKET => ErrorMulti.BadSocket,
c.CURLM_UNKNOWN_OPTION => ErrorMulti.UnknownOption,
c.CURLM_ADDED_ALREADY => ErrorMulti.AddedAlready,
c.CURLM_RECURSIVE_API_CALL => ErrorMulti.RecursiveApiCall,
c.CURLM_WAKEUP_FAILURE => ErrorMulti.WakeupFailure,
c.CURLM_BAD_FUNCTION_ARGUMENT => ErrorMulti.BadFunctionArgument,
c.CURLM_ABORTED_BY_CALLBACK => ErrorMulti.AbortedByCallback,
c.CURLM_UNRECOVERABLE_POLL => ErrorMulti.UnrecoverablePoll,
else => ErrorMulti.Unknown,
};
}
fn errorCheck(code: c.CURLcode) Error!void {
if (code == c.CURLE_OK) {
return;
}
return errorFromCode(code);
}
fn errorMCheck(code: c.CURLMcode) ErrorMulti!void {
if (code == c.CURLM_OK) {
return;
}
if (code == c.CURLM_CALL_MULTI_PERFORM) {
return;
}
return errorMFromCode(code);
} }
pub const Method = enum(u8) { pub const Method = enum(u8) {
@@ -289,11 +62,11 @@ pub const Header = struct {
}; };
pub const Headers = struct { pub const Headers = struct {
headers: ?*c.curl_slist, headers: ?*libcurl.CurlSList,
cookies: ?[*c]const u8, cookies: ?[*c]const u8,
pub fn init(user_agent: [:0]const u8) !Headers { pub fn init(user_agent: [:0]const u8) !Headers {
const header_list = c.curl_slist_append(null, user_agent); const header_list = libcurl.curl_slist_append(null, user_agent);
if (header_list == null) { if (header_list == null) {
return error.OutOfMemory; return error.OutOfMemory;
} }
@@ -302,13 +75,13 @@ pub const Headers = struct {
pub fn deinit(self: *const Headers) void { pub fn deinit(self: *const Headers) void {
if (self.headers) |hdr| { if (self.headers) |hdr| {
c.curl_slist_free_all(hdr); libcurl.curl_slist_free_all(hdr);
} }
} }
pub fn add(self: *Headers, header: [*c]const u8) !void { pub fn add(self: *Headers, header: [*c]const u8) !void {
// Copies the value // Copies the value
const updated_headers = c.curl_slist_append(self.headers, header); const updated_headers = libcurl.curl_slist_append(self.headers, header);
if (updated_headers == null) { if (updated_headers == null) {
return error.OutOfMemory; return error.OutOfMemory;
} }
@@ -333,7 +106,7 @@ pub const Headers = struct {
} }
const Iterator = struct { const Iterator = struct {
header: [*c]c.curl_slist, header: [*c]libcurl.CurlSList,
cookies: ?[*c]const u8, cookies: ?[*c]const u8,
pub fn next(self: *Iterator) ?Header { pub fn next(self: *Iterator) ?Header {
@@ -365,10 +138,10 @@ pub const HeaderIterator = union(enum) {
const CurlHeaderIterator = struct { const CurlHeaderIterator = struct {
conn: *const Connection, conn: *const Connection,
prev: ?*c.curl_header = null, prev: ?*libcurl.CurlHeader = null,
pub fn next(self: *CurlHeaderIterator) ?Header { pub fn next(self: *CurlHeaderIterator) ?Header {
const h = c.curl_easy_nextheader(self.conn.easy, c.CURLH_HEADER, -1, self.prev) orelse return null; const h = libcurl.curl_easy_nextheader(self.conn.easy, .header, -1, self.prev) orelse return null;
self.prev = h; self.prev = h;
const header = h.*; const header = h.*;
@@ -462,72 +235,72 @@ pub const ResponseHead = struct {
}; };
pub fn globalInit() Error!void { pub fn globalInit() Error!void {
try errorCheck(c.curl_global_init(c.CURL_GLOBAL_SSL)); try libcurl.curl_global_init(.{ .ssl = true });
} }
pub fn globalDeinit() void { pub fn globalDeinit() void {
c.curl_global_cleanup(); libcurl.curl_global_cleanup();
} }
pub const Connection = struct { pub const Connection = struct {
easy: *c.CURL, easy: *libcurl.Curl,
node: Handles.HandleList.Node = .{}, node: Handles.HandleList.Node = .{},
pub fn init( pub fn init(
ca_blob_: ?c.curl_blob, ca_blob_: ?libcurl.CurlBlob,
config: *const Config, config: *const Config,
) !Connection { ) !Connection {
const easy = c.curl_easy_init() orelse return error.FailedToInitializeEasy; const easy = libcurl.curl_easy_init() orelse return error.FailedToInitializeEasy;
errdefer _ = c.curl_easy_cleanup(easy); errdefer libcurl.curl_easy_cleanup(easy);
// timeouts // timeouts
try errorCheck(c.curl_easy_setopt(easy, c.CURLOPT_TIMEOUT_MS, @as(c_long, @intCast(config.httpTimeout())))); try libcurl.curl_easy_setopt(easy, .timeout_ms, config.httpTimeout());
try errorCheck(c.curl_easy_setopt(easy, c.CURLOPT_CONNECTTIMEOUT_MS, @as(c_long, @intCast(config.httpConnectTimeout())))); try libcurl.curl_easy_setopt(easy, .connect_timeout_ms, config.httpConnectTimeout());
// redirect behavior // redirect behavior
try errorCheck(c.curl_easy_setopt(easy, c.CURLOPT_MAXREDIRS, @as(c_long, @intCast(config.httpMaxRedirects())))); try libcurl.curl_easy_setopt(easy, .max_redirs, config.httpMaxRedirects());
try errorCheck(c.curl_easy_setopt(easy, c.CURLOPT_FOLLOWLOCATION, @as(c_long, 2))); try libcurl.curl_easy_setopt(easy, .follow_location, 2);
try errorCheck(c.curl_easy_setopt(easy, c.CURLOPT_REDIR_PROTOCOLS_STR, "HTTP,HTTPS")); // remove FTP and FTPS from the default try libcurl.curl_easy_setopt(easy, .redir_protocols_str, "HTTP,HTTPS"); // remove FTP and FTPS from the default
// proxy // proxy
const http_proxy = config.httpProxy(); const http_proxy = config.httpProxy();
if (http_proxy) |proxy| { if (http_proxy) |proxy| {
try errorCheck(c.curl_easy_setopt(easy, c.CURLOPT_PROXY, proxy.ptr)); try libcurl.curl_easy_setopt(easy, .proxy, proxy.ptr);
} }
// tls // tls
if (ca_blob_) |ca_blob| { if (ca_blob_) |ca_blob| {
try errorCheck(c.curl_easy_setopt(easy, c.CURLOPT_CAINFO_BLOB, ca_blob)); try libcurl.curl_easy_setopt(easy, .ca_info_blob, ca_blob);
if (http_proxy != null) { if (http_proxy != null) {
try errorCheck(c.curl_easy_setopt(easy, c.CURLOPT_PROXY_CAINFO_BLOB, ca_blob)); try libcurl.curl_easy_setopt(easy, .proxy_ca_info_blob, ca_blob);
} }
} else { } else {
assert(config.tlsVerifyHost() == false, "Http.init tls_verify_host", .{}); assert(config.tlsVerifyHost() == false, "Http.init tls_verify_host", .{});
try errorCheck(c.curl_easy_setopt(easy, c.CURLOPT_SSL_VERIFYHOST, @as(c_long, 0))); try libcurl.curl_easy_setopt(easy, .ssl_verify_host, false);
try errorCheck(c.curl_easy_setopt(easy, c.CURLOPT_SSL_VERIFYPEER, @as(c_long, 0))); try libcurl.curl_easy_setopt(easy, .ssl_verify_peer, false);
if (http_proxy != null) { if (http_proxy != null) {
try errorCheck(c.curl_easy_setopt(easy, c.CURLOPT_PROXY_SSL_VERIFYHOST, @as(c_long, 0))); try libcurl.curl_easy_setopt(easy, .proxy_ssl_verify_host, false);
try errorCheck(c.curl_easy_setopt(easy, c.CURLOPT_PROXY_SSL_VERIFYPEER, @as(c_long, 0))); try libcurl.curl_easy_setopt(easy, .proxy_ssl_verify_peer, false);
} }
} }
// compression, don't remove this. CloudFront will send gzip content // compression, don't remove this. CloudFront will send gzip content
// even if we don't support it, and then it won't be decompressed. // even if we don't support it, and then it won't be decompressed.
// empty string means: use whatever's available // empty string means: use whatever's available
try errorCheck(c.curl_easy_setopt(easy, c.CURLOPT_ACCEPT_ENCODING, "")); try libcurl.curl_easy_setopt(easy, .accept_encoding, "");
// debug // debug
if (comptime ENABLE_DEBUG) { if (comptime ENABLE_DEBUG) {
try errorCheck(c.curl_easy_setopt(easy, c.CURLOPT_VERBOSE, @as(c_long, 1))); try libcurl.curl_easy_setopt(easy, .verbose, true);
// Sometimes the default debug output hides some useful data. You can // Sometimes the default debug output hides some useful data. You can
// uncomment the following line (BUT KEEP THE LIVE ABOVE AS-IS), to // uncomment the following line (BUT KEEP THE LIVE ABOVE AS-IS), to
// get more control over the data (specifically, the `CURLINFO_TEXT` // get more control over the data (specifically, the `CURLINFO_TEXT`
// can include useful data). // can include useful data).
// try errorCheck(c.curl_easy_setopt(easy, c.CURLOPT_DEBUGFUNCTION, debugCallback)); // try libcurl.curl_easy_setopt(easy, .debug_function, debugCallback);
} }
return .{ return .{
@@ -536,11 +309,11 @@ pub const Connection = struct {
} }
pub fn deinit(self: *const Connection) void { pub fn deinit(self: *const Connection) void {
c.curl_easy_cleanup(self.easy); libcurl.curl_easy_cleanup(self.easy);
} }
pub fn setURL(self: *const Connection, url: [:0]const u8) !void { pub fn setURL(self: *const Connection, url: [:0]const u8) !void {
try errorCheck(c.curl_easy_setopt(self.easy, c.CURLOPT_URL, url.ptr)); try libcurl.curl_easy_setopt(self.easy, .url, url.ptr);
} }
// a libcurl request has 2 methods. The first is the method that // a libcurl request has 2 methods. The first is the method that
@@ -574,71 +347,69 @@ pub const Connection = struct {
.PATCH => "PATCH", .PATCH => "PATCH",
.PROPFIND => "PROPFIND", .PROPFIND => "PROPFIND",
}; };
try errorCheck(c.curl_easy_setopt(easy, c.CURLOPT_CUSTOMREQUEST, m.ptr)); try libcurl.curl_easy_setopt(easy, .custom_request, m.ptr);
} }
pub fn setBody(self: *const Connection, body: []const u8) !void { pub fn setBody(self: *const Connection, body: []const u8) !void {
const easy = self.easy; const easy = self.easy;
try errorCheck(c.curl_easy_setopt(easy, c.CURLOPT_HTTPPOST, @as(c_long, 1))); try libcurl.curl_easy_setopt(easy, .post, true);
try errorCheck(c.curl_easy_setopt(easy, c.CURLOPT_POSTFIELDSIZE, @as(c_long, @intCast(body.len)))); try libcurl.curl_easy_setopt(easy, .post_field_size, body.len);
try errorCheck(c.curl_easy_setopt(easy, c.CURLOPT_COPYPOSTFIELDS, body.ptr)); try libcurl.curl_easy_setopt(easy, .copy_post_fields, body.ptr);
} }
pub fn setGetMode(self: *const Connection) !void { pub fn setGetMode(self: *const Connection) !void {
try errorCheck(c.curl_easy_setopt(self.easy, c.CURLOPT_HTTPGET, @as(c_long, 1))); try libcurl.curl_easy_setopt(self.easy, .http_get, true);
} }
pub fn setHeaders(self: *const Connection, headers: *Headers) !void { pub fn setHeaders(self: *const Connection, headers: *Headers) !void {
try errorCheck(c.curl_easy_setopt(self.easy, c.CURLOPT_HTTPHEADER, headers.headers)); try libcurl.curl_easy_setopt(self.easy, .http_header, headers.headers);
} }
pub fn setCookies(self: *const Connection, cookies: [*c]const u8) !void { pub fn setCookies(self: *const Connection, cookies: [*c]const u8) !void {
try errorCheck(c.curl_easy_setopt(self.easy, c.CURLOPT_COOKIE, cookies)); try libcurl.curl_easy_setopt(self.easy, .cookie, cookies);
} }
pub fn setPrivate(self: *const Connection, ptr: *anyopaque) !void { pub fn setPrivate(self: *const Connection, ptr: *anyopaque) !void {
try errorCheck(c.curl_easy_setopt(self.easy, c.CURLOPT_PRIVATE, ptr)); try libcurl.curl_easy_setopt(self.easy, .private, ptr);
} }
pub fn setProxyCredentials(self: *const Connection, creds: [:0]const u8) !void { pub fn setProxyCredentials(self: *const Connection, creds: [:0]const u8) !void {
try errorCheck(c.curl_easy_setopt(self.easy, c.CURLOPT_PROXYUSERPWD, creds.ptr)); try libcurl.curl_easy_setopt(self.easy, .proxy_user_pwd, creds.ptr);
} }
pub fn setCallbacks( pub fn setCallbacks(
self: *const Connection, self: *const Connection,
header_cb: *const fn ([*]const u8, usize, usize, *anyopaque) callconv(.c) usize, comptime header_cb: libcurl.CurlHeaderFunction,
data_cb: *const fn ([*]const u8, usize, usize, *anyopaque) callconv(.c) isize, comptime data_cb: libcurl.CurlWriteFunction,
) !void { ) !void {
try errorCheck(c.curl_easy_setopt(self.easy, c.CURLOPT_HEADERDATA, self.easy)); try libcurl.curl_easy_setopt(self.easy, .header_data, self.easy);
try errorCheck(c.curl_easy_setopt(self.easy, c.CURLOPT_HEADERFUNCTION, header_cb)); try libcurl.curl_easy_setopt(self.easy, .header_function, header_cb);
try errorCheck(c.curl_easy_setopt(self.easy, c.CURLOPT_WRITEDATA, self.easy)); try libcurl.curl_easy_setopt(self.easy, .write_data, self.easy);
try errorCheck(c.curl_easy_setopt(self.easy, c.CURLOPT_WRITEFUNCTION, data_cb)); try libcurl.curl_easy_setopt(self.easy, .write_function, data_cb);
} }
pub fn setProxy(self: *const Connection, proxy: ?[*:0]const u8) !void { pub fn setProxy(self: *const Connection, proxy: ?[*:0]const u8) !void {
try errorCheck(c.curl_easy_setopt(self.easy, c.CURLOPT_PROXY, proxy)); try libcurl.curl_easy_setopt(self.easy, .proxy, proxy);
} }
pub fn setTlsVerify(self: *const Connection, verify: bool, use_proxy: bool) !void { pub fn setTlsVerify(self: *const Connection, verify: bool, use_proxy: bool) !void {
const host_val: c_long = if (verify) 2 else 0; try libcurl.curl_easy_setopt(self.easy, .ssl_verify_host, verify);
const peer_val: c_long = if (verify) 1 else 0; try libcurl.curl_easy_setopt(self.easy, .ssl_verify_peer, verify);
try errorCheck(c.curl_easy_setopt(self.easy, c.CURLOPT_SSL_VERIFYHOST, host_val));
try errorCheck(c.curl_easy_setopt(self.easy, c.CURLOPT_SSL_VERIFYPEER, peer_val));
if (use_proxy) { if (use_proxy) {
try errorCheck(c.curl_easy_setopt(self.easy, c.CURLOPT_PROXY_SSL_VERIFYHOST, host_val)); try libcurl.curl_easy_setopt(self.easy, .proxy_ssl_verify_host, verify);
try errorCheck(c.curl_easy_setopt(self.easy, c.CURLOPT_PROXY_SSL_VERIFYPEER, peer_val)); try libcurl.curl_easy_setopt(self.easy, .proxy_ssl_verify_peer, verify);
} }
} }
pub fn getEffectiveUrl(self: *const Connection) ![*c]const u8 { pub fn getEffectiveUrl(self: *const Connection) ![*c]const u8 {
var url: [*c]u8 = undefined; var url: [*c]u8 = undefined;
try errorCheck(c.curl_easy_getinfo(self.easy, c.CURLINFO_EFFECTIVE_URL, &url)); try libcurl.curl_easy_getinfo(self.easy, .effective_url, &url);
return url; return url;
} }
pub fn getResponseCode(self: *const Connection) !u16 { pub fn getResponseCode(self: *const Connection) !u16 {
var status: c_long = undefined; var status: c_long = undefined;
try errorCheck(c.curl_easy_getinfo(self.easy, c.CURLINFO_RESPONSE_CODE, &status)); try libcurl.curl_easy_getinfo(self.easy, .response_code, &status);
if (status < 0 or status > std.math.maxInt(u16)) { if (status < 0 or status > std.math.maxInt(u16)) {
return 0; return 0;
} }
@@ -647,34 +418,31 @@ pub const Connection = struct {
pub fn getRedirectCount(self: *const Connection) !u32 { pub fn getRedirectCount(self: *const Connection) !u32 {
var count: c_long = undefined; var count: c_long = undefined;
try errorCheck(c.curl_easy_getinfo(self.easy, c.CURLINFO_REDIRECT_COUNT, &count)); try libcurl.curl_easy_getinfo(self.easy, .redirect_count, &count);
return @intCast(count); return @intCast(count);
} }
pub fn getResponseHeader(self: *const Connection, name: [:0]const u8, index: usize) ?HeaderValue { pub fn getResponseHeader(self: *const Connection, name: [:0]const u8, index: usize) ?HeaderValue {
var hdr: [*c]c.curl_header = null; var hdr: ?*libcurl.CurlHeader = null;
const result = c.curl_easy_header(self.easy, name, index, c.CURLH_HEADER, -1, &hdr); libcurl.curl_easy_header(self.easy, name, index, .header, -1, &hdr) catch |err| {
if (result == c.CURLE_OK) { // ErrorHeader includes OutOfMemory — rare but real errors from curl internals.
return .{ // Logged and returned as null since callers don't expect errors.
.amount = hdr.*.amount, log.err(.http, "get response header", .{
.value = std.mem.span(hdr.*.value), .name = name,
}; .err = err,
} });
if (result == c.CURLE_FAILED_INIT) {
// seems to be what it returns if the header isn't found
return null; return null;
} };
log.err(.http, "get response header", .{ const h = hdr orelse return null;
.name = name, return .{
.err = errorFromCode(result), .amount = h.amount,
}); .value = std.mem.span(h.value),
return null; };
} }
pub fn getPrivate(self: *const Connection) !*anyopaque { pub fn getPrivate(self: *const Connection) !*anyopaque {
var private: *anyopaque = undefined; var private: *anyopaque = undefined;
try errorCheck(c.curl_easy_getinfo(self.easy, c.CURLINFO_PRIVATE, &private)); try libcurl.curl_easy_getinfo(self.easy, .private, &private);
return private; return private;
} }
@@ -696,7 +464,7 @@ pub const Connection = struct {
try self.setCookies(cookies); try self.setCookies(cookies);
} }
try errorCheck(c.curl_easy_perform(self.easy)); try libcurl.curl_easy_perform(self.easy);
return self.getResponseCode(); return self.getResponseCode();
} }
}; };
@@ -705,23 +473,23 @@ pub const Handles = struct {
connections: []Connection, connections: []Connection,
in_use: HandleList, in_use: HandleList,
available: HandleList, available: HandleList,
multi: *c.CURLM, multi: *libcurl.CurlM,
performing: bool = false, performing: bool = false,
pub const HandleList = std.DoublyLinkedList; pub const HandleList = std.DoublyLinkedList;
pub fn init( pub fn init(
allocator: Allocator, allocator: Allocator,
ca_blob: ?c.curl_blob, ca_blob: ?libcurl.CurlBlob,
config: *const Config, config: *const Config,
) !Handles { ) !Handles {
const count: usize = config.httpMaxConcurrent(); const count: usize = config.httpMaxConcurrent();
if (count == 0) return error.InvalidMaxConcurrent; if (count == 0) return error.InvalidMaxConcurrent;
const multi = c.curl_multi_init() orelse return error.FailedToInitializeMulti; const multi = libcurl.curl_multi_init() orelse return error.FailedToInitializeMulti;
errdefer _ = c.curl_multi_cleanup(multi); errdefer libcurl.curl_multi_cleanup(multi) catch {};
try errorMCheck(c.curl_multi_setopt(multi, c.CURLMOPT_MAX_HOST_CONNECTIONS, @as(c_long, config.httpMaxHostOpen()))); try libcurl.curl_multi_setopt(multi, .max_host_connections, config.httpMaxHostOpen());
const connections = try allocator.alloc(Connection, count); const connections = try allocator.alloc(Connection, count);
errdefer allocator.free(connections); errdefer allocator.free(connections);
@@ -745,7 +513,7 @@ pub const Handles = struct {
conn.deinit(); conn.deinit();
} }
allocator.free(self.connections); allocator.free(self.connections);
_ = c.curl_multi_cleanup(self.multi); libcurl.curl_multi_cleanup(self.multi) catch {};
} }
pub fn hasAvailable(self: *const Handles) bool { pub fn hasAvailable(self: *const Handles) bool {
@@ -763,11 +531,11 @@ pub const Handles = struct {
} }
pub fn add(self: *Handles, conn: *const Connection) !void { pub fn add(self: *Handles, conn: *const Connection) !void {
try errorMCheck(c.curl_multi_add_handle(self.multi, conn.easy)); try libcurl.curl_multi_add_handle(self.multi, conn.easy);
} }
pub fn remove(self: *Handles, conn: *Connection) void { pub fn remove(self: *Handles, conn: *Connection) void {
errorMCheck(c.curl_multi_remove_handle(self.multi, conn.easy)) catch |err| { libcurl.curl_multi_remove_handle(self.multi, conn.easy) catch |err| {
log.fatal(.http, "multi remove handle", .{ .err = err }); log.fatal(.http, "multi remove handle", .{ .err = err });
}; };
var node = &conn.node; var node = &conn.node;
@@ -781,12 +549,12 @@ pub const Handles = struct {
var running: c_int = undefined; var running: c_int = undefined;
self.performing = true; self.performing = true;
defer self.performing = false; defer self.performing = false;
try errorMCheck(c.curl_multi_perform(self.multi, &running)); try libcurl.curl_multi_perform(self.multi, &running);
return running; return running;
} }
pub fn poll(self: *Handles, extra_fds: []c.curl_waitfd, timeout_ms: c_int) !void { pub fn poll(self: *Handles, extra_fds: []libcurl.CurlWaitFd, timeout_ms: c_int) !void {
try errorMCheck(c.curl_multi_poll(self.multi, extra_fds.ptr, @intCast(extra_fds.len), timeout_ms, null)); try libcurl.curl_multi_poll(self.multi, extra_fds, timeout_ms, null);
} }
pub const MultiMessage = struct { pub const MultiMessage = struct {
@@ -796,11 +564,13 @@ pub const Handles = struct {
pub fn readMessage(self: *Handles) ?MultiMessage { pub fn readMessage(self: *Handles) ?MultiMessage {
var messages_count: c_int = 0; var messages_count: c_int = 0;
const msg_ = c.curl_multi_info_read(self.multi, &messages_count) orelse return null; const msg = libcurl.curl_multi_info_read(self.multi, &messages_count) orelse return null;
const msg: *c.CURLMsg = @ptrCast(msg_); return switch (msg.data) {
return .{ .done => |err| .{
.conn = .{ .easy = msg.easy_handle.? }, .conn = .{ .easy = msg.easy_handle },
.err = if (errorCheck(msg.data.result)) |_| null else |err| err, .err = err,
},
else => unreachable,
}; };
} }
}; };
@@ -809,7 +579,7 @@ pub const Handles = struct {
// This whole rescan + decode is really just needed for MacOS. On Linux // This whole rescan + decode is really just needed for MacOS. On Linux
// bundle.rescan does find the .pem file(s) which could be in a few different // bundle.rescan does find the .pem file(s) which could be in a few different
// places, so it's still useful, just not efficient. // places, so it's still useful, just not efficient.
pub fn loadCerts(allocator: Allocator) !c.curl_blob { pub fn loadCerts(allocator: Allocator) !libcurl.CurlBlob {
var bundle: std.crypto.Certificate.Bundle = .{}; var bundle: std.crypto.Certificate.Bundle = .{};
try bundle.rescan(allocator); try bundle.rescan(allocator);
defer bundle.deinit(allocator); defer bundle.deinit(allocator);
@@ -892,15 +662,16 @@ const LineWriter = struct {
} }
}; };
fn debugCallback(_: *c.CURL, msg_type: c.curl_infotype, raw: [*c]u8, len: usize, _: *anyopaque) callconv(.c) void { fn debugCallback(_: *libcurl.Curl, msg_type: libcurl.CurlInfoType, raw: [*c]u8, len: usize, _: *anyopaque) c_int {
const data = raw[0..len]; const data = raw[0..len];
switch (msg_type) { switch (msg_type) {
c.CURLINFO_TEXT => std.debug.print("libcurl [text]: {s}\n", .{data}), .text => std.debug.print("libcurl [text]: {s}\n", .{data}),
c.CURLINFO_HEADER_OUT => std.debug.print("libcurl [req-h]: {s}\n", .{data}), .header_out => std.debug.print("libcurl [req-h]: {s}\n", .{data}),
c.CURLINFO_HEADER_IN => std.debug.print("libcurl [res-h]: {s}\n", .{data}), .header_in => std.debug.print("libcurl [res-h]: {s}\n", .{data}),
// c.CURLINFO_DATA_IN => std.debug.print("libcurl [res-b]: {s}\n", .{data}), // .data_in => std.debug.print("libcurl [res-b]: {s}\n", .{data}),
else => std.debug.print("libcurl ?? {d}\n", .{msg_type}), else => std.debug.print("libcurl ?? {d}\n", .{msg_type}),
} }
return 0;
} }
// Zig is in a weird backend transition right now. Need to determine if // Zig is in a weird backend transition right now. Need to determine if

View File

@@ -29,8 +29,6 @@ const Notification = @import("../Notification.zig");
const CookieJar = @import("../browser/webapi/storage/Cookie.zig").Jar; const CookieJar = @import("../browser/webapi/storage/Cookie.zig").Jar;
const Robots = @import("../browser/Robots.zig"); const Robots = @import("../browser/Robots.zig");
const RobotStore = Robots.RobotStore; const RobotStore = Robots.RobotStore;
const c = Net.c;
const posix = std.posix; const posix = std.posix;
const Allocator = std.mem.Allocator; const Allocator = std.mem.Allocator;
@@ -123,7 +121,7 @@ pub const CDPClient = struct {
const TransferQueue = std.DoublyLinkedList; const TransferQueue = std.DoublyLinkedList;
pub fn init(allocator: Allocator, ca_blob: ?c.curl_blob, robot_store: *RobotStore, config: *const Config) !*Client { pub fn init(allocator: Allocator, ca_blob: ?Net.Blob, robot_store: *RobotStore, config: *const Config) !*Client {
var transfer_pool = std.heap.MemoryPool(Transfer).init(allocator); var transfer_pool = std.heap.MemoryPool(Transfer).init(allocator);
errdefer transfer_pool.deinit(); errdefer transfer_pool.deinit();
@@ -718,13 +716,13 @@ fn perform(self: *Client, timeout_ms: c_int) !PerformStatus {
var status = PerformStatus.normal; var status = PerformStatus.normal;
if (self.cdp_client) |cdp_client| { if (self.cdp_client) |cdp_client| {
var wait_fds = [_]c.curl_waitfd{.{ var wait_fds = [_]Net.WaitFd{.{
.fd = cdp_client.socket, .fd = cdp_client.socket,
.events = c.CURL_WAIT_POLLIN, .events = .{ .pollin = true },
.revents = 0, .revents = .{},
}}; }};
try self.handles.poll(&wait_fds, timeout_ms); try self.handles.poll(&wait_fds, timeout_ms);
if (wait_fds[0].revents != 0) { if (wait_fds[0].revents.pollin or wait_fds[0].revents.pollpri or wait_fds[0].revents.pollout) {
status = .cdp_socket; status = .cdp_socket;
} }
} else if (running > 0) { } else if (running > 0) {
@@ -1195,7 +1193,7 @@ pub const Transfer = struct {
} }
// headerCallback is called by curl on each request's header line read. // headerCallback is called by curl on each request's header line read.
fn headerCallback(buffer: [*]const u8, header_count: usize, buf_len: usize, data: *anyopaque) callconv(.c) usize { fn headerCallback(buffer: [*]const u8, header_count: usize, buf_len: usize, data: *anyopaque) usize {
// libcurl should only ever emit 1 header at a time // libcurl should only ever emit 1 header at a time
if (comptime IS_DEBUG) { if (comptime IS_DEBUG) {
std.debug.assert(header_count == 1); std.debug.assert(header_count == 1);
@@ -1317,7 +1315,7 @@ pub const Transfer = struct {
return buf_len; return buf_len;
} }
fn dataCallback(buffer: [*]const u8, chunk_count: usize, chunk_len: usize, data: *anyopaque) callconv(.c) isize { fn dataCallback(buffer: [*]const u8, chunk_count: usize, chunk_len: usize, data: *anyopaque) usize {
// libcurl should only ever emit 1 chunk at a time // libcurl should only ever emit 1 chunk at a time
if (comptime IS_DEBUG) { if (comptime IS_DEBUG) {
std.debug.assert(chunk_count == 1); std.debug.assert(chunk_count == 1);
@@ -1326,7 +1324,7 @@ pub const Transfer = struct {
const conn: Net.Connection = .{ .easy = @ptrCast(@alignCast(data)) }; const conn: Net.Connection = .{ .easy = @ptrCast(@alignCast(data)) };
var transfer = fromConnection(&conn) catch |err| { var transfer = fromConnection(&conn) catch |err| {
log.err(.http, "get private info", .{ .err = err, .source = "body callback" }); log.err(.http, "get private info", .{ .err = err, .source = "body callback" });
return c.CURL_WRITEFUNC_ERROR; return Net.writefunc_error;
}; };
if (transfer._redirecting or transfer._auth_challenge != null) { if (transfer._redirecting or transfer._auth_challenge != null) {
@@ -1336,11 +1334,11 @@ pub const Transfer = struct {
if (!transfer._header_done_called) { if (!transfer._header_done_called) {
const proceed = transfer.headerDoneCallback(&conn) catch |err| { const proceed = transfer.headerDoneCallback(&conn) catch |err| {
log.err(.http, "header_done_callback", .{ .err = err, .req = transfer }); log.err(.http, "header_done_callback", .{ .err = err, .req = transfer });
return c.CURL_WRITEFUNC_ERROR; return Net.writefunc_error;
}; };
if (!proceed) { if (!proceed) {
// signal abort to libcurl // signal abort to libcurl
return -1; return Net.writefunc_error;
} }
} }
@@ -1348,14 +1346,14 @@ pub const Transfer = struct {
if (transfer.max_response_size) |max_size| { if (transfer.max_response_size) |max_size| {
if (transfer.bytes_received > max_size) { if (transfer.bytes_received > max_size) {
requestFailed(transfer, error.ResponseTooLarge, true); requestFailed(transfer, error.ResponseTooLarge, true);
return -1; return Net.writefunc_error;
} }
} }
const chunk = buffer[0..chunk_len]; const chunk = buffer[0..chunk_len];
transfer.req.data_callback(transfer, chunk) catch |err| { transfer.req.data_callback(transfer, chunk) catch |err| {
log.err(.http, "data_callback", .{ .err = err, .req = transfer }); log.err(.http, "data_callback", .{ .err = err, .req = transfer });
return c.CURL_WRITEFUNC_ERROR; return Net.writefunc_error;
}; };
transfer.req.notification.dispatch(.http_response_data, &.{ transfer.req.notification.dispatch(.http_response_data, &.{
@@ -1364,7 +1362,7 @@ pub const Transfer = struct {
}); });
if (transfer.aborted) { if (transfer.aborted) {
return -1; return Net.writefunc_error;
} }
return @intCast(chunk_len); return @intCast(chunk_len);

View File

@@ -19,8 +19,6 @@
const std = @import("std"); const std = @import("std");
const Net = @import("../Net.zig"); const Net = @import("../Net.zig");
const c = Net.c;
const ENABLE_DEBUG = Net.ENABLE_DEBUG; const ENABLE_DEBUG = Net.ENABLE_DEBUG;
pub const Client = @import("Client.zig"); pub const Client = @import("Client.zig");
pub const Transfer = Client.Transfer; pub const Transfer = Client.Transfer;
@@ -45,7 +43,7 @@ const Http = @This();
arena: ArenaAllocator, arena: ArenaAllocator,
allocator: Allocator, allocator: Allocator,
config: *const Config, config: *const Config,
ca_blob: ?c.curl_blob, ca_blob: ?Net.Blob,
robot_store: *RobotStore, robot_store: *RobotStore,
pub fn init(allocator: Allocator, robot_store: *RobotStore, config: *const Config) !Http { pub fn init(allocator: Allocator, robot_store: *RobotStore, config: *const Config) !Http {
@@ -53,13 +51,13 @@ pub fn init(allocator: Allocator, robot_store: *RobotStore, config: *const Confi
errdefer Net.globalDeinit(); errdefer Net.globalDeinit();
if (comptime ENABLE_DEBUG) { if (comptime ENABLE_DEBUG) {
std.debug.print("curl version: {s}\n\n", .{c.curl_version()}); std.debug.print("curl version: {s}\n\n", .{Net.curl_version()});
} }
var arena = ArenaAllocator.init(allocator); var arena = ArenaAllocator.init(allocator);
errdefer arena.deinit(); errdefer arena.deinit();
var ca_blob: ?c.curl_blob = null; var ca_blob: ?Net.Blob = null;
if (config.tlsVerifyHost()) { if (config.tlsVerifyHost()) {
ca_blob = try Net.loadCerts(allocator); ca_blob = try Net.loadCerts(allocator);
} }

736
src/sys/libcurl.zig Normal file
View File

@@ -0,0 +1,736 @@
// Copyright (C) 2023-2026 Lightpanda (Selecy SAS)
//
// Francis Bouvier <francis@lightpanda.io>
// Pierre Tachoire <pierre@lightpanda.io>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
const std = @import("std");
const builtin = @import("builtin");
const c = @cImport({
@cInclude("curl/curl.h");
});
const IS_DEBUG = builtin.mode == .Debug;
pub const Curl = c.CURL;
pub const CurlM = c.CURLM;
pub const CurlCode = c.CURLcode;
pub const CurlMCode = c.CURLMcode;
pub const CurlSList = c.curl_slist;
pub const CurlHeader = c.curl_header;
pub const CurlHttpPost = c.curl_httppost;
pub const CurlSocket = c.curl_socket_t;
pub const CurlBlob = c.curl_blob;
pub const CurlOffT = c.curl_off_t;
pub const CurlDebugFunction = fn (*Curl, CurlInfoType, [*c]u8, usize, *anyopaque) c_int;
pub const CurlHeaderFunction = fn ([*]const u8, usize, usize, *anyopaque) usize;
pub const CurlWriteFunction = fn ([*]const u8, usize, usize, *anyopaque) usize;
pub const curl_writefunc_error: usize = c.CURL_WRITEFUNC_ERROR;
pub const CurlGlobalFlags = packed struct(u8) {
ssl: bool = false,
_reserved: u7 = 0,
pub fn to_c(self: @This()) c_long {
var flags: c_long = 0;
if (self.ssl) flags |= c.CURL_GLOBAL_SSL;
return flags;
}
};
pub const CurlHeaderOrigin = enum(c_uint) {
header = c.CURLH_HEADER,
trailer = c.CURLH_TRAILER,
connect = c.CURLH_CONNECT,
@"1xx" = c.CURLH_1XX,
pseudo = c.CURLH_PSEUDO,
};
pub const CurlWaitEvents = packed struct(c_short) {
pollin: bool = false,
pollpri: bool = false,
pollout: bool = false,
_reserved: u13 = 0,
};
pub const CurlInfoType = enum(c.curl_infotype) {
text = c.CURLINFO_TEXT,
header_in = c.CURLINFO_HEADER_IN,
header_out = c.CURLINFO_HEADER_OUT,
data_in = c.CURLINFO_DATA_IN,
data_out = c.CURLINFO_DATA_OUT,
ssl_data_in = c.CURLINFO_SSL_DATA_IN,
ssl_data_out = c.CURLINFO_SSL_DATA_OUT,
end = c.CURLINFO_END,
};
pub const CurlWaitFd = extern struct {
fd: CurlSocket,
events: CurlWaitEvents,
revents: CurlWaitEvents,
};
comptime {
const debug_cb_check: c.curl_debug_callback = struct {
fn cb(handle: ?*Curl, msg_type: c.curl_infotype, raw: [*c]u8, len: usize, user: ?*anyopaque) callconv(.c) c_int {
_ = handle;
_ = msg_type;
_ = raw;
_ = len;
_ = user;
return 0;
}
}.cb;
const write_cb_check: c.curl_write_callback = struct {
fn cb(buffer: [*c]u8, count: usize, len: usize, user: ?*anyopaque) callconv(.c) usize {
_ = buffer;
_ = count;
_ = len;
_ = user;
return 0;
}
}.cb;
_ = debug_cb_check;
_ = write_cb_check;
if (@sizeOf(CurlWaitFd) != @sizeOf(c.curl_waitfd)) {
@compileError("CurlWaitFd size mismatch");
}
if (@offsetOf(CurlWaitFd, "fd") != @offsetOf(c.curl_waitfd, "fd") or
@offsetOf(CurlWaitFd, "events") != @offsetOf(c.curl_waitfd, "events") or
@offsetOf(CurlWaitFd, "revents") != @offsetOf(c.curl_waitfd, "revents"))
{
@compileError("CurlWaitFd layout mismatch");
}
if (c.CURL_WAIT_POLLIN != 1 or c.CURL_WAIT_POLLPRI != 2 or c.CURL_WAIT_POLLOUT != 4) {
@compileError("CURL_WAIT_* flag values don't match CurlWaitEvents packed struct bit layout");
}
}
pub const CurlOption = enum(c.CURLoption) {
url = c.CURLOPT_URL,
timeout_ms = c.CURLOPT_TIMEOUT_MS,
connect_timeout_ms = c.CURLOPT_CONNECTTIMEOUT_MS,
max_redirs = c.CURLOPT_MAXREDIRS,
follow_location = c.CURLOPT_FOLLOWLOCATION,
redir_protocols_str = c.CURLOPT_REDIR_PROTOCOLS_STR,
proxy = c.CURLOPT_PROXY,
ca_info_blob = c.CURLOPT_CAINFO_BLOB,
proxy_ca_info_blob = c.CURLOPT_PROXY_CAINFO_BLOB,
ssl_verify_host = c.CURLOPT_SSL_VERIFYHOST,
ssl_verify_peer = c.CURLOPT_SSL_VERIFYPEER,
proxy_ssl_verify_host = c.CURLOPT_PROXY_SSL_VERIFYHOST,
proxy_ssl_verify_peer = c.CURLOPT_PROXY_SSL_VERIFYPEER,
accept_encoding = c.CURLOPT_ACCEPT_ENCODING,
verbose = c.CURLOPT_VERBOSE,
debug_function = c.CURLOPT_DEBUGFUNCTION,
custom_request = c.CURLOPT_CUSTOMREQUEST,
post = c.CURLOPT_POST,
http_post = c.CURLOPT_HTTPPOST,
post_field_size = c.CURLOPT_POSTFIELDSIZE,
copy_post_fields = c.CURLOPT_COPYPOSTFIELDS,
http_get = c.CURLOPT_HTTPGET,
http_header = c.CURLOPT_HTTPHEADER,
cookie = c.CURLOPT_COOKIE,
private = c.CURLOPT_PRIVATE,
proxy_user_pwd = c.CURLOPT_PROXYUSERPWD,
header_data = c.CURLOPT_HEADERDATA,
header_function = c.CURLOPT_HEADERFUNCTION,
write_data = c.CURLOPT_WRITEDATA,
write_function = c.CURLOPT_WRITEFUNCTION,
};
pub const CurlMOption = enum(c.CURLMoption) {
max_host_connections = c.CURLMOPT_MAX_HOST_CONNECTIONS,
};
pub const CurlInfo = enum(c.CURLINFO) {
effective_url = c.CURLINFO_EFFECTIVE_URL,
private = c.CURLINFO_PRIVATE,
redirect_count = c.CURLINFO_REDIRECT_COUNT,
response_code = c.CURLINFO_RESPONSE_CODE,
};
pub const Error = error{
UnsupportedProtocol,
FailedInit,
UrlMalformat,
NotBuiltIn,
CouldntResolveProxy,
CouldntResolveHost,
CouldntConnect,
WeirdServerReply,
RemoteAccessDenied,
FtpAcceptFailed,
FtpWeirdPassReply,
FtpAcceptTimeout,
FtpWeirdPasvReply,
FtpWeird227Format,
FtpCantGetHost,
Http2,
FtpCouldntSetType,
PartialFile,
FtpCouldntRetrFile,
QuoteError,
HttpReturnedError,
WriteError,
UploadFailed,
ReadError,
OutOfMemory,
OperationTimedout,
FtpPortFailed,
FtpCouldntUseRest,
RangeError,
SslConnectError,
BadDownloadResume,
FileCouldntReadFile,
LdapCannotBind,
LdapSearchFailed,
AbortedByCallback,
BadFunctionArgument,
InterfaceFailed,
TooManyRedirects,
UnknownOption,
SetoptOptionSyntax,
GotNothing,
SslEngineNotfound,
SslEngineSetfailed,
SendError,
RecvError,
SslCertproblem,
SslCipher,
PeerFailedVerification,
BadContentEncoding,
FilesizeExceeded,
UseSslFailed,
SendFailRewind,
SslEngineInitfailed,
LoginDenied,
TftpNotfound,
TftpPerm,
RemoteDiskFull,
TftpIllegal,
TftpUnknownid,
RemoteFileExists,
TftpNosuchuser,
SslCacertBadfile,
RemoteFileNotFound,
Ssh,
SslShutdownFailed,
Again,
SslCrlBadfile,
SslIssuerError,
FtpPretFailed,
RtspCseqError,
RtspSessionError,
FtpBadFileList,
ChunkFailed,
NoConnectionAvailable,
SslPinnedpubkeynotmatch,
SslInvalidcertstatus,
Http2Stream,
RecursiveApiCall,
AuthError,
Http3,
QuicConnectError,
Proxy,
SslClientcert,
UnrecoverablePoll,
TooLarge,
Unknown,
};
pub fn errorFromCode(code: c.CURLcode) Error {
if (comptime IS_DEBUG) {
std.debug.assert(code != c.CURLE_OK);
}
return switch (code) {
c.CURLE_UNSUPPORTED_PROTOCOL => Error.UnsupportedProtocol,
c.CURLE_FAILED_INIT => Error.FailedInit,
c.CURLE_URL_MALFORMAT => Error.UrlMalformat,
c.CURLE_NOT_BUILT_IN => Error.NotBuiltIn,
c.CURLE_COULDNT_RESOLVE_PROXY => Error.CouldntResolveProxy,
c.CURLE_COULDNT_RESOLVE_HOST => Error.CouldntResolveHost,
c.CURLE_COULDNT_CONNECT => Error.CouldntConnect,
c.CURLE_WEIRD_SERVER_REPLY => Error.WeirdServerReply,
c.CURLE_REMOTE_ACCESS_DENIED => Error.RemoteAccessDenied,
c.CURLE_FTP_ACCEPT_FAILED => Error.FtpAcceptFailed,
c.CURLE_FTP_WEIRD_PASS_REPLY => Error.FtpWeirdPassReply,
c.CURLE_FTP_ACCEPT_TIMEOUT => Error.FtpAcceptTimeout,
c.CURLE_FTP_WEIRD_PASV_REPLY => Error.FtpWeirdPasvReply,
c.CURLE_FTP_WEIRD_227_FORMAT => Error.FtpWeird227Format,
c.CURLE_FTP_CANT_GET_HOST => Error.FtpCantGetHost,
c.CURLE_HTTP2 => Error.Http2,
c.CURLE_FTP_COULDNT_SET_TYPE => Error.FtpCouldntSetType,
c.CURLE_PARTIAL_FILE => Error.PartialFile,
c.CURLE_FTP_COULDNT_RETR_FILE => Error.FtpCouldntRetrFile,
c.CURLE_QUOTE_ERROR => Error.QuoteError,
c.CURLE_HTTP_RETURNED_ERROR => Error.HttpReturnedError,
c.CURLE_WRITE_ERROR => Error.WriteError,
c.CURLE_UPLOAD_FAILED => Error.UploadFailed,
c.CURLE_READ_ERROR => Error.ReadError,
c.CURLE_OUT_OF_MEMORY => Error.OutOfMemory,
c.CURLE_OPERATION_TIMEDOUT => Error.OperationTimedout,
c.CURLE_FTP_PORT_FAILED => Error.FtpPortFailed,
c.CURLE_FTP_COULDNT_USE_REST => Error.FtpCouldntUseRest,
c.CURLE_RANGE_ERROR => Error.RangeError,
c.CURLE_SSL_CONNECT_ERROR => Error.SslConnectError,
c.CURLE_BAD_DOWNLOAD_RESUME => Error.BadDownloadResume,
c.CURLE_FILE_COULDNT_READ_FILE => Error.FileCouldntReadFile,
c.CURLE_LDAP_CANNOT_BIND => Error.LdapCannotBind,
c.CURLE_LDAP_SEARCH_FAILED => Error.LdapSearchFailed,
c.CURLE_ABORTED_BY_CALLBACK => Error.AbortedByCallback,
c.CURLE_BAD_FUNCTION_ARGUMENT => Error.BadFunctionArgument,
c.CURLE_INTERFACE_FAILED => Error.InterfaceFailed,
c.CURLE_TOO_MANY_REDIRECTS => Error.TooManyRedirects,
c.CURLE_UNKNOWN_OPTION => Error.UnknownOption,
c.CURLE_SETOPT_OPTION_SYNTAX => Error.SetoptOptionSyntax,
c.CURLE_GOT_NOTHING => Error.GotNothing,
c.CURLE_SSL_ENGINE_NOTFOUND => Error.SslEngineNotfound,
c.CURLE_SSL_ENGINE_SETFAILED => Error.SslEngineSetfailed,
c.CURLE_SEND_ERROR => Error.SendError,
c.CURLE_RECV_ERROR => Error.RecvError,
c.CURLE_SSL_CERTPROBLEM => Error.SslCertproblem,
c.CURLE_SSL_CIPHER => Error.SslCipher,
c.CURLE_PEER_FAILED_VERIFICATION => Error.PeerFailedVerification,
c.CURLE_BAD_CONTENT_ENCODING => Error.BadContentEncoding,
c.CURLE_FILESIZE_EXCEEDED => Error.FilesizeExceeded,
c.CURLE_USE_SSL_FAILED => Error.UseSslFailed,
c.CURLE_SEND_FAIL_REWIND => Error.SendFailRewind,
c.CURLE_SSL_ENGINE_INITFAILED => Error.SslEngineInitfailed,
c.CURLE_LOGIN_DENIED => Error.LoginDenied,
c.CURLE_TFTP_NOTFOUND => Error.TftpNotfound,
c.CURLE_TFTP_PERM => Error.TftpPerm,
c.CURLE_REMOTE_DISK_FULL => Error.RemoteDiskFull,
c.CURLE_TFTP_ILLEGAL => Error.TftpIllegal,
c.CURLE_TFTP_UNKNOWNID => Error.TftpUnknownid,
c.CURLE_REMOTE_FILE_EXISTS => Error.RemoteFileExists,
c.CURLE_TFTP_NOSUCHUSER => Error.TftpNosuchuser,
c.CURLE_SSL_CACERT_BADFILE => Error.SslCacertBadfile,
c.CURLE_REMOTE_FILE_NOT_FOUND => Error.RemoteFileNotFound,
c.CURLE_SSH => Error.Ssh,
c.CURLE_SSL_SHUTDOWN_FAILED => Error.SslShutdownFailed,
c.CURLE_AGAIN => Error.Again,
c.CURLE_SSL_CRL_BADFILE => Error.SslCrlBadfile,
c.CURLE_SSL_ISSUER_ERROR => Error.SslIssuerError,
c.CURLE_FTP_PRET_FAILED => Error.FtpPretFailed,
c.CURLE_RTSP_CSEQ_ERROR => Error.RtspCseqError,
c.CURLE_RTSP_SESSION_ERROR => Error.RtspSessionError,
c.CURLE_FTP_BAD_FILE_LIST => Error.FtpBadFileList,
c.CURLE_CHUNK_FAILED => Error.ChunkFailed,
c.CURLE_NO_CONNECTION_AVAILABLE => Error.NoConnectionAvailable,
c.CURLE_SSL_PINNEDPUBKEYNOTMATCH => Error.SslPinnedpubkeynotmatch,
c.CURLE_SSL_INVALIDCERTSTATUS => Error.SslInvalidcertstatus,
c.CURLE_HTTP2_STREAM => Error.Http2Stream,
c.CURLE_RECURSIVE_API_CALL => Error.RecursiveApiCall,
c.CURLE_AUTH_ERROR => Error.AuthError,
c.CURLE_HTTP3 => Error.Http3,
c.CURLE_QUIC_CONNECT_ERROR => Error.QuicConnectError,
c.CURLE_PROXY => Error.Proxy,
c.CURLE_SSL_CLIENTCERT => Error.SslClientcert,
c.CURLE_UNRECOVERABLE_POLL => Error.UnrecoverablePoll,
c.CURLE_TOO_LARGE => Error.TooLarge,
else => Error.Unknown,
};
}
pub const ErrorMulti = error{
BadHandle,
BadEasyHandle,
OutOfMemory,
InternalError,
BadSocket,
UnknownOption,
AddedAlready,
RecursiveApiCall,
WakeupFailure,
BadFunctionArgument,
AbortedByCallback,
UnrecoverablePoll,
Unknown,
};
pub const ErrorHeader = error{
OutOfMemory,
BadArgument,
NotBuiltIn,
Unknown,
};
pub fn errorMFromCode(code: c.CURLMcode) ErrorMulti {
if (comptime IS_DEBUG) {
std.debug.assert(code != c.CURLM_OK);
}
return switch (code) {
c.CURLM_BAD_HANDLE => ErrorMulti.BadHandle,
c.CURLM_BAD_EASY_HANDLE => ErrorMulti.BadEasyHandle,
c.CURLM_OUT_OF_MEMORY => ErrorMulti.OutOfMemory,
c.CURLM_INTERNAL_ERROR => ErrorMulti.InternalError,
c.CURLM_BAD_SOCKET => ErrorMulti.BadSocket,
c.CURLM_UNKNOWN_OPTION => ErrorMulti.UnknownOption,
c.CURLM_ADDED_ALREADY => ErrorMulti.AddedAlready,
c.CURLM_RECURSIVE_API_CALL => ErrorMulti.RecursiveApiCall,
c.CURLM_WAKEUP_FAILURE => ErrorMulti.WakeupFailure,
c.CURLM_BAD_FUNCTION_ARGUMENT => ErrorMulti.BadFunctionArgument,
c.CURLM_ABORTED_BY_CALLBACK => ErrorMulti.AbortedByCallback,
c.CURLM_UNRECOVERABLE_POLL => ErrorMulti.UnrecoverablePoll,
else => ErrorMulti.Unknown,
};
}
pub fn errorHFromCode(code: c.CURLHcode) ErrorHeader {
if (comptime IS_DEBUG) {
std.debug.assert(code != c.CURLHE_OK);
}
return switch (code) {
c.CURLHE_OUT_OF_MEMORY => ErrorHeader.OutOfMemory,
c.CURLHE_BAD_ARGUMENT => ErrorHeader.BadArgument,
c.CURLHE_NOT_BUILT_IN => ErrorHeader.NotBuiltIn,
else => ErrorHeader.Unknown,
};
}
pub fn errorCheck(code: c.CURLcode) Error!void {
if (code == c.CURLE_OK) {
return;
}
return errorFromCode(code);
}
pub fn errorMCheck(code: c.CURLMcode) ErrorMulti!void {
if (code == c.CURLM_OK) {
return;
}
if (code == c.CURLM_CALL_MULTI_PERFORM) {
return;
}
return errorMFromCode(code);
}
pub fn errorHCheck(code: c.CURLHcode) ErrorHeader!void {
if (code == c.CURLHE_OK) {
return;
}
return errorHFromCode(code);
}
pub const CurlMsgType = enum(c.CURLMSG) {
none = c.CURLMSG_NONE,
done = c.CURLMSG_DONE,
last = c.CURLMSG_LAST,
};
pub const CurlMsgData = union(CurlMsgType) {
none: ?*anyopaque,
done: ?Error,
last: ?*anyopaque,
};
pub const CurlMsg = struct {
easy_handle: *Curl,
data: CurlMsgData,
};
pub fn curl_global_init(flags: CurlGlobalFlags) Error!void {
try errorCheck(c.curl_global_init(flags.to_c()));
}
pub fn curl_global_cleanup() void {
c.curl_global_cleanup();
}
pub fn curl_version() [*c]const u8 {
return c.curl_version();
}
pub fn curl_easy_init() ?*Curl {
return c.curl_easy_init();
}
pub fn curl_easy_cleanup(easy: *Curl) void {
c.curl_easy_cleanup(easy);
}
pub fn curl_easy_perform(easy: *Curl) Error!void {
try errorCheck(c.curl_easy_perform(easy));
}
pub fn curl_easy_setopt(easy: *Curl, comptime option: CurlOption, value: anytype) Error!void {
const opt: c.CURLoption = @intFromEnum(option);
const code = switch (option) {
.verbose,
.post,
.http_get,
.ssl_verify_host,
.ssl_verify_peer,
.proxy_ssl_verify_host,
.proxy_ssl_verify_peer,
=> blk: {
const n: c_long = switch (@typeInfo(@TypeOf(value))) {
.bool => switch (option) {
.ssl_verify_host, .proxy_ssl_verify_host => if (value) 2 else 0,
else => if (value) 1 else 0,
},
else => @compileError("expected bool|integer for " ++ @tagName(option) ++ ", got " ++ @typeName(@TypeOf(value))),
};
break :blk c.curl_easy_setopt(easy, opt, n);
},
.timeout_ms,
.connect_timeout_ms,
.max_redirs,
.follow_location,
.post_field_size,
=> blk: {
const n: c_long = switch (@typeInfo(@TypeOf(value))) {
.comptime_int, .int => @intCast(value),
else => @compileError("expected integer for " ++ @tagName(option) ++ ", got " ++ @typeName(@TypeOf(value))),
};
break :blk c.curl_easy_setopt(easy, opt, n);
},
.url,
.redir_protocols_str,
.proxy,
.accept_encoding,
.custom_request,
.cookie,
.proxy_user_pwd,
.copy_post_fields,
=> blk: {
const s: ?[*]const u8 = value;
break :blk c.curl_easy_setopt(easy, opt, s);
},
.ca_info_blob,
.proxy_ca_info_blob,
=> blk: {
const blob: CurlBlob = value;
break :blk c.curl_easy_setopt(easy, opt, blob);
},
.http_post => blk: {
// CURLOPT_HTTPPOST expects ?*curl_httppost (multipart formdata)
const ptr: ?*CurlHttpPost = value;
break :blk c.curl_easy_setopt(easy, opt, ptr);
},
.http_header => blk: {
const list: ?*CurlSList = value;
break :blk c.curl_easy_setopt(easy, opt, list);
},
.private,
.header_data,
.write_data,
=> blk: {
const ptr: *anyopaque = @ptrCast(value);
break :blk c.curl_easy_setopt(easy, opt, ptr);
},
.debug_function => blk: {
const cb: c.curl_debug_callback = switch (@typeInfo(@TypeOf(value))) {
.null => null,
.@"fn" => struct {
fn cb(handle: ?*Curl, msg_type: c.curl_infotype, raw: [*c]u8, len: usize, user: ?*anyopaque) callconv(.c) c_int {
const h = handle orelse unreachable;
const u = user orelse unreachable;
return value(h, @enumFromInt(@intFromEnum(msg_type)), raw, len, u);
}
}.cb,
else => @compileError("expected Zig function or null for " ++ @tagName(option) ++ ", got " ++ @typeName(@TypeOf(value))),
};
break :blk c.curl_easy_setopt(easy, opt, cb);
},
.header_function => blk: {
const cb: c.curl_write_callback = switch (@typeInfo(@TypeOf(value))) {
.null => null,
.@"fn" => struct {
fn cb(buffer: [*c]u8, count: usize, len: usize, user: ?*anyopaque) callconv(.c) usize {
const u = user orelse unreachable;
return value(@ptrCast(buffer), count, len, u);
}
}.cb,
else => @compileError("expected Zig function or null for " ++ @tagName(option) ++ ", got " ++ @typeName(@TypeOf(value))),
};
break :blk c.curl_easy_setopt(easy, opt, cb);
},
.write_function => blk: {
const cb: c.curl_write_callback = switch (@typeInfo(@TypeOf(value))) {
.null => null,
.@"fn" => struct {
fn cb(buffer: [*c]u8, count: usize, len: usize, user: ?*anyopaque) callconv(.c) usize {
const u = user orelse unreachable;
return value(@ptrCast(buffer), count, len, u);
}
}.cb,
else => @compileError("expected Zig function or null for " ++ @tagName(option) ++ ", got " ++ @typeName(@TypeOf(value))),
};
break :blk c.curl_easy_setopt(easy, opt, cb);
},
};
try errorCheck(code);
}
pub fn curl_easy_getinfo(easy: *Curl, comptime info: CurlInfo, out: anytype) Error!void {
if (@typeInfo(@TypeOf(out)) != .pointer) {
@compileError("curl_easy_getinfo out must be a pointer, got " ++ @typeName(@TypeOf(out)));
}
const inf: c.CURLINFO = @intFromEnum(info);
const code = switch (info) {
.effective_url => blk: {
const p: *[*c]u8 = out;
break :blk c.curl_easy_getinfo(easy, inf, p);
},
.response_code,
.redirect_count,
=> blk: {
const p: *c_long = out;
break :blk c.curl_easy_getinfo(easy, inf, p);
},
.private => blk: {
const p: **anyopaque = out;
break :blk c.curl_easy_getinfo(easy, inf, p);
},
};
try errorCheck(code);
}
pub fn curl_easy_header(
easy: *Curl,
name: [*:0]const u8,
index: usize,
comptime origin: CurlHeaderOrigin,
request: c_int,
hout: *?*CurlHeader,
) ErrorHeader!void {
var c_hout: [*c]CurlHeader = null;
const code = c.curl_easy_header(easy, name, index, @intFromEnum(origin), request, &c_hout);
switch (code) {
c.CURLHE_OK => {
hout.* = @ptrCast(c_hout);
return;
},
c.CURLHE_BADINDEX,
c.CURLHE_MISSING,
c.CURLHE_NOHEADERS,
c.CURLHE_NOREQUEST,
=> {
hout.* = null;
return;
},
else => {
hout.* = null;
return errorHFromCode(code);
},
}
}
pub fn curl_easy_nextheader(
easy: *Curl,
comptime origin: CurlHeaderOrigin,
request: c_int,
prev: ?*CurlHeader,
) ?*CurlHeader {
const ptr = c.curl_easy_nextheader(easy, @intFromEnum(origin), request, prev);
if (ptr == null) return null;
return @ptrCast(ptr);
}
pub fn curl_multi_init() ?*CurlM {
return c.curl_multi_init();
}
pub fn curl_multi_cleanup(multi: *CurlM) ErrorMulti!void {
try errorMCheck(c.curl_multi_cleanup(multi));
}
pub fn curl_multi_setopt(multi: *CurlM, comptime option: CurlMOption, value: anytype) ErrorMulti!void {
const opt: c.CURLMoption = @intFromEnum(option);
const code = switch (option) {
.max_host_connections => blk: {
const n: c_long = switch (@typeInfo(@TypeOf(value))) {
.comptime_int, .int => @intCast(value),
else => @compileError("expected integer for " ++ @tagName(option) ++ ", got " ++ @typeName(@TypeOf(value))),
};
break :blk c.curl_multi_setopt(multi, opt, n);
},
};
try errorMCheck(code);
}
pub fn curl_multi_add_handle(multi: *CurlM, easy: *Curl) ErrorMulti!void {
try errorMCheck(c.curl_multi_add_handle(multi, easy));
}
pub fn curl_multi_remove_handle(multi: *CurlM, easy: *Curl) ErrorMulti!void {
try errorMCheck(c.curl_multi_remove_handle(multi, easy));
}
pub fn curl_multi_perform(multi: *CurlM, running_handles: *c_int) ErrorMulti!void {
try errorMCheck(c.curl_multi_perform(multi, running_handles));
}
pub fn curl_multi_poll(
multi: *CurlM,
extra_fds: []CurlWaitFd,
timeout_ms: c_int,
numfds: ?*c_int,
) ErrorMulti!void {
const raw_fds: [*c]c.curl_waitfd = if (extra_fds.len == 0) null else @ptrCast(extra_fds.ptr);
try errorMCheck(c.curl_multi_poll(multi, raw_fds, @intCast(extra_fds.len), timeout_ms, numfds));
}
pub fn curl_multi_info_read(multi: *CurlM, msgs_in_queue: *c_int) ?CurlMsg {
const ptr = c.curl_multi_info_read(multi, msgs_in_queue);
if (ptr == null) return null;
const msg: *const c.CURLMsg = @ptrCast(ptr);
const easy_handle = msg.easy_handle orelse unreachable;
return switch (msg.msg) {
c.CURLMSG_NONE => .{
.easy_handle = easy_handle,
.data = .{ .none = msg.data.whatever },
},
c.CURLMSG_DONE => .{
.easy_handle = easy_handle,
.data = .{ .done = if (errorCheck(msg.data.result)) |_| null else |err| err },
},
c.CURLMSG_LAST => .{
.easy_handle = easy_handle,
.data = .{ .last = msg.data.whatever },
},
else => unreachable,
};
}
pub fn curl_slist_append(list: ?*CurlSList, header: [*:0]const u8) ?*CurlSList {
return c.curl_slist_append(list, header);
}
pub fn curl_slist_free_all(list: ?*CurlSList) void {
if (list) |ptr| {
c.curl_slist_free_all(ptr);
}
}