2013-10-17 21:59:35 +02:00
|
|
|
/*
|
2016-02-26 17:54:05 +01:00
|
|
|
* Copyright 2003-2016 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"
|
|
|
|
|
2016-04-12 21:24:16 +02:00
|
|
|
#include <stdexcept>
|
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
/* no inlining, please */
|
|
|
|
AllocatedPath::~AllocatedPath() {}
|
|
|
|
|
|
|
|
AllocatedPath
|
|
|
|
AllocatedPath::FromUTF8(const char *path_utf8)
|
|
|
|
{
|
2015-02-25 16:01:46 +01:00
|
|
|
#if defined(HAVE_FS_CHARSET) || defined(WIN32)
|
2016-04-12 21:24:16 +02:00
|
|
|
try {
|
|
|
|
return AllocatedPath(::PathFromUTF8(path_utf8));
|
|
|
|
} catch (const std::runtime_error &) {
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
#if defined(HAVE_FS_CHARSET) || defined(WIN32)
|
|
|
|
return AllocatedPath(::PathFromUTF8(path_utf8));
|
|
|
|
#else
|
|
|
|
return FromFS(path_utf8);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
AllocatedPath
|
|
|
|
AllocatedPath::GetDirectoryName() const
|
|
|
|
{
|
2013-12-04 23:52:24 +01:00
|
|
|
return FromFS(PathTraitsFS::GetParent(c_str()));
|
2013-10-17 21:59:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string
|
|
|
|
AllocatedPath::ToUTF8() const
|
|
|
|
{
|
2016-04-12 21:24:16 +02:00
|
|
|
try {
|
|
|
|
return ::PathToUTF8(c_str());
|
|
|
|
} catch (const std::runtime_error &) {
|
|
|
|
return std::string();
|
|
|
|
}
|
2013-10-17 21:59:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AllocatedPath::ChopSeparators()
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
|
2014-11-28 19:33:09 +01:00
|
|
|
#if GCC_CHECK_VERSION(4,7)
|
2013-10-17 21:59:35 +02:00
|
|
|
value.pop_back();
|
|
|
|
#else
|
|
|
|
value.erase(value.end() - 1, value.end());
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|