AllocatedPath.cxx 1.88 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2017 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
 * 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"

26
#include <exception>
27

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

AllocatedPath
32
AllocatedPath::FromUTF8(const char *path_utf8) noexcept
33
{
34
#if defined(HAVE_FS_CHARSET) || defined(_WIN32)
35 36
	try {
		return AllocatedPath(::PathFromUTF8(path_utf8));
37
	} catch (...) {
38 39
		return nullptr;
	}
40 41 42
#else
	return FromFS(path_utf8);
#endif
43 44
}

45 46 47
AllocatedPath
AllocatedPath::FromUTF8Throw(const char *path_utf8)
{
48
#if defined(HAVE_FS_CHARSET) || defined(_WIN32)
49 50 51 52 53 54
	return AllocatedPath(::PathFromUTF8(path_utf8));
#else
	return FromFS(path_utf8);
#endif
}

55
AllocatedPath
56
AllocatedPath::GetDirectoryName() const noexcept
57
{
58
	return FromFS(PathTraitsFS::GetParent(c_str()));
59 60 61
}

std::string
62
AllocatedPath::ToUTF8() const noexcept
63
{
64 65
	try {
		return ::PathToUTF8(c_str());
66
	} catch (...) {
67 68
		return std::string();
	}
69 70 71
}

void
72
AllocatedPath::ChopSeparators() noexcept
73 74
{
	size_t l = length();
75
	const auto *p = data();
76

77
	while (l >= 2 && PathTraitsFS::IsSeparator(p[l - 1])) {
78 79 80 81 82
		--l;

		value.pop_back();
	}
}