Path.hxx 3.83 KB
Newer Older
1
/*
2
 * Copyright 2003-2016 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 "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 40
class Path : public PathTraitsFS::Pointer {
	typedef PathTraitsFS::Pointer Base;
41

42
	constexpr Path(const_pointer _value):Base(_value) {}
43 44 45 46 47

public:
	/**
	 * Copy a #Path object.
	 */
48
	constexpr Path(const Path &) = default;
49 50 51 52 53 54 55

	/**
	 * Return a "nulled" instance.  Its IsNull() method will
	 * return true.  Such an object must not be used.
	 *
	 * @see IsNull()
	 */
56 57
	static constexpr Path Null() {
		return Path(nullptr);
58 59 60
	}

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

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

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

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

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

98
		return PathTraitsFS::GetLength(c_str());
99 100 101 102 103 104 105 106 107
	}

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

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

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

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

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

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

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

165
	gcc_pure
166
	bool IsAbsolute() const {
167
		return PathTraitsFS::IsAbsolute(c_str());
168
	}
169 170

	gcc_pure
171
	const_pointer GetSuffix() const;
172 173
};

Warren Dukes's avatar
Warren Dukes committed
174
#endif