Qore Programming Language
0.8.11.1
|
helps with parsing URLs and provides access to URL components through Qore data structures More...
#include <QoreURL.h>
Public Member Functions | |
DLLEXPORT | QoreURL () |
creates an empty structure More... | |
DLLEXPORT | QoreURL (const char *url) |
parses the URL string passed More... | |
DLLEXPORT | QoreURL (const QoreString *url) |
parses the URL string passed More... | |
DLLEXPORT | QoreURL (const char *url, bool keep_brackets) |
parses the URL string passed More... | |
DLLEXPORT | QoreURL (const QoreString *url, bool keep_brackets) |
parses the URL string passed More... | |
DLLEXPORT | ~QoreURL () |
frees all memory and destroys the structure | |
DLLEXPORT QoreHashNode * | getHash () |
returns a hash of the parameters parsed, destructive: zeros out all elements, caller owns the reference count returned More... | |
DLLEXPORT const QoreString * | getHost () const |
returns the hostname of the URL More... | |
DLLEXPORT const QoreString * | getPassword () const |
returns the password in the URL or 0 if none given More... | |
DLLEXPORT const QoreString * | getPath () const |
returns the path component of the URL or 0 if none given More... | |
DLLEXPORT int | getPort () const |
returns the port number given in the URL or 0 if none present More... | |
DLLEXPORT const QoreString * | getProtocol () const |
returns the protocol component of the URL or 0 if none given | |
DLLEXPORT const QoreString * | getUserName () const |
returns the user name in the URL or 0 if none given More... | |
DLLEXPORT bool | isValid () const |
returns true if the URL string parsed is valid More... | |
DLLEXPORT int | parse (const char *url) |
parses the URL string passed More... | |
DLLEXPORT int | parse (const QoreString *url) |
parses the URL string passed More... | |
DLLEXPORT int | parse (const char *url, bool keep_brackets) |
parses the URL string passed More... | |
DLLEXPORT int | parse (const QoreString *url, bool keep_brackets) |
parses the URL string passed More... | |
DLLEXPORT char * | take_host () |
returns a pointer to the hostname in the URL (0 if none present), caller owns the memory returned More... | |
DLLEXPORT char * | take_password () |
returns a pointer to the password in the URL (0 if none present), caller owns the memory returned More... | |
DLLEXPORT char * | take_path () |
returns a pointer to the path (0 if none present), caller owns the memory returned More... | |
DLLEXPORT char * | take_username () |
returns a pointer to the username in the URL (0 if none present), caller owns the memory returned More... | |
helps with parsing URLs and provides access to URL components through Qore data structures
DLLEXPORT QoreURL::QoreURL | ( | ) |
creates an empty structure
DLLEXPORT QoreURL::QoreURL | ( | const char * | url | ) |
parses the URL string passed
you can check if the URL was valid by calling QoreURL::isValid() after this call
url | the URL string to parse |
DLLEXPORT QoreURL::QoreURL | ( | const QoreString * | url | ) |
parses the URL string passed
you can check if the URL was valid by calling QoreURL::isValid() after this call
url | the URL string to parse |
DLLEXPORT QoreURL::QoreURL | ( | const char * | url, |
bool | keep_brackets | ||
) |
parses the URL string passed
you can check if the URL was valid by calling QoreURL::isValid() after this call
url | the URL string to parse |
keep_brackets | if this argument is true then if the hostname or address is enclosed in square brackets, then the brackets will be included in the "host" key output as well |
DLLEXPORT QoreURL::QoreURL | ( | const QoreString * | url, |
bool | keep_brackets | ||
) |
parses the URL string passed
you can check if the URL was valid by calling QoreURL::isValid() after this call
url | the URL string to parse |
keep_brackets | if this argument is true then if the hostname or address is enclosed in square brackets, then the brackets will be included in the "host" key output as well |
DLLEXPORT QoreHashNode* QoreURL::getHash | ( | ) |
returns a hash of the parameters parsed, destructive: zeros out all elements, caller owns the reference count returned
hash keys are:
each key is either a QoreStringNode or 0 except for port which is a QoreBigIntNode
DLLEXPORT const QoreString* QoreURL::getHost | ( | ) | const |
returns the hostname of the URL
DLLEXPORT const QoreString* QoreURL::getPassword | ( | ) | const |
returns the password in the URL or 0 if none given
DLLEXPORT const QoreString* QoreURL::getPath | ( | ) | const |
returns the path component of the URL or 0 if none given
DLLEXPORT int QoreURL::getPort | ( | ) | const |
returns the port number given in the URL or 0 if none present
DLLEXPORT const QoreString* QoreURL::getUserName | ( | ) | const |
returns the user name in the URL or 0 if none given
DLLEXPORT bool QoreURL::isValid | ( | ) | const |
returns true if the URL string parsed is valid
DLLEXPORT int QoreURL::parse | ( | const char * | url | ) |
parses the URL string passed
If a url was already parsed previously, all memory is freed before parsing the new string. You can check if the URL was valid by calling QoreURL::isValid() after this call
url | the URL string to parse |
DLLEXPORT int QoreURL::parse | ( | const QoreString * | url | ) |
parses the URL string passed
If a url was already parsed previously, all memory is freed before parsing the new string. You can check if the URL was valid by calling QoreURL::isValid() after this call
url | the URL string to parse |
DLLEXPORT int QoreURL::parse | ( | const char * | url, |
bool | keep_brackets | ||
) |
parses the URL string passed
If a url was already parsed previously, all memory is freed before parsing the new string. You can check if the URL was valid by calling QoreURL::isValid() after this call
url | the URL string to parse |
keep_brackets | if this argument is true then if the hostname or address is enclosed in square brackets, then the brackets will be included in the "host" key output as well |
DLLEXPORT int QoreURL::parse | ( | const QoreString * | url, |
bool | keep_brackets | ||
) |
parses the URL string passed
If a url was already parsed previously, all memory is freed before parsing the new string. You can check if the URL was valid by calling QoreURL::isValid() after this call
url | the URL string to parse |
keep_brackets | if this argument is true then if the hostname or address is enclosed in square brackets, then the brackets will be included in the "host" key output as well |
DLLEXPORT char* QoreURL::take_host | ( | ) |
returns a pointer to the hostname in the URL (0 if none present), caller owns the memory returned
if this function returns a non-zero pointer, the memory must be manually freed by the caller
DLLEXPORT char* QoreURL::take_password | ( | ) |
returns a pointer to the password in the URL (0 if none present), caller owns the memory returned
if this function returns a non-zero pointer, the memory must be manually freed by the caller
DLLEXPORT char* QoreURL::take_path | ( | ) |
returns a pointer to the path (0 if none present), caller owns the memory returned
if this function returns a non-zero pointer, the memory must be manually freed by the caller
DLLEXPORT char* QoreURL::take_username | ( | ) |
returns a pointer to the username in the URL (0 if none present), caller owns the memory returned
if this function returns a non-zero pointer, the memory must be manually freed by the caller