Path.hxx 4.22 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2019 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 "util/Compiler.h"
24
#include "Traits.hxx"
Warren Dukes's avatar
Warren Dukes committed
25

26
#include <string>
27 28

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

30 31
class AllocatedPath;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

134 135 136 137 138
	/**
	 * Like ToUTF8(), but throws on error.
	 */
	std::string ToUTF8Throw() const;

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

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

155 156 157 158 159 160 161
	/**
	 * 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
162
	const_pointer_type Relative(Path other_fs) const noexcept {
163
		return Traits::Relative(c_str(), other_fs.c_str());
164
	}
165

166
	gcc_pure
167
	bool IsAbsolute() const noexcept {
168
		return Traits::IsAbsolute(c_str());
169
	}
170 171

	gcc_pure
172
	const_pointer_type GetSuffix() const noexcept;
173 174
};

175 176 177 178 179 180 181 182
/**
 * 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
183
#endif