//------------------------------------------------------------------------------ /* 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 #include #include #include #include #include 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 (&*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 strUnHex (std::string const& strSrc); struct parsedURL { explicit parsedURL() = default; std::string scheme; std::string username; std::string password; std::string domain; boost::optional 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 to_uint64(std::string const& s); } // ripple #endif