All Classes Files Functions Enumerations Enumerator Pages
Public Member Functions | List of all members
kvikio::CurlHandle Class Reference

Representation of a curl easy handle pointer and its operations. More...

#include <libcurl.hpp>

Public Member Functions

 CurlHandle (LibCurl::UniqueHandlePtr handle, std::string source_file, std::string source_line)
 Construct a new curl handle. More...
 
 CurlHandle (CurlHandle const &)=delete
 CurlHandle support is not movable or copyable.
 
CurlHandleoperator= (CurlHandle const &)=delete
 
 CurlHandle (CurlHandle &&o)=delete
 
CurlHandleoperator= (CurlHandle &&o)=delete
 
CURL * handle () noexcept
 Get the underlying curl easy handle pointer.
 
template<typename VAL >
void setopt (CURLoption option, VAL value)
 Set option for the curl handle. More...
 
void perform ()
 Perform a blocking network transfer using previously set options. More...
 
template<typename OUTPUT >
void getinfo (CURLINFO info, OUTPUT *output)
 Extract information from a curl handle. More...
 

Detailed Description

Representation of a curl easy handle pointer and its operations.

An instance is given a LibCurl::UniqueHandlePtr on creation, which is later retained on destruction.

Definition at line 88 of file libcurl.hpp.

Constructor & Destructor Documentation

◆ CurlHandle()

kvikio::CurlHandle::CurlHandle ( LibCurl::UniqueHandlePtr  handle,
std::string  source_file,
std::string  source_line 
)

Construct a new curl handle.

Typically, do not call this directly instead use the create_curl_handle() macro.

Parameters
handleAn unused curl easy handle pointer, which is retained on destruction.
source_filePath of source file of the caller (for error messages).
source_lineLine of source file of the caller (for error messages).

Member Function Documentation

◆ getinfo()

template<typename OUTPUT >
void kvikio::CurlHandle::getinfo ( CURLINFO  info,
OUTPUT *  output 
)
inline

Extract information from a curl handle.

See https://curl.se/libcurl/c/curl_easy_getinfo.html for available options.

Template Parameters
OUTPUTThe type of the output.
Parameters
outputThe output, which is used as-is: curl_easy_getinfo(..., output).

Definition at line 157 of file libcurl.hpp.

◆ perform()

void kvikio::CurlHandle::perform ( )

Perform a blocking network transfer using previously set options.

See https://curl.se/libcurl/c/curl_easy_perform.html.

◆ setopt()

template<typename VAL >
void kvikio::CurlHandle::setopt ( CURLoption  option,
VAL  value 
)
inline

Set option for the curl handle.

See https://curl.se/libcurl/c/curl_easy_setopt.html for available options.

Template Parameters
VALThe type of the value.
Parameters
optionThe curl option to set.

Definition at line 130 of file libcurl.hpp.


The documentation for this class was generated from the following file: