aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/DecoderThread.cxx2
-rw-r--r--src/db/SimpleDatabasePlugin.cxx3
-rw-r--r--src/fs/Path.cxx20
-rw-r--r--src/fs/Path.hxx101
4 files changed, 45 insertions, 81 deletions
diff --git a/src/DecoderThread.cxx b/src/DecoderThread.cxx
index 5d7bf3e5f..2c07689df 100644
--- a/src/DecoderThread.cxx
+++ b/src/DecoderThread.cxx
@@ -426,7 +426,7 @@ decoder_run(struct decoder_control *dc)
assert(song != NULL);
if (song->IsFile())
- uri = map_song_fs(song).Steal();
+ uri = g_strdup(map_song_fs(song).c_str());
else
uri = song->GetURI();
diff --git a/src/db/SimpleDatabasePlugin.cxx b/src/db/SimpleDatabasePlugin.cxx
index c28f0e4cc..2e30086fc 100644
--- a/src/db/SimpleDatabasePlugin.cxx
+++ b/src/db/SimpleDatabasePlugin.cxx
@@ -71,7 +71,6 @@ bool
SimpleDatabase::Check(Error &error) const
{
assert(!path.IsNull());
- assert(!path.empty());
/* Check if the file exists */
if (!CheckAccess(path, F_OK)) {
@@ -137,7 +136,7 @@ SimpleDatabase::Check(Error &error) const
bool
SimpleDatabase::Load(Error &error)
{
- assert(!path.empty());
+ assert(!path.IsNull());
assert(root != NULL);
TextFile file(path);
diff --git a/src/fs/Path.cxx b/src/fs/Path.cxx
index f04823661..9fdb78d35 100644
--- a/src/fs/Path.cxx
+++ b/src/fs/Path.cxx
@@ -52,6 +52,20 @@ const Domain path_domain("path");
std::string fs_charset;
+inline Path::Path(Donate, pointer _value)
+ :value(_value) {
+ g_free(_value);
+}
+
+/* no inlining, please */
+Path::~Path() {}
+
+Path
+Path::Build(const_pointer a, const_pointer b)
+{
+ return Path(Donate(), g_build_filename(a, b, nullptr));
+}
+
std::string Path::ToUTF8(const_pointer path_fs)
{
if (path_fs == nullptr)
@@ -102,6 +116,12 @@ Path::FromUTF8(const char *path_utf8, Error &error)
return path;
}
+Path
+Path::GetDirectoryName() const
+{
+ return Path(Donate(), g_path_get_dirname(value.c_str()));
+}
+
gcc_pure
static bool
IsSupportedCharset(const char *charset)
diff --git a/src/fs/Path.hxx b/src/fs/Path.hxx
index 8bfc9b8c4..faeb669b7 100644
--- a/src/fs/Path.hxx
+++ b/src/fs/Path.hxx
@@ -23,8 +23,6 @@
#include "check.h"
#include "gcc.h"
-#include <glib.h>
-
#include <algorithm>
#include <string>
@@ -52,56 +50,37 @@ extern const class Domain path_domain;
* A path name in the native file system character set.
*/
class Path {
+ typedef std::string string;
+
public:
- typedef char value_type;
- typedef value_type *pointer;
- typedef const value_type *const_pointer;
+ typedef string::value_type value_type;
+ typedef string::pointer pointer;
+ typedef string::const_pointer const_pointer;
private:
- pointer value;
+ string value;
struct Donate {};
/**
* Donate the allocated pointer to a new #Path object.
*/
- constexpr Path(Donate, pointer _value):value(_value) {}
+ Path(Donate, pointer _value);
- /**
- * Release memory allocated by the value, but do not clear the
- * value pointer.
- */
- void Free() {
- /* free() can be optimized by gcc, while g_free() can
- not: when the compiler knows that the value is
- nullptr, it will not emit a free() call in the
- inlined destructor; however on Windows, we need to
- call g_free(), because the value has been allocated
- by GLib, and on Windows, this matters */
-#ifdef WIN32
- g_free(value);
-#else
- free(value);
-#endif
- }
+ Path(const_pointer _value):value(_value) {}
public:
/**
* Copy a #Path object.
*/
- Path(const Path &other)
- :value(g_strdup(other.value)) {}
+ Path(const Path &) = default;
/**
* Move a #Path object.
*/
- Path(Path &&other):value(other.value) {
- other.value = nullptr;
- }
+ Path(Path &&other):value(std::move(other.value)) {}
- ~Path() {
- Free();
- }
+ ~Path();
/**
* Return a "nulled" instance. Its IsNull() method will
@@ -111,16 +90,14 @@ public:
*/
gcc_const
static Path Null() {
- return Path(Donate(), nullptr);
+ return Path("");
}
/**
* Join two path components with the path separator.
*/
gcc_pure gcc_nonnull_all
- static Path Build(const_pointer a, const_pointer b) {
- return Path(Donate(), g_build_filename(a, b, nullptr));
- }
+ static Path Build(const_pointer a, const_pointer b);
gcc_pure gcc_nonnull_all
static Path Build(const_pointer a, const Path &b) {
@@ -143,7 +120,7 @@ public:
*/
gcc_pure
static Path FromFS(const_pointer fs) {
- return Path(Donate(), g_strdup(fs));
+ return Path(fs);
}
/**
@@ -176,40 +153,22 @@ public:
/**
* Copy a #Path object.
*/
- Path &operator=(const Path &other) {
- if (this != &other) {
- Free();
- value = g_strdup(other.value);
- }
-
- return *this;
- }
+ Path &operator=(const Path &) = default;
/**
* Move a #Path object.
*/
Path &operator=(Path &&other) {
- std::swap(value, other.value);
+ value = std::move(other.value);
return *this;
}
/**
- * Steal the allocated value. This object has an undefined
- * value, and the caller is response for freeing this method's
- * return value.
- */
- pointer Steal() {
- pointer result = value;
- value = nullptr;
- return result;
- }
-
- /**
* Check if this is a "nulled" instance. A "nulled" instance
* must not be used.
*/
bool IsNull() const {
- return value == nullptr;
+ return value.empty();
}
/**
@@ -218,15 +177,7 @@ public:
* @see IsNull()
*/
void SetNull() {
- Free();
- value = nullptr;
- }
-
- gcc_pure
- bool empty() const {
- assert(value != nullptr);
-
- return *value == 0;
+ value.clear();
}
/**
@@ -235,9 +186,7 @@ public:
*/
gcc_pure
size_t length() const {
- assert(value != nullptr);
-
- return strlen(value);
+ return value.length();
}
/**
@@ -247,9 +196,7 @@ public:
*/
gcc_pure
const_pointer c_str() const {
- assert(value != nullptr);
-
- return value;
+ return value.c_str();
}
/**
@@ -258,17 +205,15 @@ public:
* (#IsNull returns true).
*/
std::string ToUTF8() const {
- return ToUTF8(value);
+ return ToUTF8(value.c_str());
}
/**
* Gets directory name of this path.
* Returns a "nulled" instance on error.
*/
- Path GetDirectoryName() const {
- assert(value != nullptr);
- return Path(Donate(), g_path_get_dirname(value));
- }
+ gcc_pure
+ Path GetDirectoryName() const;
};
#endif