mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Although `parseURL` used a regex to pull the authority out of the URL being parsed, it performed manual parsing of the hostname and port. This commit rolls the parsing of the username and password, if any, directly into the regex. The hostname can be a name, an IPv4 or an IPv6 address. Fixes #2751
98 lines
2.7 KiB
C++
98 lines
2.7 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of rippled: https://github.com/ripple/rippled
|
|
Copyright (c) 2012, 2013 Ripple Labs Inc.
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_BASICS_STRINGUTILITIES_H_INCLUDED
|
|
#define RIPPLE_BASICS_STRINGUTILITIES_H_INCLUDED
|
|
|
|
#include <ripple/basics/Blob.h>
|
|
#include <ripple/basics/strHex.h>
|
|
|
|
#include <boost/format.hpp>
|
|
#include <boost/optional.hpp>
|
|
#include <sstream>
|
|
#include <string>
|
|
|
|
namespace ripple {
|
|
inline static std::string sqlEscape (std::string const& strSrc)
|
|
{
|
|
static boost::format f ("X'%s'");
|
|
return str (boost::format (f) % strHex (strSrc));
|
|
}
|
|
|
|
inline static std::string sqlEscape (Blob const& vecSrc)
|
|
{
|
|
size_t size = vecSrc.size ();
|
|
|
|
if (size == 0)
|
|
return "X''";
|
|
|
|
std::string j (size * 2 + 3, 0);
|
|
|
|
unsigned char* oPtr = reinterpret_cast<unsigned char*> (&*j.begin ());
|
|
const unsigned char* iPtr = &vecSrc[0];
|
|
|
|
*oPtr++ = 'X';
|
|
*oPtr++ = '\'';
|
|
|
|
for (int i = size; i != 0; --i)
|
|
{
|
|
unsigned char c = *iPtr++;
|
|
*oPtr++ = charHex (c >> 4);
|
|
*oPtr++ = charHex (c & 15);
|
|
}
|
|
|
|
*oPtr++ = '\'';
|
|
return j;
|
|
}
|
|
|
|
uint64_t uintFromHex (std::string const& strSrc);
|
|
|
|
std::pair<Blob, bool> strUnHex (std::string const& strSrc);
|
|
|
|
struct parsedURL
|
|
{
|
|
explicit parsedURL() = default;
|
|
|
|
std::string scheme;
|
|
std::string username;
|
|
std::string password;
|
|
std::string domain;
|
|
boost::optional<std::uint16_t> port;
|
|
std::string path;
|
|
|
|
bool
|
|
operator == (parsedURL const& other) const
|
|
{
|
|
return scheme == other.scheme &&
|
|
domain == other.domain &&
|
|
port == other.port &&
|
|
path == other.path;
|
|
}
|
|
};
|
|
|
|
bool parseUrl (parsedURL& pUrl, std::string const& strUrl);
|
|
|
|
std::string trim_whitespace (std::string str);
|
|
|
|
boost::optional<std::uint64_t> to_uint64(std::string const& s);
|
|
|
|
} // ripple
|
|
|
|
#endif
|