2013-10-17 21:59:35 +02:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 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 "config.h"
|
|
|
|
#include "AllocatedPath.hxx"
|
|
|
|
#include "Domain.hxx"
|
|
|
|
#include "Charset.hxx"
|
|
|
|
#include "Compiler.h"
|
|
|
|
|
2017-12-19 10:56:23 +01:00
|
|
|
#include <exception>
|
2016-04-12 21:24:16 +02:00
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
/* no inlining, please */
|
|
|
|
AllocatedPath::~AllocatedPath() {}
|
|
|
|
|
|
|
|
AllocatedPath
|
2017-05-08 14:44:49 +02:00
|
|
|
AllocatedPath::FromUTF8(const char *path_utf8) noexcept
|
2013-10-17 21:59:35 +02:00
|
|
|
{
|
2017-12-12 10:22:20 +01:00
|
|
|
#if defined(HAVE_FS_CHARSET) || defined(_WIN32)
|
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
|
|
|
#else
|
|
|
|
return FromFS(path_utf8);
|
|
|
|
#endif
|
2013-10-17 21:59:35 +02:00
|
|
|
}
|
|
|
|
|
2016-04-12 21:20:32 +02:00
|
|
|
AllocatedPath
|
|
|
|
AllocatedPath::FromUTF8Throw(const char *path_utf8)
|
|
|
|
{
|
2017-12-12 10:22:20 +01:00
|
|
|
#if defined(HAVE_FS_CHARSET) || defined(_WIN32)
|
2016-04-12 21:20:32 +02:00
|
|
|
return AllocatedPath(::PathFromUTF8(path_utf8));
|
|
|
|
#else
|
|
|
|
return FromFS(path_utf8);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
AllocatedPath
|
2017-05-08 14:44:49 +02:00
|
|
|
AllocatedPath::GetDirectoryName() const noexcept
|
2013-10-17 21:59:35 +02:00
|
|
|
{
|
2013-12-04 23:52:24 +01:00
|
|
|
return FromFS(PathTraitsFS::GetParent(c_str()));
|
2013-10-17 21:59:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string
|
2017-05-08 14:44:49 +02:00
|
|
|
AllocatedPath::ToUTF8() const noexcept
|
2013-10-17 21:59:35 +02:00
|
|
|
{
|
2016-04-12 21:24:16 +02:00
|
|
|
try {
|
|
|
|
return ::PathToUTF8(c_str());
|
2017-12-19 10:56:23 +01:00
|
|
|
} catch (...) {
|
2016-04-12 21:24:16 +02:00
|
|
|
return std::string();
|
|
|
|
}
|
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();
|
|
|
|
}
|
|
|
|
}
|