Class restincurl::RequestBuilder
ClassList > restincurl > RequestBuilder
#include <restincurl.h>
Public Types
Type | Name |
---|---|
typedef std::unique_ptr< RequestBuilder > | ptr_t |
Public Functions
Type | Name |
---|---|
RequestBuilder & | AcceptJson () |
RequestBuilder & | BasicAuthentication (const std::string & name, const std::string & passwd) |
void | Build () |
bool | CanSendFile () noexcept const |
RequestBuilder & | ConnectTimeout (const long timeout) |
RequestBuilder & | Delete (const std::string & url) |
void | Execute () |
void | ExecuteSynchronous () |
RequestBuilder & | Get (const std::string & url) |
RequestBuilder & | Head (const std::string & url) |
RequestBuilder & | Header (const char * value) |
RequestBuilder & | Header (const std::string & name, const std::string & value) |
RequestBuilder & | IgnoreIncomingData () |
RequestBuilder & | Option (const CURLoption & opt, const T & value) |
RequestBuilder & | Options (const std::string & url) |
RequestBuilder & | Patch (const std::string & url) |
RequestBuilder & | Post (const std::string & url) |
RequestBuilder & | PostMime (const std::string & url) |
RequestBuilder & | Put (const std::string & url) |
RequestBuilder (Worker & worker) |
|
RequestBuilder & | RequestTimeout (const long timeout) |
RequestBuilder & | SendData (OutDataHandler< T > & dh) |
RequestBuilder & | SendData (T data) |
RequestBuilder & | SendFile (const std::string & path) |
RequestBuilder & | SendFileAsForm (const std::string & path) |
RequestBuilder & | SendFileAsMimeData (const std::string & path, const std::string & name={}, const std::string & remoteName={}, const std::string & mimeType={}) |
RequestBuilder & | SetReadHandler (size_t(*)(char *, size_t, size_t, void *) handler, void * userdata) |
RequestBuilder & | SetWriteHandler (size_t(*)(char *, size_t, size_t, void *) handler, void * userdata) |
RequestBuilder & | StoreData (InDataHandler< T > & dh) |
RequestBuilder & | StoreData (T & data) |
RequestBuilder & | Trace (bool enable=true) |
RequestBuilder & | WithCompletion (completion_fn_t fn) |
RequestBuilder & | WithJson () |
RequestBuilder & | WithJson (std::string body) |
~RequestBuilder () |
Protected Functions
Type | Name |
---|---|
RequestBuilder & | Prepare (RequestType rt, const std::string & url) |
Detailed Description
Convenient interface to build requests.
Even if this is a light-weight wrapper around libcurl, we have a simple and modern way to define our requests that contains convenience-methods for the most common use-cases.
Public Types Documentation
typedef ptr_t
Public Functions Documentation
function AcceptJson
Sets the accept header to "Application/json"
function BasicAuthentication
inline RequestBuilder & restincurl::RequestBuilder::BasicAuthentication (
const std::string & name,
const std::string & passwd
)
HTTP Basic Authentication
Authenticate the request with HTTP Basic Authentication.
Parameters:
name
Name to authenticate withpasswd
Password to authenticate with
Note that if name or password is empty, authentication is ignored. This makes it simple to add optional authentication to your project, by simply assigning values to the strings you pass here, or not.
function Build
function CanSendFile
function ConnectTimeout
Set the connect timeout for a request
Parameters:
timeout
Timeout in milliseconds. Set to -1 to use the default.
function Delete
Use a HTTP DELETE request
function Execute
Execute the request asynchronously
This will queue the request for processing. If the number of active requests are less than RESTINCURL_MAX_CONNECTIONS
, the request will start executing almost immediately.
The method returns immediately.
Exception:
- restincurl::Exception derived exceptions on error
This method is only available when RESTINCURL_ENABLE_ASYNC
is nonzero.
function ExecuteSynchronous
Execute the request synchronously
This will execute the request and call the callback (if you declared one) in the current thread before the method returns.
Exception:
- restincurl::Exception derived exceptions on error
This method is available even when RESTINCURL_ENABLE_ASYNC
is enabled ( != 0).
function Get
Use a HTTP GET request
function Head
Use a HTTP HEAD request
function Header [1/2]
Specify a HTTP header for the request.
Parameters:
value
The value of the header-line, properly formatted according to the relevant HTTP specifications.
function Header [2/2]
inline RequestBuilder & restincurl::RequestBuilder::Header (
const std::string & name,
const std::string & value
)
Specify a HTTP header for the request.
Parameters:
name
Name of the headervalue
The value of the header
This is a convenience method that will build the appropriate header for you.
function IgnoreIncomingData
Do not process incoming data
The response body will be read from the network, but not buffered and not available for later inspection.
function Option
template<typename T>
inline RequestBuilder & restincurl::RequestBuilder::Option (
const CURLoption & opt,
const T & value
)
Sets a Curl options.
Parameters:
opt
CURLoption enum specifying the optionvalue
Value to set.
It is critical that the type of the value is of the same type that libcurl is expecting for the option. RESTinCurl makes no attempt to validate or cast the values.
Please refer to the libcurl documentation for curl_easy_setopt()
function Options
Use a HTTP OPTIONS request
function Patch
Use a HTTP PATCH request
function Post
Use a HTTP POST request
function PostMime
Use a HTTP POST request
function Put
Use a HTTP PUT request
function RequestBuilder
function RequestTimeout
Set request timeout
Parameters:
timeout
Timeout in milliseconds. Set to -1 to use the default.
function SendData [1/2]
template<typename T>
inline RequestBuilder & restincurl::RequestBuilder::SendData (
OutDataHandler < T > & dh
)
Specify Data Handler for outbound data
You can use this method when you need to use a Data Handler, rather than a simple string, to provide the data for a POST, PUT etc. request.
Parameters:
dh
Data Handler instance.
Note that the Data Handler is passed by reference. It is your responsibility that the instance is present at least until the request has finished (your code owns the Data Handler instance).
function SendData [2/2]
Convenience method to specify a object that contains the data to send during a request.
Parameters:
data
Data to send. Typically this will be a std::string, std::vector<char> or a similar object.
RESTinCurl takes ownership of this data (by moving it).
function SendFile
Send a file
Parameters:
path
Full path to the file to send.
Exception:
- SystemException if the file cannot be opened.
- Exception if the method is called for a non-send operation
function SendFileAsForm
Send a file
Parameters:
path
Full path to the file to send.
Exception:
- SystemException if the file cannot be opened.
- Exception if the method is called for a non-send operation
function SendFileAsMimeData
inline RequestBuilder & restincurl::RequestBuilder::SendFileAsMimeData (
const std::string & path,
const std::string & name={},
const std::string & remoteName={},
const std::string & mimeType={}
)
Send a file as a multipart/form mime segment
Parameters:
path
Full path to the file tro sendname
Otional name to use for the file in the mime segmentremoteName
Optional name to label the file as for the remote endmimeType
Optional mime-type for the file
Exception:
- Exception if the method is called for a non-mime-post operation
function SetReadHandler
inline RequestBuilder & restincurl::RequestBuilder::SetReadHandler (
size_t(*)(char *, size_t, size_t, void *) handler,
void * userdata
)
Set a Curl compatible read handler.
Parameters:
handler
Curl C API read handler
You probably don't need to call this directly.
function SetWriteHandler
inline RequestBuilder & restincurl::RequestBuilder::SetWriteHandler (
size_t(*)(char *, size_t, size_t, void *) handler,
void * userdata
)
Set a Curl compatible write handler.
Parameters:
handler
Curl C API write handler
You probably don't need to call this directly.
function StoreData [1/2]
template<typename T>
inline RequestBuilder & restincurl::RequestBuilder::StoreData (
InDataHandler < T > & dh
)
Specify Data Handler for inbound data
You can use this method when you need to use a Data Handler, rather than a simple string, to receive data during the request.
Parameters:
dh
Data Handler instance.
Note that the Data Handler is passed by reference. It is your responsibility that the instance is present at least until the request has finished (your code owns the Data Handler instance).
function StoreData [2/2]
Convenience method to specify a object that receives incoming data during a request.
Parameters:
data
Buffer to hold incoming data. Typically this will be a std::string, std::vector<char> or a similar object.
Note that data is passed by reference. It is your responsibility that the instance is present at least until the request has finished (your code owns the object).
function Trace
Enables or disables trace logging for requests.
The trace logging will show detailed information about what libcurl does and data sent and received during a request.
Basically it sets CURLOPT_DEBUGFUNCTION
and CURLOPT_VERBOSE
.
function WithCompletion
Specify a callback that will be called when the request is complete (or failed).
Parameters:
fn
Callback to be called
For asynchronous requests, the callback will be called from the worker-thread shared by all requests and timers for the client instance. It is imperative that you return immediately, and don't keep the thread busy more than strictly required. If you need do do some computing or IO in response to the information you receive, you should do that in another thread.
function WithJson [1/2]
Sets the content-type to "Application/json; charset=utf-8"
function WithJson [2/2]
Sets the content-type to "Application/json; charset=utf-8"
Parameters:
body
Json payload to send with the request.
function ~RequestBuilder
Protected Functions Documentation
function Prepare
inline RequestBuilder & restincurl::RequestBuilder::Prepare (
RequestType rt,
const std::string & url
)
The documentation for this class was generated from the following file SpiceQL/include/restincurl.h