spectrum2/3rdparty/cpprestsdk/include/cpprest/details/uri_parser.h
2015-11-19 15:19:14 +01:00

215 lines
7.7 KiB
C++

/***
* ==++==
*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* ==--==
* =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
*
* URI parsing implementation
*
* For the latest on this and related APIs, please see http://casablanca.codeplex.com.
*
* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
****/
#pragma once
#include <string>
namespace web { namespace details
{
namespace uri_parser
{
/// <summary>
/// Parses the uri, attempting to determine its validity.
///
/// This function accepts both uris ('http://msn.com') and uri relative-references ('path1/path2?query')
/// </summary>
bool validate(const utility::string_t &encoded_string);
/// <summary>
/// Parses the uri, setting each provided string to the value of that component. Components
/// that are not part of the provided text are set to the empty string. Component strings
/// DO NOT contain their beginning or ending delimiters.
///
/// This function accepts both uris ('http://msn.com') and uri relative-references ('path1/path2?query')
/// </summary>
bool parse(const utility::string_t &encoded_string, uri_components &components);
/// <summary>
/// Unreserved characters are those that are allowed in a URI but do not have a reserved purpose. They include:
/// - A-Z
/// - a-z
/// - 0-9
/// - '-' (hyphen)
/// - '.' (period)
/// - '_' (underscore)
/// - '~' (tilde)
/// </summary>
inline bool is_unreserved(int c)
{
return ::utility::details::is_alnum((char)c) || c == '-' || c == '.' || c == '_' || c == '~';
}
/// <summary>
/// General delimiters serve as the delimiters between different uri components.
/// General delimiters include:
/// - All of these :/?#[]@
/// </summary>
inline bool is_gen_delim(int c)
{
return c == ':' || c == '/' || c == '?' || c == '#' || c == '[' || c == ']' || c == '@';
}
/// <summary>
/// Subdelimiters are those characters that may have a defined meaning within component
/// of a uri for a particular scheme. They do not serve as delimiters in any case between
/// uri segments. sub_delimiters include:
/// - All of these !$&'()*+,;=
/// </summary>
inline bool is_sub_delim(int c)
{
switch (c)
{
case '!':
case '$':
case '&':
case '\'':
case '(':
case ')':
case '*':
case '+':
case ',':
case ';':
case '=':
return true;
default:
return false;
}
}
/// <summary>
/// Reserved characters includes the general delimiters and sub delimiters. Some characters
/// are neither reserved nor unreserved, and must be percent-encoded.
/// </summary>
inline bool is_reserved(int c)
{
return is_gen_delim(c) || is_sub_delim(c);
}
/// <summary>
/// Legal characters in the scheme portion include:
/// - Any alphanumeric character
/// - '+' (plus)
/// - '-' (hyphen)
/// - '.' (period)
///
/// Note that the scheme must BEGIN with an alpha character.
/// </summary>
inline bool is_scheme_character(int c)
{
return ::utility::details::is_alnum((char)c) || c == '+' || c == '-' || c == '.';
}
/// <summary>
/// Legal characters in the user information portion include:
/// - Any unreserved character
/// - The percent character ('%'), and thus any percent-endcoded octet
/// - The sub-delimiters
/// - ':' (colon)
/// </summary>
inline bool is_user_info_character(int c)
{
return is_unreserved(c) || is_sub_delim(c) || c == '%' || c == ':';
}
/// <summary>
/// Legal characters in the host portion include:
/// - Any unreserved character
/// - The percent character ('%'), and thus any percent-endcoded octet
/// - The sub-delimiters
/// - ':' (colon)
/// - '[' (open bracket)
/// - ']' (close bracket)
/// </summary>
inline bool is_host_character(int c)
{
return is_unreserved(c) || is_sub_delim(c) || c == '%' || c == ':' || c == '[' || c == ']';
}
/// <summary>
/// Legal characters in the authority portion include:
/// - Any unreserved character
/// - The percent character ('%'), and thus any percent-endcoded octet
/// - The sub-delimiters
/// - ':' (colon)
///
/// Note that we don't currently support:
/// - IPv6 addresses (requires '[]')
/// </summary>
inline bool is_authority_character(int c)
{
return is_unreserved(c) || is_sub_delim(c) || c == '%' || c == '@' || c == ':';
}
/// <summary>
/// Legal characters in the path portion include:
/// - Any unreserved character
/// - The percent character ('%'), and thus any percent-endcoded octet
/// - The sub-delimiters
/// - ':' (colon)
/// - '@' (ampersand)
/// </summary>
inline bool is_path_character(int c)
{
return is_unreserved(c) || is_sub_delim(c) || c == '%' || c == '/' || c == ':' || c == '@';
}
/// <summary>
/// Legal characters in the query portion include:
/// - Any path character
/// - '?' (question mark)
/// </summary>
inline bool is_query_character(int c)
{
return is_path_character(c) || c == '?';
}
/// <summary>
/// Legal characters in the fragment portion include:
/// - Any path character
/// - '?' (question mark)
/// </summary>
inline bool is_fragment_character(int c)
{
// this is intentional, they have the same set of legal characters
return is_query_character(c);
}
/// <summary>
/// Parses the uri, setting the given pointers to locations inside the given buffer.
/// 'encoded' is expected to point to an encoded zero-terminated string containing a uri
/// </summary>
bool inner_parse(
const utility::char_t *encoded,
const utility::char_t **scheme_begin, const utility::char_t **scheme_end,
const utility::char_t **uinfo_begin, const utility::char_t **uinfo_end,
const utility::char_t **host_begin, const utility::char_t **host_end,
_Out_ int *port,
const utility::char_t **path_begin, const utility::char_t **path_end,
const utility::char_t **query_begin, const utility::char_t **query_end,
const utility::char_t **fragment_begin, const utility::char_t **fragment_end);
}
}}