From d95bcc094d5102cbc1b625b69bf6378e3fb730a8 Mon Sep 17 00:00:00 2001 From: Richard Walters Date: Wed, 4 Jul 2018 19:05:06 -0700 Subject: Add capability of setting other elements * userinfo * port (hasPort) * path * fragment Also include these element when generating string from URI. --- include/Uri/Uri.hpp | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) (limited to 'include/Uri') diff --git a/include/Uri/Uri.hpp b/include/Uri/Uri.hpp index 0b4a22c..7074990 100644 --- a/include/Uri/Uri.hpp +++ b/include/Uri/Uri.hpp @@ -220,6 +220,14 @@ namespace Uri { */ void SetScheme(const std::string& scheme); + /** + * This method sets the userinfo element of the URI. + * + * @param[in] userinfo + * This is the userinfo to set for the URI. + */ + void SetUserInfo(const std::string& userinfo); + /** * This method sets the host element of the URI. * @@ -228,6 +236,36 @@ namespace Uri { */ void SetHost(const std::string& host); + /** + * This method sets the port element of the URI. + * + * @param[in] port + * This is the port to set for the URI. + */ + void SetPort(uint16_t port); + + /** + * This method removes the port element from the URI. + */ + void ClearPort(); + + /** + * This method sets the path element of the URI. + * + * @param[in] path + * This is the sequence of segments to use to form the path + * to set for the URI. + * + * An empty string segment can be used at the front to + * indicate an absolute path (as opposed to a relative one). + * + * An empty string segment can be used at the back to + * make sure the path ends in a delimiter (forward slash) + * when printed out or when combined with another URI + * via the Resolve() method. + */ + void SetPath(const std::vector< std::string >& path); + /** * This method sets the query element of the URI. * @@ -236,6 +274,14 @@ namespace Uri { */ void SetQuery(const std::string& query); + /** + * This method sets the fragment element of the URI. + * + * @param[in] fragment + * This is the fragment to set for the URI. + */ + void SetFragment(const std::string& fragment); + /** * This method constructs and returns the string * rendering of the URI, according to the rules -- cgit v1.2.3