AllocatedPath.cxx 2.25 KB
Newer Older
1
/*
2
 * Copyright 2003-2016 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 * 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 "util/Error.hxx"
#include "Compiler.h"

27 28
#include <stdexcept>

29 30 31 32 33 34
/* no inlining, please */
AllocatedPath::~AllocatedPath() {}

AllocatedPath
AllocatedPath::FromUTF8(const char *path_utf8)
{
35
#if defined(HAVE_FS_CHARSET) || defined(WIN32)
36 37 38 39 40
	try {
		return AllocatedPath(::PathFromUTF8(path_utf8));
	} catch (const std::runtime_error &) {
		return nullptr;
	}
41 42 43
#else
	return FromFS(path_utf8);
#endif
44 45
}

46 47 48 49 50 51 52 53 54 55
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
}

56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
AllocatedPath
AllocatedPath::FromUTF8(const char *path_utf8, Error &error)
{
	AllocatedPath path = FromUTF8(path_utf8);
	if (path.IsNull())
		error.Format(path_domain,
			     "Failed to convert to file system charset: %s",
			     path_utf8);

	return path;
}

AllocatedPath
AllocatedPath::GetDirectoryName() const
{
71
	return FromFS(PathTraitsFS::GetParent(c_str()));
72 73 74 75 76
}

std::string
AllocatedPath::ToUTF8() const
{
77 78 79 80 81
	try {
		return ::PathToUTF8(c_str());
	} catch (const std::runtime_error &) {
		return std::string();
	}
82 83 84 85 86 87
}

void
AllocatedPath::ChopSeparators()
{
	size_t l = length();
88
	const auto *p = data();
89

90
	while (l >= 2 && PathTraitsFS::IsSeparator(p[l - 1])) {
91 92
		--l;

93
#if GCC_CHECK_VERSION(4,7)
94 95 96 97 98 99
		value.pop_back();
#else
		value.erase(value.end() - 1, value.end());
#endif
	}
}