2013-10-17 21:59:35 +02:00
|
|
|
/*
|
2021-01-01 19:54:25 +01:00
|
|
|
* Copyright 2003-2021 The Music Player Daemon Project
|
2013-10-17 21:59:35 +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 "AllocatedPath.hxx"
|
|
|
|
#include "Charset.hxx"
|
2019-04-24 14:24:54 +02:00
|
|
|
#include "Features.hxx"
|
2016-04-12 21:24:16 +02:00
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
/* no inlining, please */
|
2019-04-24 14:18:24 +02:00
|
|
|
AllocatedPath::~AllocatedPath() noexcept = default;
|
2013-10-17 21:59:35 +02:00
|
|
|
|
|
|
|
AllocatedPath
|
2020-04-03 15:55:19 +02:00
|
|
|
AllocatedPath::FromUTF8(std::string_view path_utf8) noexcept
|
2013-10-17 21:59:35 +02:00
|
|
|
{
|
2019-04-24 14:28:55 +02:00
|
|
|
#ifdef FS_CHARSET_ALWAYS_UTF8
|
|
|
|
return FromFS(path_utf8);
|
|
|
|
#else
|
2016-04-12 21:24:16 +02:00
|
|
|
try {
|
|
|
|
return AllocatedPath(::PathFromUTF8(path_utf8));
|
2017-12-19 10:56:23 +01:00
|
|
|
} catch (...) {
|
2016-04-12 21:24:16 +02:00
|
|
|
return nullptr;
|
|
|
|
}
|
2014-02-17 22:48:26 +01:00
|
|
|
#endif
|
2013-10-17 21:59:35 +02:00
|
|
|
}
|
|
|
|
|
2016-04-12 21:20:32 +02:00
|
|
|
AllocatedPath
|
2020-04-03 15:55:19 +02:00
|
|
|
AllocatedPath::FromUTF8Throw(std::string_view path_utf8)
|
2016-04-12 21:20:32 +02:00
|
|
|
{
|
2019-04-24 14:28:55 +02:00
|
|
|
#ifdef FS_CHARSET_ALWAYS_UTF8
|
2016-04-12 21:20:32 +02:00
|
|
|
return FromFS(path_utf8);
|
2019-04-24 14:28:55 +02:00
|
|
|
#else
|
|
|
|
return AllocatedPath(::PathFromUTF8(path_utf8));
|
2016-04-12 21:20:32 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
void
|
2017-05-08 14:44:49 +02:00
|
|
|
AllocatedPath::ChopSeparators() noexcept
|
2013-10-17 21:59:35 +02:00
|
|
|
{
|
|
|
|
size_t l = length();
|
2015-02-25 16:10:24 +01:00
|
|
|
const auto *p = data();
|
2013-10-17 21:59:35 +02:00
|
|
|
|
2013-12-04 22:53:43 +01:00
|
|
|
while (l >= 2 && PathTraitsFS::IsSeparator(p[l - 1])) {
|
2013-10-17 21:59:35 +02:00
|
|
|
--l;
|
|
|
|
|
|
|
|
value.pop_back();
|
|
|
|
}
|
|
|
|
}
|