2004-03-26 12:39:17 +01:00
|
|
|
/*
|
|
|
|
|
2014-02-23 20:12:25 +01:00
|
|
|
Copyright (c) 2003-2014, Arvid Norberg
|
2004-03-26 12:39:17 +01:00
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TORRENT_ESCAPE_STRING_HPP_INCLUDED
|
|
|
|
#define TORRENT_ESCAPE_STRING_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include <string>
|
2005-11-01 19:30:39 +01:00
|
|
|
#include "libtorrent/config.hpp"
|
2009-02-23 02:21:19 +01:00
|
|
|
#include "libtorrent/error_code.hpp"
|
2016-08-30 04:37:19 +02:00
|
|
|
#include "libtorrent/string_view.hpp"
|
2017-07-26 17:08:25 +02:00
|
|
|
#include "libtorrent/flags.hpp"
|
2004-03-26 12:39:17 +01:00
|
|
|
|
2017-04-12 19:00:57 +02:00
|
|
|
namespace libtorrent {
|
|
|
|
|
2017-07-26 17:08:25 +02:00
|
|
|
// hidden
|
|
|
|
struct encode_string_flags_tag;
|
|
|
|
using encode_string_flags_t = flags::bitfield_flag<std::uint8_t, encode_string_flags_tag>;
|
|
|
|
|
2015-06-17 05:39:36 +02:00
|
|
|
namespace string
|
|
|
|
{
|
2017-07-26 17:08:25 +02:00
|
|
|
// use lower case alphabet used with i2p
|
2017-07-30 18:13:22 +02:00
|
|
|
constexpr encode_string_flags_t lowercase = 0_bit;
|
2017-07-26 17:08:25 +02:00
|
|
|
// don't insert padding
|
2017-07-30 18:13:22 +02:00
|
|
|
constexpr encode_string_flags_t no_padding = 1_bit;
|
2017-07-26 17:08:25 +02:00
|
|
|
// shortcut used for addresses as sha256 hashes
|
|
|
|
constexpr encode_string_flags_t i2p = lowercase | no_padding;
|
2015-06-17 05:39:36 +02:00
|
|
|
}
|
2016-08-13 13:04:53 +02:00
|
|
|
|
2017-03-31 04:55:54 +02:00
|
|
|
TORRENT_EXTRA_EXPORT std::string unescape_string(string_view s, error_code& ec);
|
2009-06-19 20:18:49 +02:00
|
|
|
// replaces all disallowed URL characters by their %-encoding
|
2016-08-30 04:37:19 +02:00
|
|
|
TORRENT_EXTRA_EXPORT std::string escape_string(string_view str);
|
2009-06-19 20:18:49 +02:00
|
|
|
// same as escape_string but does not encode '/'
|
2016-08-30 04:37:19 +02:00
|
|
|
TORRENT_EXTRA_EXPORT std::string escape_path(string_view str);
|
2009-06-19 20:18:49 +02:00
|
|
|
// if the url does not appear to be encoded, and it contains illegal url characters
|
|
|
|
// it will be encoded
|
2012-03-19 00:31:04 +01:00
|
|
|
TORRENT_EXTRA_EXPORT std::string maybe_url_encode(std::string const& url);
|
2007-12-02 19:34:37 +01:00
|
|
|
|
2017-03-31 04:55:54 +02:00
|
|
|
TORRENT_EXTRA_EXPORT string_view trim(string_view);
|
|
|
|
TORRENT_EXTRA_EXPORT string_view::size_type find(string_view haystack, string_view needle, string_view::size_type pos);
|
|
|
|
|
2017-03-23 23:19:40 +01:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
|
|
|
// deprecated in 1.2
|
2014-07-06 21:18:00 +02:00
|
|
|
// convert a file://-URL to a proper path
|
|
|
|
TORRENT_EXTRA_EXPORT std::string resolve_file_url(std::string const& url);
|
2017-03-23 23:19:40 +01:00
|
|
|
#endif
|
2014-07-06 21:18:00 +02:00
|
|
|
|
2016-06-20 17:32:06 +02:00
|
|
|
// returns true if the given string (not 0-terminated) contains
|
2014-01-26 02:17:58 +01:00
|
|
|
// characters that would need to be escaped if used in a URL
|
2012-03-19 00:31:04 +01:00
|
|
|
TORRENT_EXTRA_EXPORT bool need_encoding(char const* str, int len);
|
2009-09-05 03:08:56 +02:00
|
|
|
|
2007-12-02 19:34:37 +01:00
|
|
|
// encodes a string using the base64 scheme
|
2012-03-19 00:31:04 +01:00
|
|
|
TORRENT_EXTRA_EXPORT std::string base64encode(std::string const& s);
|
2017-03-31 03:04:48 +02:00
|
|
|
#if TORRENT_USE_I2P
|
2007-12-02 19:34:37 +01:00
|
|
|
// encodes a string using the base32 scheme
|
2017-07-26 17:08:25 +02:00
|
|
|
TORRENT_EXTRA_EXPORT std::string base32encode(string_view s, encode_string_flags_t flags = {});
|
2017-03-31 03:04:48 +02:00
|
|
|
#endif
|
2017-03-31 04:55:54 +02:00
|
|
|
TORRENT_EXTRA_EXPORT std::string base32decode(string_view s);
|
2007-12-02 19:34:37 +01:00
|
|
|
|
2017-03-31 04:55:54 +02:00
|
|
|
TORRENT_EXTRA_EXPORT string_view url_has_argument(
|
|
|
|
string_view url, std::string argument, std::string::size_type* out_pos = 0);
|
2008-05-19 09:36:04 +02:00
|
|
|
|
2009-10-30 04:42:29 +01:00
|
|
|
// replaces \ with /
|
2012-03-19 00:31:04 +01:00
|
|
|
TORRENT_EXTRA_EXPORT void convert_path_to_posix(std::string& path);
|
2014-07-06 21:18:00 +02:00
|
|
|
#ifdef TORRENT_WINDOWS
|
|
|
|
TORRENT_EXTRA_EXPORT void convert_path_to_windows(std::string& path);
|
|
|
|
#endif
|
2009-10-30 04:42:29 +01:00
|
|
|
|
2015-04-21 02:23:00 +02:00
|
|
|
TORRENT_EXTRA_EXPORT std::string read_until(char const*& str, char delim
|
|
|
|
, char const* end);
|
2013-11-19 18:57:16 +01:00
|
|
|
|
2017-07-01 19:12:55 +02:00
|
|
|
#if defined TORRENT_WINDOWS
|
2012-03-19 00:31:04 +01:00
|
|
|
TORRENT_EXTRA_EXPORT std::wstring convert_to_wstring(std::string const& s);
|
|
|
|
TORRENT_EXTRA_EXPORT std::string convert_from_wstring(std::wstring const& s);
|
2009-03-01 01:02:33 +01:00
|
|
|
#endif
|
2016-09-22 04:59:43 +02:00
|
|
|
|
2013-01-21 19:54:45 +01:00
|
|
|
#if TORRENT_USE_ICONV || TORRENT_USE_LOCALE || defined TORRENT_WINDOWS
|
2012-03-19 00:31:04 +01:00
|
|
|
TORRENT_EXTRA_EXPORT std::string convert_to_native(std::string const& s);
|
|
|
|
TORRENT_EXTRA_EXPORT std::string convert_from_native(std::string const& s);
|
2009-06-22 04:19:11 +02:00
|
|
|
#else
|
2013-07-21 23:23:21 +02:00
|
|
|
// internal
|
2009-06-22 04:19:11 +02:00
|
|
|
inline std::string const& convert_to_native(std::string const& s) { return s; }
|
2013-07-21 23:23:21 +02:00
|
|
|
// internal
|
2009-10-26 02:29:39 +01:00
|
|
|
inline std::string const& convert_from_native(std::string const& s) { return s; }
|
2016-09-22 04:59:43 +02:00
|
|
|
#endif
|
2004-03-26 12:39:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TORRENT_ESCAPE_STRING_HPP_INCLUDED
|