provides a way to communicate with HTTP servers using Qore data structures More...
#include <QoreHTTPClient.h>
Public Member Functions | |
DLLEXPORT | QoreHTTPClient () |
creates the QoreHTTPClient object | |
virtual DLLEXPORT | ~QoreHTTPClient () |
destroys the object and frees all associated memory | |
DLLEXPORT int | setOptions (const QoreHashNode *opts, ExceptionSink *xsink) |
set options with a hash, returns -1 if an exception was thrown, 0 for OK | |
DLLEXPORT void | setDefaultPort (int prt) |
sets the default port | |
DLLEXPORT void | setDefaultPath (const char *pth) |
sets the default path | |
DLLEXPORT void | addProtocol (const char *prot, int port, bool ssl=false) |
adds a protocol | |
DLLEXPORT void | setTimeout (int to) |
sets the connection and response packet timeout value in milliseconds | |
DLLEXPORT int | getTimeout () const |
returns the connection and response packet timeout value in milliseconds | |
DLLEXPORT void | setEncoding (const QoreEncoding *qe) |
sets the default encoding for the object | |
DLLEXPORT const QoreEncoding * | getEncoding () const |
returns the default encoding for the object | |
DLLEXPORT int | setHTTPVersion (const char *version, ExceptionSink *xsink) |
sets the http version from a string | |
DLLEXPORT const char * | getHTTPVersion () const |
returns the http version as a string (either "1.0" or "1.1") | |
DLLEXPORT void | setHTTP11 (bool h11) |
sets or clears HTTP 1.1 protocol compliance | |
DLLEXPORT bool | isHTTP11 () const |
returns true if HTTP 1.1 protocol compliance has been set | |
DLLEXPORT int | setURL (const char *url, ExceptionSink *xsink) |
sets the connection URL | |
DLLEXPORT QoreStringNode * | getURL () |
returns the connection parameters as a URL, caller owns the reference count returned | |
DLLEXPORT int | setProxyURL (const char *proxy, ExceptionSink *xsink) |
sets the proxy URL | |
DLLEXPORT QoreStringNode * | getProxyURL () |
returns the proxy connection parameters as a URL (or 0 if there is none), caller owns the reference count returned | |
DLLEXPORT void | clearProxyURL () |
clears the proxy URL | |
DLLEXPORT void | setSecure (bool is_secure) |
sets the SSL flag for use in the next connection | |
DLLEXPORT bool | isSecure () const |
returns the SSL connection parameter flag | |
DLLEXPORT void | setProxySecure (bool is_secure) |
sets the SSL flag for use in the next connection to the proxy | |
DLLEXPORT bool | isProxySecure () const |
returns the SSL proxy connection parameter flag | |
DLLEXPORT void | setMaxRedirects (int max) |
sets the max_redirects option | |
DLLEXPORT int | getMaxRedirects () const |
returns the value of the max_redirects option | |
DLLEXPORT long | verifyPeerCertificate () |
returns the peer certificate verification code if an SSL connection is in progress | |
DLLEXPORT const char * | getSSLCipherName () |
returns the name of the SSL Cipher for the currently-connected control connection, or 0 if there is none | |
DLLEXPORT const char * | getSSLCipherVersion () |
returns the version string of the SSL Cipher for the currently-connected control connection, or 0 if there is none | |
DLLEXPORT int | connect (ExceptionSink *xsink) |
opens a connection and returns a code giving the result | |
DLLEXPORT void | disconnect () |
disconnects from the remote server | |
DLLEXPORT QoreHashNode * | send (const char *meth, const char *path, const QoreHashNode *headers, const void *data, unsigned size, bool getbody, QoreHashNode *info, ExceptionSink *xsink) |
sends a message to the remote server and returns the entire response as a hash, caller owns the QoreHashNode reference returned | |
DLLEXPORT AbstractQoreNode * | get (const char *path, const QoreHashNode *headers, QoreHashNode *info, ExceptionSink *xsink) |
sends an HTTP "GET" method and returns the value of the message body returned, the caller owns the AbstractQoreNode reference returned | |
DLLEXPORT QoreHashNode * | head (const char *path, const QoreHashNode *headers, QoreHashNode *info, ExceptionSink *xsink) |
sends an HTTP "HEAD" method and returns the headers returned, the caller owns the QoreHashNode reference returned | |
DLLEXPORT AbstractQoreNode * | post (const char *path, const QoreHashNode *headers, const void *data, unsigned size, QoreHashNode *info, ExceptionSink *xsink) |
sends an HTTP "POST" message to the remote server and returns the message body of the response, caller owns the AbstractQoreNode reference returned | |
DLLEXPORT void | setDefaultHeaderValue (const char *header, const char *val) |
sets the value of a default header to send with every outgoing message | |
virtual DLLEXPORT void | deref (ExceptionSink *xsink) |
decrements the reference count and deletes the object when it reaches 0 | |
DLLEXPORT void | setConnectTimeout (int ms) |
sets the connect timeout in ms | |
DLLEXPORT int | getConnectTimeout () const |
returns the connect timeout in ms, negative numbers mean no timeout | |
DLLEXPORT int | setNoDelay (bool nodelay) |
sets the TCP_NODELAY flag on the object | |
DLLEXPORT bool | getNoDelay () const |
returns the value of the TCP_NODELAY flag on the object | |
DLLEXPORT bool | isConnected () const |
returns the connection status of the object | |
DLLLOCAL void | setEventQueue (Queue *cbq, ExceptionSink *xsink) |
sets the event queue (not part of the library's pubilc API), must be already referenced before call |
provides a way to communicate with HTTP servers using Qore data structures
thread-safe, uses QoreSocket for socket communication
DLLEXPORT void QoreHTTPClient::addProtocol | ( | const char * | prot, | |
int | port, | |||
bool | ssl = false | |||
) |
adds a protocol
useful for c++ derived classes
DLLEXPORT int QoreHTTPClient::connect | ( | ExceptionSink * | xsink | ) |
opens a connection and returns a code giving the result
virtual DLLEXPORT void QoreHTTPClient::deref | ( | ExceptionSink * | xsink | ) | [virtual] |
decrements the reference count and deletes the object when it reaches 0
xsink | if an error occurs, the Qore-language exception information will be added here |
Reimplemented from AbstractPrivateData.
DLLEXPORT AbstractQoreNode* QoreHTTPClient::get | ( | const char * | path, | |
const QoreHashNode * | headers, | |||
QoreHashNode * | info, | |||
ExceptionSink * | xsink | |||
) |
sends an HTTP "GET" method and returns the value of the message body returned, the caller owns the AbstractQoreNode reference returned
if you need to get all the headers received, then use QoreHTTPClient::send() instead
path | the path string to send in the header | |
headers | a hash of headers to add to the message | |
info | if not 0 then additional information about the HTTP communication will be added to the hash (key-value pairs), keys "headers", and optionally "redirect-#", "redirect-message-#" (where # is substituted with the redirect sequence number), and "chunked" (boolean, present only if the response was chunked) | |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT int QoreHTTPClient::getConnectTimeout | ( | ) | const |
returns the connect timeout in ms, negative numbers mean no timeout
DLLEXPORT const char* QoreHTTPClient::getHTTPVersion | ( | ) | const |
returns the http version as a string (either "1.0" or "1.1")
DLLEXPORT QoreStringNode* QoreHTTPClient::getProxyURL | ( | ) |
returns the proxy connection parameters as a URL (or 0 if there is none), caller owns the reference count returned
DLLEXPORT const char* QoreHTTPClient::getSSLCipherName | ( | ) |
returns the name of the SSL Cipher for the currently-connected control connection, or 0 if there is none
DLLEXPORT const char* QoreHTTPClient::getSSLCipherVersion | ( | ) |
returns the version string of the SSL Cipher for the currently-connected control connection, or 0 if there is none
DLLEXPORT QoreStringNode* QoreHTTPClient::getURL | ( | ) |
returns the connection parameters as a URL, caller owns the reference count returned
DLLEXPORT QoreHashNode* QoreHTTPClient::head | ( | const char * | path, | |
const QoreHashNode * | headers, | |||
QoreHashNode * | info, | |||
ExceptionSink * | xsink | |||
) |
sends an HTTP "HEAD" method and returns the headers returned, the caller owns the QoreHashNode reference returned
path | the path string to send in the header | |
headers | a hash of headers to add to the message | |
info | if not 0 then additional information about the HTTP communication will be added to the hash (key-value pairs), keys "headers", and optionally "redirect-#", "redirect-message-#" (where # is substituted with the redirect sequence number), and "chunked" (boolean, present only if the response was chunked) | |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT AbstractQoreNode* QoreHTTPClient::post | ( | const char * | path, | |
const QoreHashNode * | headers, | |||
const void * | data, | |||
unsigned | size, | |||
QoreHashNode * | info, | |||
ExceptionSink * | xsink | |||
) |
sends an HTTP "POST" message to the remote server and returns the message body of the response, caller owns the AbstractQoreNode reference returned
possible errors: method not recognized, redirection errors, socket communication errors, timeout errors
path | the path string to send in the header | |
headers | a hash of headers to add to the message | |
data | optional data to send (should not be 0 for a POST) | |
size | the byte length of the data to send (if this is 0 then no data is sent) | |
info | if not 0 then additional information about the HTTP communication will be added to the hash (key-value pairs), keys "headers", and optionally "redirect-#", "redirect-message-#" (where # is substituted with the redirect sequence number), and "chunked" (boolean, present only if the response was chunked) | |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT QoreHashNode* QoreHTTPClient::send | ( | const char * | meth, | |
const char * | path, | |||
const QoreHashNode * | headers, | |||
const void * | data, | |||
unsigned | size, | |||
bool | getbody, | |||
QoreHashNode * | info, | |||
ExceptionSink * | xsink | |||
) |
sends a message to the remote server and returns the entire response as a hash, caller owns the QoreHashNode reference returned
possible errors: method not recognized, redirection errors, socket communication errors, timeout errors
meth | the HTTP method name to send | |
path | the path string to send in the header | |
headers | a hash of headers to add to the message | |
data | optional data to send (may be 0) | |
size | the byte length of the data to send (if this is 0 then no data is sent) | |
getbody | if true then a body will be read even if there is no "Content-Length:" header | |
info | if not 0 then additional information about the HTTP communication will be added to the hash (key-value pairs), keys "headers", and optionally "redirect-#", "redirect-message-#" (where # is substituted with the redirect sequence number), and "chunked" (boolean, present only if the response was chunked) | |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT void QoreHTTPClient::setConnectTimeout | ( | int | ms | ) |
sets the connect timeout in ms
ms | connect timeout in ms |
DLLEXPORT void QoreHTTPClient::setDefaultHeaderValue | ( | const char * | header, | |
const char * | val | |||
) |
sets the value of a default header to send with every outgoing message
header | the name of the header to send | |
val | the string value to use in the HTTP header |
DLLEXPORT void QoreHTTPClient::setDefaultPath | ( | const char * | pth | ) |
sets the default path
useful for c++ derived classes
DLLEXPORT void QoreHTTPClient::setDefaultPort | ( | int | prt | ) |
sets the default port
useful for c++ derived classes
DLLEXPORT void QoreHTTPClient::setHTTP11 | ( | bool | h11 | ) |
sets or clears HTTP 1.1 protocol compliance
h11 | if true sets HTTP 1.1 protocol compliance, if false set 1.0 |
DLLEXPORT int QoreHTTPClient::setHTTPVersion | ( | const char * | version, | |
ExceptionSink * | xsink | |||
) |
sets the http version from a string
version | either "1.0" or "1.1" | |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT int QoreHTTPClient::setNoDelay | ( | bool | nodelay | ) |
sets the TCP_NODELAY flag on the object
This function will try to set the TCP_NODELAY flag immediately if the socket is connected, otherwise will it set a flag and the TCP_NODELAY option will be set on the next connection. If an error occurs setting TCP_NODELAY on a connected socket, then this function will return a non-zero value, and errno will be set
nodelay | 0=turn off TCP_NODELAY, non-zero=turn on TCP_NODELAY |
DLLEXPORT int QoreHTTPClient::setOptions | ( | const QoreHashNode * | opts, | |
ExceptionSink * | xsink | |||
) |
set options with a hash, returns -1 if an exception was thrown, 0 for OK
options are:
opts | the options to set for the object | |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT int QoreHTTPClient::setProxyURL | ( | const char * | proxy, | |
ExceptionSink * | xsink | |||
) |
sets the proxy URL
proxy | the URL to use for connection to the proxy | |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT int QoreHTTPClient::setURL | ( | const char * | url, | |
ExceptionSink * | xsink | |||
) |
sets the connection URL
url | the URL to use for connection parameters | |
xsink | if an error occurs, the Qore-language exception information will be added here |