2005-04-02 12:57:46 +02:00
|
|
|
/*
|
|
|
|
|
2008-11-13 07:39:08 +01:00
|
|
|
Copyright (c) 2006, 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.
|
2005-04-02 12:57:46 +02:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
2008-11-13 07:39:08 +01:00
|
|
|
#ifndef TORRENT_UTF8_HPP_INCLUDED
|
|
|
|
#define TORRENT_UTF8_HPP_INCLUDED
|
2005-04-02 12:57:46 +02:00
|
|
|
|
2009-11-28 23:41:21 +01:00
|
|
|
#include "libtorrent/config.hpp"
|
|
|
|
|
2010-02-14 05:05:18 +01:00
|
|
|
// on windows we need these functions for
|
|
|
|
// convert_to_native and convert_from_native
|
|
|
|
#if TORRENT_USE_WSTRING || defined TORRENT_WINDOWS
|
2009-03-31 10:12:35 +02:00
|
|
|
|
2005-04-02 12:57:46 +02:00
|
|
|
#include <string>
|
2007-03-02 02:16:59 +01:00
|
|
|
#include <cwchar>
|
2009-10-20 04:49:56 +02:00
|
|
|
|
2008-11-13 07:39:08 +01:00
|
|
|
#include "libtorrent/ConvertUTF.h"
|
2005-04-02 12:57:46 +02:00
|
|
|
|
2008-11-13 07:39:08 +01:00
|
|
|
namespace libtorrent
|
2005-08-04 00:51:21 +02:00
|
|
|
{
|
2008-11-13 07:39:08 +01:00
|
|
|
inline int utf8_wchar(const std::string &utf8, std::wstring &wide)
|
2005-08-04 00:51:21 +02:00
|
|
|
{
|
2008-11-13 07:39:08 +01:00
|
|
|
// allocate space for worst-case
|
|
|
|
wide.resize(utf8.size());
|
2010-07-24 08:46:58 +02:00
|
|
|
wchar_t const* dst_start = wide.c_str();
|
|
|
|
char const* src_start = utf8.c_str();
|
2008-11-13 07:39:08 +01:00
|
|
|
ConversionResult ret;
|
|
|
|
if (sizeof(wchar_t) == sizeof(UTF32))
|
|
|
|
{
|
|
|
|
ret = ConvertUTF8toUTF32((const UTF8**)&src_start, (const UTF8*)src_start
|
|
|
|
+ utf8.size(), (UTF32**)&dst_start, (UTF32*)dst_start + wide.size()
|
|
|
|
, lenientConversion);
|
2010-07-24 08:46:58 +02:00
|
|
|
wide.resize(dst_start - wide.c_str());
|
2008-11-13 07:39:08 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
else if (sizeof(wchar_t) == sizeof(UTF16))
|
|
|
|
{
|
|
|
|
ret = ConvertUTF8toUTF16((const UTF8**)&src_start, (const UTF8*)src_start
|
|
|
|
+ utf8.size(), (UTF16**)&dst_start, (UTF16*)dst_start + wide.size()
|
|
|
|
, lenientConversion);
|
2010-07-24 08:46:58 +02:00
|
|
|
wide.resize(dst_start - wide.c_str());
|
2008-11-13 07:39:08 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return sourceIllegal;
|
|
|
|
}
|
2005-04-02 12:57:46 +02:00
|
|
|
}
|
2008-11-30 01:17:21 +01:00
|
|
|
|
2008-11-13 07:39:08 +01:00
|
|
|
inline int wchar_utf8(const std::wstring &wide, std::string &utf8)
|
2005-08-04 00:51:21 +02:00
|
|
|
{
|
2008-11-13 07:39:08 +01:00
|
|
|
// allocate space for worst-case
|
|
|
|
utf8.resize(wide.size() * 6);
|
2010-07-24 08:46:58 +02:00
|
|
|
if (wide.empty()) return 0;
|
2008-11-13 07:39:08 +01:00
|
|
|
char* dst_start = &utf8[0];
|
2010-07-24 08:46:58 +02:00
|
|
|
wchar_t const* src_start = wide.c_str();
|
2008-11-13 07:39:08 +01:00
|
|
|
ConversionResult ret;
|
|
|
|
if (sizeof(wchar_t) == sizeof(UTF32))
|
|
|
|
{
|
|
|
|
ret = ConvertUTF32toUTF8((const UTF32**)&src_start, (const UTF32*)src_start
|
|
|
|
+ wide.size(), (UTF8**)&dst_start, (UTF8*)dst_start + utf8.size()
|
|
|
|
, lenientConversion);
|
|
|
|
utf8.resize(dst_start - &utf8[0]);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
else if (sizeof(wchar_t) == sizeof(UTF16))
|
|
|
|
{
|
|
|
|
ret = ConvertUTF16toUTF8((const UTF16**)&src_start, (const UTF16*)src_start
|
|
|
|
+ wide.size(), (UTF8**)&dst_start, (UTF8*)dst_start + utf8.size()
|
|
|
|
, lenientConversion);
|
|
|
|
utf8.resize(dst_start - &utf8[0]);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return sourceIllegal;
|
|
|
|
}
|
2005-04-02 12:57:46 +02:00
|
|
|
}
|
|
|
|
}
|
2009-10-26 02:29:39 +01:00
|
|
|
#endif // !BOOST_NO_STD_WSTRING
|
2005-04-02 12:57:46 +02:00
|
|
|
|
|
|
|
#endif
|
2008-11-13 07:39:08 +01:00
|
|
|
|