Path.hxx 4.19 KB
Newer Older
1
/*
2
 * Copyright 2003-2018 The Music Player Daemon Project
3
 * http://www.musicpd.org
Warren Dukes's avatar
Warren Dukes committed
4 5 6 7 8 9 10 11 12 13
 *
 * 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.
14 15 16 17
 *
 * 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.
Warren Dukes's avatar
Warren Dukes committed
18 19
 */

20 21
#ifndef MPD_FS_PATH_HXX
#define MPD_FS_PATH_HXX
Max Kellermann's avatar
Max Kellermann committed
22 23

#include "check.h"
24
#include "util/Compiler.h"
25
#include "Traits.hxx"
Warren Dukes's avatar
Warren Dukes committed
26

27
#include <string>
28 29

#include <assert.h>
Warren Dukes's avatar
Warren Dukes committed
30

31 32
class AllocatedPath;

33 34
/**
 * A path name in the native file system character set.
35 36 37
 *
 * This class manages a pointer to an existing path string.  While an
 * instance lives, the string must not be invalidated.
38
 */
39
class Path : public PathTraitsFS::Pointer {
40 41
	using Traits = PathTraitsFS;
	typedef Traits::Pointer Base;
42

43
	constexpr Path(const_pointer_type _value):Base(_value) {}
44 45 46

public:
	/**
47
	 * Construct a "nulled" instance.  Its IsNull() method will
48 49 50 51
	 * return true.  Such an object must not be used.
	 *
	 * @see IsNull()
	 */
52 53 54 55 56 57
	constexpr Path(std::nullptr_t):Base(nullptr) {}

	/**
	 * Copy a #Path object.
	 */
	constexpr Path(const Path &) = default;
58 59

	/**
60 61
	 * Create a new instance pointing to the specified path
	 * string.
62
	 */
63
	static constexpr Path FromFS(const_pointer_type fs) {
64
		return Path(fs);
65 66 67 68 69
	}

	/**
	 * Copy a #Path object.
	 */
70
	Path &operator=(const Path &) = default;
71 72 73 74 75 76

	/**
	 * Check if this is a "nulled" instance.  A "nulled" instance
	 * must not be used.
	 */
	bool IsNull() const {
77
		return Base::IsNull();
78 79 80 81 82 83 84 85
	}

	/**
	 * Clear this object's value, make it "nulled".
	 *
	 * @see IsNull()
	 */
	void SetNull() {
86
		*this = nullptr;
87 88 89 90 91 92 93
	}

	/**
	 * @return the length of this string in number of "value_type"
	 * elements (which may not be the number of characters).
	 */
	gcc_pure
94
	size_t length() const noexcept {
95
		assert(!IsNull());
96

97
		return Traits::GetLength(c_str());
98 99 100 101 102 103 104 105
	}

	/**
	 * Returns the value as a const C string.  The returned
	 * pointer is invalidated whenever the value of life of this
	 * instance ends.
	 */
	gcc_pure
106
	const_pointer_type c_str() const noexcept {
107
		return Base::c_str();
108 109
	}

110 111 112 113 114
	/**
	 * Returns a pointer to the raw value, not necessarily
	 * null-terminated.
	 */
	gcc_pure
115
	const_pointer_type data() const noexcept {
116
		return c_str();
117 118
	}

119 120 121 122 123 124
	/**
	 * Does the path contain a newline character?  (Which is
	 * usually rejected by MPD because its protocol cannot
	 * transfer newline characters).
	 */
	gcc_pure
125
	bool HasNewline() const noexcept {
126
		return Traits::Find(c_str(), '\n') != nullptr;
127 128
	}

129
	/**
130 131 132
	 * Convert the path to UTF-8.
	 * Returns empty string on error or if this instance is "nulled"
	 * (#IsNull returns true).
133
	 */
134
	gcc_pure
135
	std::string ToUTF8() const noexcept;
136

137 138 139 140 141
	/**
	 * Like ToUTF8(), but throws on error.
	 */
	std::string ToUTF8Throw() const;

142 143 144 145 146
	/**
	 * Determine the "base" file name.
	 * The return value points inside this object.
	 */
	gcc_pure
147
	Path GetBase() const noexcept {
148
		return FromFS(Traits::GetBase(c_str()));
149 150 151 152 153 154 155
	}

	/**
	 * Gets directory name of this path.
	 * Returns a "nulled" instance on error.
	 */
	gcc_pure
156
	AllocatedPath GetDirectoryName() const noexcept;
157

158 159 160 161 162 163 164
	/**
	 * Determine the relative part of the given path to this
	 * object, not including the directory separator.  Returns an
	 * empty string if the given path equals this object or
	 * nullptr on mismatch.
	 */
	gcc_pure
165
	const_pointer_type Relative(Path other_fs) const noexcept {
166
		return Traits::Relative(c_str(), other_fs.c_str());
167
	}
168

169
	gcc_pure
170
	bool IsAbsolute() const noexcept {
171
		return Traits::IsAbsolute(c_str());
172
	}
173 174

	gcc_pure
175
	const_pointer_type GetSuffix() const noexcept;
176 177
};

178 179 180 181 182 183 184 185
/**
 * Concatenate two path components using the directory separator.
 *
 * Wrapper for AllocatedPath::Build().
 */
AllocatedPath
operator/(Path a, Path b) noexcept;

Warren Dukes's avatar
Warren Dukes committed
186
#endif