#include <wx/webrequest.h>
Session allows creating wxWebRequestSync objects used for the synchronous HTTP requests.
This class is similar to wxWebSession but is used for synchronous requests only. Please see wxWebSession description for more details.
Public Member Functions | |
wxWebRequestSync | CreateRequest (const wxString &url) |
Create a new synchronous request for the specified URL. More... | |
virtual wxVersionInfo | GetLibraryVersionInfo () const |
Retrieve the version information about the implementation library used by this session. More... | |
void | AddCommonHeader (const wxString &name, const wxString &value) |
Sets a request header in every wxWebRequestSync created from this session after is has been set. More... | |
bool | SetBaseURL (const wxString &url) |
Sets the base URL for all requests using non-absolute URLs. More... | |
void | SetTempDir (const wxString &dir) |
Override the default temporary directory that may be used by the session implementation, when required. More... | |
wxString | GetTempDir () const |
Returns the current temporary directory. More... | |
void | SetProxy (const wxWebProxy &proxy) |
Set the proxy to use for all requests initiated by this session. More... | |
wxWebSessionHandle | GetNativeHandle () const |
Return the native handle corresponding to this session object. More... | |
bool | IsOpened () const |
Return true if the session was successfully opened and can be used. More... | |
void | Close () |
Close the session. More... | |
bool | EnablePersistentStorage (bool enable) |
Allows to enable persistent storage for the session. More... | |
Static Public Member Functions | |
static wxWebSessionSync & | GetDefault () |
Returns the default session. More... | |
static wxWebSessionSync | New (const wxString &backend=wxString()) |
Creates a new wxWebSessionSync object. More... | |
static bool | IsBackendAvailable (const wxString &backend) |
Allows to check if the specified backend is available at runtime. More... | |
Sets a request header in every wxWebRequestSync created from this session after is has been set.
A good example for a session-wide request header is the User-Agent
header.
Calling this function with the same header name again replaces the previously used value.
name | Name of the header |
value | String value of the header |
void wxWebSessionSync::Close | ( | ) |
Close the session.
This frees any resources associated with the session and puts it in an invalid state. Another session object can be assigned to it later to allow using this object again.
Note that this is usually unnecessary to call this function explicitly, it will be done by the destructor of the object when it is destroyed in any case. Also note that the session object resources will remain allocated as long as there are any wxWebRequest objects using it still in existence.
wxWebRequestSync wxWebSessionSync::CreateRequest | ( | const wxString & | url | ) |
Create a new synchronous request for the specified URL.
If SetBaseURL() had been called before this function, the url can be relative, e.g. with https://foo.com/api
as the base URL, passing the following values would result in using these full URLs:
get
would become https://foo.com/api/get
/root
would become https://foo.com/root
https://bar.org/
would remain unchangedurl | The URL of the HTTP resource for this request |
bool wxWebSessionSync::EnablePersistentStorage | ( | bool | enable | ) |
Allows to enable persistent storage for the session.
Persistent storage is disabled by default, but this function can be called to enable it before the first request is created. Note that it can't be called any more after creating the first request in this session.
When persistent storage is enabled, the session will store cookies and other data between sessions.
|
static |
Returns the default session.
|
virtual |
Retrieve the version information about the implementation library used by this session.
wxWebSessionHandle wxWebSessionSync::GetNativeHandle | ( | ) | const |
Return the native handle corresponding to this session object.
wxWebSessionHandle
is an opaque type containing a value of the following type according to the backend being used:
HINTERNET
session handle.CURLM
struct pointer.NSURLSession
object pointer.wxString wxWebSessionSync::GetTempDir | ( | ) | const |
Returns the current temporary directory.
|
static |
Allows to check if the specified backend is available at runtime.
Usually the default backend should always be available, but e.g. macOS before 10.9 does not have the NSURLSession
implementation available.
bool wxWebSessionSync::IsOpened | ( | ) | const |
Return true if the session was successfully opened and can be used.
|
static |
Creates a new wxWebSessionSync object.
backend may be specified explicitly by using of the predefined wxWebSessionBackendWinHTTP
, wxWebSessionBackendURLSession
or wxWebSessionBackendCURL
constants to select the corresponding backend or left empty to select the default backend. The default depends on the current platform: WinHTTP-based implementation is used under MSW, NSURLSession-based one under macOS and libcurl-based otherwise.
Further, if WXWEBREQUEST_BACKEND
environment variable is defined, it overrides the default backend selection, allowing to force the use of libcurl-based implementation by default under MSW or macOS platforms, for example.
Use IsOpened() to check if the session creation succeeded.
backend | The backend web session implementation to use or empty to use the default implementation as described above. |
bool wxWebSessionSync::SetBaseURL | ( | const wxString & | url | ) |
Sets the base URL for all requests using non-absolute URLs.
If this function is called and returns true, the url will be used as the base for all the requests created by the subsequent calls to CreateRequest() with relative URLs. This is especially useful when using some web API which typically uses a common root URL for all its endpoints.
url | An absolute URL, i.e. including the scheme and the host. |
void wxWebSessionSync::SetProxy | ( | const wxWebProxy & | proxy | ) |
Set the proxy to use for all requests initiated by this session.
By default, the system default proxy settings are used but this function can be called before creating the first request to override them.
void wxWebSessionSync::SetTempDir | ( | const wxString & | dir | ) |
Override the default temporary directory that may be used by the session implementation, when required.