diff options
author | Max Kellermann <max@duempel.org> | 2014-11-30 00:59:43 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-12-01 21:56:48 +0100 |
commit | bc00c38f9db4ea182b73461434adaede91298a59 (patch) | |
tree | c43ac6eae41e1190b7c41ec0ba0af61eac97e247 /src/lib/icu/Converter.cxx | |
parent | 4658bd8208613bad3c987ee5083e1b6c5481f037 (diff) | |
download | mpd-bc00c38f9db4ea182b73461434adaede91298a59.tar.gz mpd-bc00c38f9db4ea182b73461434adaede91298a59.tar.xz mpd-bc00c38f9db4ea182b73461434adaede91298a59.zip |
lib/icu/Converter: add ICU-based backend
Diffstat (limited to 'src/lib/icu/Converter.cxx')
-rw-r--r-- | src/lib/icu/Converter.cxx | 92 |
1 files changed, 90 insertions, 2 deletions
diff --git a/src/lib/icu/Converter.cxx b/src/lib/icu/Converter.cxx index 1c6874065..bb170a071 100644 --- a/src/lib/icu/Converter.cxx +++ b/src/lib/icu/Converter.cxx @@ -19,20 +19,48 @@ #include "config.h" #include "Converter.hxx" +#include "Error.hxx" #include "util/Error.hxx" -#include "util/Domain.hxx" +#include "util/Macros.hxx" +#include "util/WritableBuffer.hxx" +#include "util/ConstBuffer.hxx" #include <string.h> -#ifdef HAVE_GLIB +#ifdef HAVE_ICU +#include "Util.hxx" +#include <unicode/ucnv.h> +#elif defined(HAVE_GLIB) +#include "util/Domain.hxx" static constexpr Domain g_iconv_domain("g_iconv"); #endif +#ifdef HAVE_ICU + +IcuConverter::~IcuConverter() +{ + ucnv_close(converter); +} + +#endif + #ifdef HAVE_ICU_CONVERTER IcuConverter * IcuConverter::Create(const char *charset, Error &error) { +#ifdef HAVE_ICU + UErrorCode code = U_ZERO_ERROR; + UConverter *converter = ucnv_open(charset, &code); + if (converter == nullptr) { + error.Format(icu_domain, int(code), + "Failed to initialize charset '%s': %s", + charset, u_errorName(code)); + return nullptr; + } + + return new IcuConverter(converter); +#elif defined(HAVE_GLIB) GIConv to = g_iconv_open("utf-8", charset); GIConv from = g_iconv_open(charset, "utf-8"); if (to == (GIConv)-1 || from == (GIConv)-1) { @@ -46,8 +74,12 @@ IcuConverter::Create(const char *charset, Error &error) } return new IcuConverter(to, from); +#endif } +#ifdef HAVE_ICU +#elif defined(HAVE_GLIB) + static std::string DoConvert(GIConv conv, const char *src) { @@ -66,16 +98,72 @@ DoConvert(GIConv conv, const char *src) return std::string(buffer, sizeof(buffer) - out_left); } +#endif + std::string IcuConverter::ToUTF8(const char *s) const { +#ifdef HAVE_ICU + const ScopeLock protect(mutex); + + ucnv_resetToUnicode(converter); + + // TODO: dynamic buffer? + UChar buffer[4096], *target = buffer; + const char *source = s; + + UErrorCode code = U_ZERO_ERROR; + + ucnv_toUnicode(converter, &target, buffer + ARRAY_SIZE(buffer), + &source, source + strlen(source), + nullptr, true, &code); + if (code != U_ZERO_ERROR) + return std::string(); + + const size_t target_length = target - buffer; + const auto u = UCharToUTF8({buffer, target_length}); + if (u.IsNull()) + return std::string(); + + std::string result(u.data, u.size); + delete[] u.data; + return result; + +#elif defined(HAVE_GLIB) return DoConvert(to_utf8, s); +#endif } std::string IcuConverter::FromUTF8(const char *s) const { +#ifdef HAVE_ICU + const ScopeLock protect(mutex); + + const auto u = UCharFromUTF8(s); + if (u.IsNull()) + return std::string(); + + ucnv_resetFromUnicode(converter); + + // TODO: dynamic buffer? + char buffer[4096], *target = buffer; + const UChar *source = u.data; + UErrorCode code = U_ZERO_ERROR; + + ucnv_fromUnicode(converter, &target, buffer + ARRAY_SIZE(buffer), + &source, u.end(), + nullptr, true, &code); + delete[] u.data; + + if (code != U_ZERO_ERROR) + return std::string(); + + return std::string(buffer, target); + +#elif defined(HAVE_GLIB) return DoConvert(from_utf8, s); +#endif } #endif |