premiere-libtorrent/src/utf8.cpp

304 lines
8.8 KiB
C++

/*
Copyright (c) 2012-2018, 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.
*/
#include "libtorrent/config.hpp"
#include <iterator>
#include "libtorrent/utf8.hpp"
#include "libtorrent/assert.hpp"
#include "libtorrent/error_code.hpp"
#include "libtorrent/ConvertUTF.h"
#include "libtorrent/aux_/throw.hpp"
#include "libtorrent/aux_/numeric_cast.hpp"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunused-member-function"
#endif
namespace libtorrent {
namespace {
// ==== utf-8 -> wide ===
template<int width>
struct convert_to_wide
{
static utf8_errors::error_code_enum convert(UTF8 const** src_start
, UTF8 const* src_end
, std::wstring& wide)
{
TORRENT_UNUSED(src_start);
TORRENT_UNUSED(src_end);
TORRENT_UNUSED(wide);
return utf8_errors::error_code_enum::source_illegal;
}
};
// ==== utf-8 -> utf-32 ===
template<>
struct convert_to_wide<4>
{
static utf8_errors::error_code_enum convert(char const** src_start
, char const* src_end
, std::wstring& wide)
{
wchar_t* dst_start = &wide[0];
int ret = ConvertUTF8toUTF32(
reinterpret_cast<UTF8 const**>(src_start)
, reinterpret_cast<UTF8 const*>(src_end)
, reinterpret_cast<UTF32**>(&dst_start)
, reinterpret_cast<UTF32*>(dst_start + wide.size())
, lenientConversion);
if (ret == sourceIllegal)
{
// assume Latin-1
wide.clear();
std::copy(reinterpret_cast<std::uint8_t const*>(*src_start)
,reinterpret_cast<std::uint8_t const*>(src_end)
, std::back_inserter(wide));
return static_cast<utf8_errors::error_code_enum>(ret);
}
wide.resize(aux::numeric_cast<std::size_t>(dst_start - wide.c_str()));
return static_cast<utf8_errors::error_code_enum>(ret);
}
};
// ==== utf-8 -> utf-16 ===
template<>
struct convert_to_wide<2>
{
static utf8_errors::error_code_enum convert(char const** src_start
, char const* src_end
, std::wstring& wide)
{
wchar_t* dst_start = &wide[0];
int ret = ConvertUTF8toUTF16(
reinterpret_cast<UTF8 const**>(src_start)
, reinterpret_cast<UTF8 const*>(src_end)
, reinterpret_cast<UTF16**>(&dst_start)
, reinterpret_cast<UTF16*>(dst_start + wide.size())
, lenientConversion);
if (ret == sourceIllegal)
{
// assume Latin-1
wide.clear();
std::copy(reinterpret_cast<std::uint8_t const*>(*src_start)
, reinterpret_cast<std::uint8_t const*>(src_end)
, std::back_inserter(wide));
return static_cast<utf8_errors::error_code_enum>(ret);
}
wide.resize(aux::numeric_cast<std::size_t>(dst_start - wide.c_str()));
return static_cast<utf8_errors::error_code_enum>(ret);
}
};
// ==== wide -> utf-8 ===
template<int width>
struct convert_from_wide
{
static utf8_errors::error_code_enum convert(wchar_t const** src_start
, wchar_t const* src_end
, std::string& utf8)
{
TORRENT_UNUSED(src_start);
TORRENT_UNUSED(src_end);
TORRENT_UNUSED(utf8);
return utf8_errors::error_code_enum::source_illegal;
}
};
// ==== utf-32 -> utf-8 ===
template<>
struct convert_from_wide<4>
{
static utf8_errors::error_code_enum convert(wchar_t const** src_start
, wchar_t const* src_end
, std::string& utf8)
{
char* dst_start = &utf8[0];
int ret = ConvertUTF32toUTF8(
reinterpret_cast<UTF32 const**>(src_start)
, reinterpret_cast<UTF32 const*>(src_end)
, reinterpret_cast<UTF8**>(&dst_start)
, reinterpret_cast<UTF8*>(dst_start + utf8.size())
, lenientConversion);
utf8.resize(aux::numeric_cast<std::size_t>(dst_start - &utf8[0]));
return static_cast<utf8_errors::error_code_enum>(ret);
}
};
// ==== utf-16 -> utf-8 ===
template<>
struct convert_from_wide<2>
{
static utf8_errors::error_code_enum convert(wchar_t const** src_start
, wchar_t const* src_end
, std::string& utf8)
{
char* dst_start = &utf8[0];
int ret = ConvertUTF16toUTF8(
reinterpret_cast<UTF16 const**>(src_start)
, reinterpret_cast<UTF16 const*>(src_end)
, reinterpret_cast<UTF8**>(&dst_start)
, reinterpret_cast<UTF8*>(dst_start + utf8.size())
, lenientConversion);
utf8.resize(aux::numeric_cast<std::size_t>(dst_start - &utf8[0]));
return static_cast<utf8_errors::error_code_enum>(ret);
}
};
struct utf8_error_category final : boost::system::error_category
{
const char* name() const BOOST_SYSTEM_NOEXCEPT override
{
return "UTF error";
}
std::string message(int ev) const override
{
static char const* error_messages[] = {
"ok",
"source exhausted",
"target exhausted",
"source illegal"
};
TORRENT_ASSERT(ev >= 0);
TORRENT_ASSERT(ev < int(sizeof(error_messages)/sizeof(error_messages[0])));
return error_messages[ev];
}
boost::system::error_condition default_error_condition(
int ev) const BOOST_SYSTEM_NOEXCEPT override
{ return {ev, *this}; }
};
} // anonymous namespace
namespace utf8_errors
{
boost::system::error_code make_error_code(utf8_errors::error_code_enum e)
{
return {e, utf8_category()};
}
} // utf_errors namespace
boost::system::error_category const& utf8_category()
{
static utf8_error_category cat;
return cat;
}
std::wstring utf8_wchar(string_view utf8, error_code& ec)
{
// allocate space for worst-case
std::wstring wide;
wide.resize(utf8.size());
char const* src_start = utf8.data();
utf8_errors::error_code_enum const ret = convert_to_wide<sizeof(wchar_t)>::convert(
&src_start, src_start + utf8.size(), wide);
if (ret != utf8_errors::error_code_enum::conversion_ok)
ec = make_error_code(ret);
return wide;
}
std::wstring utf8_wchar(string_view wide)
{
error_code ec;
std::wstring ret = utf8_wchar(wide, ec);
if (ec) aux::throw_ex<system_error>(ec);
return ret;
}
std::string wchar_utf8(wstring_view wide, error_code& ec)
{
// allocate space for worst-case
std::string utf8;
utf8.resize(wide.size() * 6);
if (wide.empty()) return {};
wchar_t const* src_start = wide.data();
utf8_errors::error_code_enum const ret = convert_from_wide<sizeof(wchar_t)>::convert(
&src_start, src_start + wide.size(), utf8);
if (ret != utf8_errors::error_code_enum::conversion_ok)
ec = make_error_code(ret);
return utf8;
}
std::string wchar_utf8(wstring_view wide)
{
error_code ec;
std::string ret = wchar_utf8(wide, ec);
if (ec) aux::throw_ex<system_error>(ec);
return ret;
}
// returns the unicode codepoint and the number of bytes of the utf8 sequence
// that was parsed. The codepoint is -1 if it's invalid
std::pair<std::int32_t, int> parse_utf8_codepoint(string_view str)
{
int const sequence_len = trailingBytesForUTF8[static_cast<std::uint8_t>(str[0])] + 1;
if (sequence_len > int(str.size())) return std::make_pair(-1, static_cast<int>(str.size()));
if (sequence_len > 4)
{
return std::make_pair(-1, sequence_len);
}
if (!isLegalUTF8(reinterpret_cast<UTF8 const*>(str.data()), sequence_len))
{
return std::make_pair(-1, sequence_len);
}
std::uint32_t ch = 0;
for (int i = 0; i < sequence_len; ++i)
{
ch <<= 6;
ch += static_cast<std::uint8_t>(str[static_cast<std::size_t>(i)]);
}
ch -= offsetsFromUTF8[sequence_len-1];
if (ch > 0x7fffffff)
{
return std::make_pair(-1, sequence_len);
}
return std::make_pair(static_cast<std::int32_t>(ch), sequence_len);
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif