2004-03-26 12:39:17 +01:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2003, Arvid Norberg
|
|
|
|
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>
|
2009-11-28 23:41:21 +01:00
|
|
|
#include <boost/limits.hpp>
|
2009-01-27 07:17:55 +01:00
|
|
|
#include <boost/array.hpp>
|
2005-11-01 19:30:39 +01:00
|
|
|
#include "libtorrent/config.hpp"
|
2009-01-27 07:17:55 +01:00
|
|
|
#include "libtorrent/size_type.hpp"
|
2009-02-23 02:21:19 +01:00
|
|
|
#include "libtorrent/error_code.hpp"
|
2004-03-26 12:39:17 +01:00
|
|
|
|
|
|
|
namespace libtorrent
|
|
|
|
{
|
2009-02-18 07:01:24 +01:00
|
|
|
boost::array<char, 3 + std::numeric_limits<size_type>::digits10> TORRENT_EXPORT to_string(size_type n);
|
2009-10-26 02:29:39 +01:00
|
|
|
bool TORRENT_EXPORT is_alpha(char c);
|
2009-02-18 07:01:24 +01:00
|
|
|
bool TORRENT_EXPORT is_digit(char c);
|
2009-06-23 03:53:47 +02:00
|
|
|
bool TORRENT_EXPORT is_print(char c);
|
|
|
|
bool TORRENT_EXPORT is_space(char c);
|
2009-04-11 22:45:14 +02:00
|
|
|
char TORRENT_EXPORT to_lower(char c);
|
|
|
|
|
2009-09-27 05:38:41 +02:00
|
|
|
int TORRENT_EXPORT split_string(char const** tags, int buf_size, char* in);
|
2009-04-11 22:45:14 +02:00
|
|
|
bool TORRENT_EXPORT string_begins_no_case(char const* s1, char const* s2);
|
2009-06-26 18:20:57 +02:00
|
|
|
bool TORRENT_EXPORT string_equal_no_case(char const* s1, char const* s2);
|
2009-01-27 07:17:55 +01:00
|
|
|
|
2009-02-23 02:21:19 +01:00
|
|
|
std::string TORRENT_EXPORT 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
|
2005-11-01 19:30:39 +01:00
|
|
|
std::string TORRENT_EXPORT escape_string(const char* str, int len);
|
2009-06-19 20:18:49 +02:00
|
|
|
// same as escape_string but does not encode '/'
|
2006-04-25 23:04:48 +02:00
|
|
|
std::string TORRENT_EXPORT 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
|
|
|
|
std::string TORRENT_EXPORT maybe_url_encode(std::string const& url);
|
2007-12-02 19:34:37 +01:00
|
|
|
|
2009-09-05 03:08:56 +02:00
|
|
|
bool TORRENT_EXPORT need_encoding(char const* str, int len);
|
|
|
|
|
2007-12-02 19:34:37 +01:00
|
|
|
// encodes a string using the base64 scheme
|
2007-12-02 20:10:45 +01:00
|
|
|
TORRENT_EXPORT std::string base64encode(std::string const& s);
|
2009-08-20 05:19:12 +02:00
|
|
|
TORRENT_EXPORT std::string base64decode(std::string const& s);
|
2007-12-02 19:34:37 +01:00
|
|
|
// encodes a string using the base32 scheme
|
2007-12-02 20:10:45 +01:00
|
|
|
TORRENT_EXPORT std::string base32encode(std::string const& s);
|
2007-12-03 07:03:16 +01:00
|
|
|
TORRENT_EXPORT std::string base32decode(std::string const& s);
|
2007-12-02 19:34:37 +01:00
|
|
|
|
2009-11-23 09:38:50 +01:00
|
|
|
TORRENT_EXPORT std::string url_has_argument(
|
2007-12-02 20:10:45 +01:00
|
|
|
std::string const& url, std::string argument);
|
2008-05-19 09:36:04 +02:00
|
|
|
|
2009-10-30 04:42:29 +01:00
|
|
|
// replaces \ with /
|
|
|
|
TORRENT_EXPORT void convert_path_to_posix(std::string& path);
|
|
|
|
|
2009-08-25 20:13:46 +02:00
|
|
|
TORRENT_EXPORT std::string read_until(char const*& str, char delim, char const* end);
|
2008-05-19 09:36:04 +02:00
|
|
|
TORRENT_EXPORT std::string to_hex(std::string const& s);
|
2009-05-13 03:02:06 +02:00
|
|
|
TORRENT_EXPORT bool is_hex(char const *in, int len);
|
2009-04-04 11:52:25 +02:00
|
|
|
TORRENT_EXPORT void to_hex(char const *in, int len, char* out);
|
|
|
|
TORRENT_EXPORT bool from_hex(char const *in, int len, char* out);
|
2009-03-01 01:02:33 +01:00
|
|
|
|
2009-10-26 02:29:39 +01:00
|
|
|
#if defined TORRENT_WINDOWS && defined UNICODE
|
2009-03-01 01:02:33 +01:00
|
|
|
TORRENT_EXPORT std::wstring convert_to_wstring(std::string const& s);
|
2009-10-26 02:29:39 +01:00
|
|
|
TORRENT_EXPORT std::string convert_from_wstring(std::wstring const& s);
|
2009-03-01 01:02:33 +01:00
|
|
|
#endif
|
|
|
|
|
2009-10-26 02:29:39 +01:00
|
|
|
#if defined TORRENT_WINDOWS || TORRENT_USE_ICONV
|
2009-03-01 01:02:33 +01:00
|
|
|
TORRENT_EXPORT std::string convert_to_native(std::string const& s);
|
2009-10-26 02:29:39 +01:00
|
|
|
TORRENT_EXPORT std::string convert_from_native(std::string const& s);
|
2009-06-22 04:19:11 +02:00
|
|
|
#else
|
|
|
|
inline std::string const& convert_to_native(std::string const& s) { return s; }
|
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
|
|
|
|