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"
|
2004-03-26 12:39:17 +01:00
|
|
|
|
|
|
|
namespace libtorrent
|
|
|
|
{
|
2015-06-17 05:39:36 +02:00
|
|
|
namespace string
|
|
|
|
{
|
|
|
|
enum flags_t
|
|
|
|
{
|
|
|
|
// use lower case alphabet used with i2p
|
|
|
|
lowercase = 0x1,
|
|
|
|
// don't insert padding
|
|
|
|
no_padding = 0x2,
|
|
|
|
// shortcut used for addresses as sha256 hashes
|
|
|
|
i2p = lowercase | no_padding
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2012-03-19 00:31:04 +01:00
|
|
|
TORRENT_EXTRA_EXPORT std::string unescape_string(std::string const& s, error_code& ec);
|
2009-06-19 20:18:49 +02:00
|
|
|
// replaces all disallowed URL characters by their %-encoding
|
2012-03-19 00:31:04 +01:00
|
|
|
TORRENT_EXTRA_EXPORT std::string escape_string(const char* str, int len);
|
2009-06-19 20:18:49 +02:00
|
|
|
// same as escape_string but does not encode '/'
|
2012-03-19 00:31:04 +01:00
|
|
|
TORRENT_EXTRA_EXPORT std::string escape_path(const char* str, int len);
|
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
|
|
|
|
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);
|
|
|
|
|
2014-01-26 02:17:58 +01:00
|
|
|
// returns true if the given string (not null terminated) contains
|
|
|
|
// 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);
|
2007-12-02 19:34:37 +01:00
|
|
|
// encodes a string using the base32 scheme
|
2015-06-17 05:39:36 +02:00
|
|
|
TORRENT_EXTRA_EXPORT std::string base32encode(std::string const& s, int flags=0);
|
2012-03-19 00:31:04 +01:00
|
|
|
TORRENT_EXTRA_EXPORT std::string base32decode(std::string const& s);
|
2007-12-02 19:34:37 +01:00
|
|
|
|
2012-03-19 00:31:04 +01:00
|
|
|
TORRENT_EXTRA_EXPORT std::string url_has_argument(
|
2010-03-06 04:57:48 +01:00
|
|
|
std::string const& 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
|
|
|
|
2010-02-15 06:49:10 +01:00
|
|
|
#if defined TORRENT_WINDOWS && TORRENT_USE_WSTRING
|
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
|
|
|
|
|
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; }
|
2009-03-01 01:02:33 +01:00
|
|
|
#endif
|
2004-03-26 12:39:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TORRENT_ESCAPE_STRING_HPP_INCLUDED
|
2009-04-11 22:45:14 +02:00
|
|
|
|