lib/icu/CaseFold: move low-level wrapper to FoldCase.cxx
This commit is contained in:
parent
aad5210820
commit
154fb4317f
@ -25,41 +25,25 @@
|
|||||||
#include "util/AllocatedString.hxx"
|
#include "util/AllocatedString.hxx"
|
||||||
|
|
||||||
#ifdef HAVE_ICU
|
#ifdef HAVE_ICU
|
||||||
|
#include "FoldCase.hxx"
|
||||||
#include "Util.hxx"
|
#include "Util.hxx"
|
||||||
#include "util/AllocatedArray.hxx"
|
#include "util/AllocatedArray.hxx"
|
||||||
#include "util/SpanCast.hxx"
|
#include "util/SpanCast.hxx"
|
||||||
|
|
||||||
#include <unicode/ucol.h>
|
|
||||||
#include <unicode/ustring.h>
|
|
||||||
#else
|
|
||||||
#include <algorithm>
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <memory>
|
|
||||||
|
|
||||||
#include <string.h>
|
|
||||||
|
|
||||||
AllocatedString
|
AllocatedString
|
||||||
IcuCaseFold(std::string_view src) noexcept
|
IcuCaseFold(std::string_view src) noexcept
|
||||||
try {
|
try {
|
||||||
#ifdef HAVE_ICU
|
#ifdef HAVE_ICU
|
||||||
const auto u = UCharFromUTF8(src);
|
auto u = UCharFromUTF8(src);
|
||||||
if (u.data() == nullptr)
|
if (u.data() == nullptr)
|
||||||
return {src};
|
return {src};
|
||||||
|
|
||||||
AllocatedArray<UChar> folded(u.size() * 2U);
|
auto folded = IcuFoldCase(ToStringView(std::span{u}));
|
||||||
|
if (folded == nullptr)
|
||||||
UErrorCode error_code = U_ZERO_ERROR;
|
|
||||||
size_t folded_length = u_strFoldCase(folded.data(), folded.size(),
|
|
||||||
u.data(), u.size(),
|
|
||||||
U_FOLD_CASE_DEFAULT,
|
|
||||||
&error_code);
|
|
||||||
if (folded_length == 0 || error_code != U_ZERO_ERROR)
|
|
||||||
return {src};
|
return {src};
|
||||||
|
|
||||||
folded.SetSize(folded_length);
|
|
||||||
return UCharToUTF8(ToStringView(std::span{folded}));
|
return UCharToUTF8(ToStringView(std::span{folded}));
|
||||||
|
|
||||||
#else
|
#else
|
||||||
#error not implemented
|
#error not implemented
|
||||||
#endif
|
#endif
|
||||||
|
41
src/lib/icu/FoldCase.cxx
Normal file
41
src/lib/icu/FoldCase.cxx
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2003-2022 The Music Player Daemon Project
|
||||||
|
* http://www.musicpd.org
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License along
|
||||||
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "FoldCase.hxx"
|
||||||
|
#include "util/AllocatedArray.hxx"
|
||||||
|
|
||||||
|
#include <unicode/ucol.h>
|
||||||
|
#include <unicode/ustring.h>
|
||||||
|
|
||||||
|
AllocatedArray<UChar>
|
||||||
|
IcuFoldCase(std::basic_string_view<UChar> src) noexcept
|
||||||
|
{
|
||||||
|
AllocatedArray<UChar> dest(src.size() * 2U);
|
||||||
|
|
||||||
|
UErrorCode error_code = U_ZERO_ERROR;
|
||||||
|
auto length = u_strFoldCase(dest.data(), dest.size(),
|
||||||
|
src.data(), src.size(),
|
||||||
|
U_FOLD_CASE_DEFAULT,
|
||||||
|
&error_code);
|
||||||
|
if (U_FAILURE(error_code))
|
||||||
|
return nullptr;
|
||||||
|
|
||||||
|
dest.SetSize(length);
|
||||||
|
return dest;
|
||||||
|
}
|
33
src/lib/icu/FoldCase.hxx
Normal file
33
src/lib/icu/FoldCase.hxx
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2003-2022 The Music Player Daemon Project
|
||||||
|
* http://www.musicpd.org
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License along
|
||||||
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <unicode/umachine.h>
|
||||||
|
|
||||||
|
#include <string_view>
|
||||||
|
|
||||||
|
template<class T> class AllocatedArray;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the normalized string (or nullptr on error)
|
||||||
|
*/
|
||||||
|
[[gnu::pure]]
|
||||||
|
AllocatedArray<UChar>
|
||||||
|
IcuFoldCase(std::basic_string_view<UChar> src) noexcept;
|
@ -15,8 +15,9 @@ endif
|
|||||||
iconv_dep = []
|
iconv_dep = []
|
||||||
if icu_dep.found()
|
if icu_dep.found()
|
||||||
icu_sources += [
|
icu_sources += [
|
||||||
'Util.cxx',
|
|
||||||
'Init.cxx',
|
'Init.cxx',
|
||||||
|
'Util.cxx',
|
||||||
|
'FoldCase.cxx',
|
||||||
]
|
]
|
||||||
else
|
else
|
||||||
if meson.version().version_compare('>= 0.60')
|
if meson.version().version_compare('>= 0.60')
|
||||||
|
Loading…
Reference in New Issue
Block a user