From eed4afa6005e7359c0807d35f0e2fc80af544c0c Mon Sep 17 00:00:00 2001 From: Richard Walters Date: Mon, 2 Jul 2018 23:15:11 -0700 Subject: Add reference resolution and attempt to fix path normalization Path normalization is hideously broken for now. --- include/Uri/Uri.hpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'include/Uri') diff --git a/include/Uri/Uri.hpp b/include/Uri/Uri.hpp index 43e4ac3..1288a52 100644 --- a/include/Uri/Uri.hpp +++ b/include/Uri/Uri.hpp @@ -195,6 +195,23 @@ namespace Uri { */ void NormalizePath(); + /** + * This method resolves the given relative reference, based on the given + * base URI, returning the resolved target URI. + * + * @param[in] relativeReference + * This describes how to get to the target starting at the base. + * + * @return + * The resolved target URI is returned. + * + * @note + * It only makes sense to call this method on an absolute URI + * (in which I mean, the base URI should be absolute, + * as in IsRelativeReference() should return false). + */ + Uri Resolve(const Uri& relativeReference) const; + // Private properties private: /** -- cgit v1.2.3