2013-10-17 22:13:54 +02:00
|
|
|
/*
|
2015-01-01 19:48:13 +01:00
|
|
|
* Copyright (C) 2003-2015 The Music Player Daemon Project
|
2013-10-17 22:13:54 +02:00
|
|
|
* 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 "config.h"
|
|
|
|
#include "Charset.hxx"
|
|
|
|
#include "Domain.hxx"
|
|
|
|
#include "Limits.hxx"
|
|
|
|
#include "Log.hxx"
|
2013-12-05 07:51:01 +01:00
|
|
|
#include "Traits.hxx"
|
2014-11-29 23:59:37 +01:00
|
|
|
#include "lib/icu/Converter.hxx"
|
2014-11-29 22:33:30 +01:00
|
|
|
#include "util/Error.hxx"
|
2013-10-17 22:13:54 +02:00
|
|
|
|
2013-12-05 07:51:01 +01:00
|
|
|
#include <algorithm>
|
|
|
|
|
2013-10-17 22:13:54 +02:00
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2014-11-30 00:27:58 +01:00
|
|
|
#ifdef HAVE_FS_CHARSET
|
2014-10-25 00:07:25 +02:00
|
|
|
|
2013-10-17 22:13:54 +02:00
|
|
|
static std::string fs_charset;
|
|
|
|
|
2014-11-29 23:59:37 +01:00
|
|
|
static IcuConverter *fs_converter;
|
2013-10-17 22:13:54 +02:00
|
|
|
|
2014-11-29 22:33:30 +01:00
|
|
|
bool
|
|
|
|
SetFSCharset(const char *charset, Error &error)
|
2013-10-17 22:13:54 +02:00
|
|
|
{
|
2013-10-28 23:58:17 +01:00
|
|
|
assert(charset != nullptr);
|
2014-11-29 23:59:37 +01:00
|
|
|
assert(fs_converter == nullptr);
|
2013-10-17 22:13:54 +02:00
|
|
|
|
2014-11-29 23:59:37 +01:00
|
|
|
fs_converter = IcuConverter::Create(charset, error);
|
|
|
|
if (fs_converter == nullptr)
|
2014-11-29 22:33:30 +01:00
|
|
|
return false;
|
2013-10-17 22:13:54 +02:00
|
|
|
|
|
|
|
FormatDebug(path_domain,
|
|
|
|
"SetFSCharset: fs charset is: %s", fs_charset.c_str());
|
2014-11-29 22:33:30 +01:00
|
|
|
return true;
|
2013-10-17 22:13:54 +02:00
|
|
|
}
|
|
|
|
|
2014-02-17 22:48:26 +01:00
|
|
|
#endif
|
|
|
|
|
2014-11-29 23:35:18 +01:00
|
|
|
void
|
|
|
|
DeinitFSCharset()
|
|
|
|
{
|
2014-11-29 23:59:37 +01:00
|
|
|
#ifdef HAVE_ICU_CONVERTER
|
|
|
|
delete fs_converter;
|
|
|
|
fs_converter = nullptr;
|
|
|
|
#endif
|
2014-11-29 23:35:18 +01:00
|
|
|
}
|
|
|
|
|
2013-10-17 22:47:09 +02:00
|
|
|
const char *
|
2013-10-17 22:13:54 +02:00
|
|
|
GetFSCharset()
|
|
|
|
{
|
2014-11-29 23:35:49 +01:00
|
|
|
#ifdef HAVE_FS_CHARSET
|
2014-02-23 20:02:14 +01:00
|
|
|
return fs_charset.empty() ? "UTF-8" : fs_charset.c_str();
|
2014-02-17 22:48:26 +01:00
|
|
|
#else
|
2014-02-23 20:02:14 +01:00
|
|
|
return "UTF-8";
|
2014-02-17 22:48:26 +01:00
|
|
|
#endif
|
2013-10-17 22:13:54 +02:00
|
|
|
}
|
|
|
|
|
2015-02-08 18:52:01 +01:00
|
|
|
static inline std::string &&
|
|
|
|
FixSeparators(std::string &&s)
|
2013-12-05 07:51:01 +01:00
|
|
|
{
|
|
|
|
#ifdef WIN32
|
|
|
|
// For whatever reason GCC can't convert constexpr to value reference.
|
|
|
|
// This leads to link errors when passing separators directly.
|
|
|
|
auto from = PathTraitsFS::SEPARATOR;
|
|
|
|
auto to = PathTraitsUTF8::SEPARATOR;
|
|
|
|
std::replace(s.begin(), s.end(), from, to);
|
|
|
|
#endif
|
2015-02-08 18:52:01 +01:00
|
|
|
return std::move(s);
|
2013-12-05 07:51:01 +01:00
|
|
|
}
|
|
|
|
|
2013-10-17 22:13:54 +02:00
|
|
|
std::string
|
|
|
|
PathToUTF8(const char *path_fs)
|
|
|
|
{
|
2014-12-26 13:40:17 +01:00
|
|
|
#if !CLANG_CHECK_VERSION(3,6)
|
|
|
|
/* disabled on clang due to -Wtautological-pointer-compare */
|
2013-10-17 22:39:06 +02:00
|
|
|
assert(path_fs != nullptr);
|
2014-12-26 13:40:17 +01:00
|
|
|
#endif
|
2013-10-17 22:13:54 +02:00
|
|
|
|
2014-11-30 00:27:58 +01:00
|
|
|
#ifdef HAVE_FS_CHARSET
|
2015-02-08 18:52:01 +01:00
|
|
|
if (fs_converter == nullptr)
|
2014-02-17 22:48:26 +01:00
|
|
|
#endif
|
2015-02-08 18:52:01 +01:00
|
|
|
return FixSeparators(path_fs);
|
2014-11-30 00:27:58 +01:00
|
|
|
#ifdef HAVE_FS_CHARSET
|
2013-10-17 22:42:22 +02:00
|
|
|
|
2015-02-08 18:52:01 +01:00
|
|
|
return FixSeparators(fs_converter->ToUTF8(path_fs));
|
2014-02-17 22:48:26 +01:00
|
|
|
#endif
|
2013-10-17 22:13:54 +02:00
|
|
|
}
|
|
|
|
|
2014-11-30 00:27:58 +01:00
|
|
|
#ifdef HAVE_FS_CHARSET
|
2014-02-17 22:48:26 +01:00
|
|
|
|
2014-11-30 00:17:08 +01:00
|
|
|
std::string
|
2013-10-17 22:13:54 +02:00
|
|
|
PathFromUTF8(const char *path_utf8)
|
|
|
|
{
|
2014-12-26 13:40:17 +01:00
|
|
|
#if !CLANG_CHECK_VERSION(3,6)
|
|
|
|
/* disabled on clang due to -Wtautological-pointer-compare */
|
2013-10-17 22:39:06 +02:00
|
|
|
assert(path_utf8 != nullptr);
|
2014-12-26 13:40:17 +01:00
|
|
|
#endif
|
2013-10-17 22:39:06 +02:00
|
|
|
|
2014-11-29 23:59:37 +01:00
|
|
|
if (fs_converter == nullptr)
|
2014-11-30 00:17:08 +01:00
|
|
|
return path_utf8;
|
2013-10-17 22:42:22 +02:00
|
|
|
|
2014-11-29 23:59:37 +01:00
|
|
|
return fs_converter->FromUTF8(path_utf8);
|
2013-10-17 22:13:54 +02:00
|
|
|
}
|
2014-02-17 22:48:26 +01:00
|
|
|
|
|
|
|
#endif
|