Path.hxx 4.17 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 "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):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 52 53 54 55 56
	constexpr Path(std::nullptr_t):Base(nullptr) {}

	/**
	 * 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) {
63
		return Path(fs);
64 65 66 67 68
	}

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

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

	/**
	 * Clear this object's value, make it "nulled".
	 *
	 * @see IsNull()
	 */
	void SetNull() {
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 104
	}

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

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

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

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

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

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

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

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

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

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

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