Commit b3611524 authored by Max Kellermann's avatar Max Kellermann

fs/Path: move definitions to struct PathTraits

parent a63613db
...@@ -344,6 +344,7 @@ endif ...@@ -344,6 +344,7 @@ endif
libfs_a_SOURCES = \ libfs_a_SOURCES = \
src/fs/Domain.cxx src/fs/Domain.hxx \ src/fs/Domain.cxx src/fs/Domain.hxx \
src/fs/Limits.hxx \ src/fs/Limits.hxx \
src/fs/Traits.hxx \
src/fs/Config.cxx src/fs/Config.hxx \ src/fs/Config.cxx src/fs/Config.hxx \
src/fs/Charset.cxx src/fs/Charset.hxx \ src/fs/Charset.cxx src/fs/Charset.hxx \
src/fs/Path.cxx src/fs/Path.hxx \ src/fs/Path.cxx src/fs/Path.hxx \
......
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
#include "PlaylistRegistry.hxx" #include "PlaylistRegistry.hxx"
#include "PlaylistPlugin.hxx" #include "PlaylistPlugin.hxx"
#include "fs/Path.hxx" #include "fs/Path.hxx"
#include "fs/Traits.hxx"
#include "fs/FileSystem.hxx" #include "fs/FileSystem.hxx"
#include "util/Error.hxx" #include "util/Error.hxx"
#include "util/Domain.hxx" #include "util/Domain.hxx"
...@@ -136,7 +137,7 @@ static const char *summary = ...@@ -136,7 +137,7 @@ static const char *summary =
gcc_pure gcc_pure
static Path static Path
PathBuildChecked(const Path &a, Path::const_pointer b) PathBuildChecked(const Path &a, PathTraits::const_pointer b)
{ {
if (a.IsNull()) if (a.IsNull())
return Path::Null(); return Path::Null();
......
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
#include "config.h" #include "config.h"
#include "ConfigPath.hxx" #include "ConfigPath.hxx"
#include "fs/Path.hxx" #include "fs/Path.hxx"
#include "fs/Traits.hxx"
#include "fs/Domain.hxx" #include "fs/Domain.hxx"
#include "util/Error.hxx" #include "util/Error.hxx"
#include "ConfigGlobal.hxx" #include "ConfigGlobal.hxx"
...@@ -119,7 +120,7 @@ ParsePath(const char *path, Error &error) ...@@ -119,7 +120,7 @@ ParsePath(const char *path, Error &error)
return Path::Null(); return Path::Null();
return Path::Build(home, path2); return Path::Build(home, path2);
} else if (!Path::IsAbsoluteUTF8(path)) { } else if (!PathTraits::IsAbsoluteUTF8(path)) {
error.Format(path_domain, error.Format(path_domain,
"not an absolute path: %s", path); "not an absolute path: %s", path);
return Path::Null(); return Path::Null();
......
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#include "Song.hxx" #include "Song.hxx"
#include "system/FatalError.hxx" #include "system/FatalError.hxx"
#include "Mapper.hxx" #include "Mapper.hxx"
#include "fs/Traits.hxx"
#include "fs/Path.hxx" #include "fs/Path.hxx"
#include "DecoderAPI.hxx" #include "DecoderAPI.hxx"
#include "tag/Tag.hxx" #include "tag/Tag.hxx"
...@@ -153,7 +154,7 @@ decoder_file_decode(const struct decoder_plugin *plugin, ...@@ -153,7 +154,7 @@ decoder_file_decode(const struct decoder_plugin *plugin,
assert(decoder->stream_tag == NULL); assert(decoder->stream_tag == NULL);
assert(decoder->decoder_tag == NULL); assert(decoder->decoder_tag == NULL);
assert(path != NULL); assert(path != NULL);
assert(Path::IsAbsoluteFS(path)); assert(PathTraits::IsAbsoluteFS(path));
assert(decoder->dc->state == DecoderState::START); assert(decoder->dc->state == DecoderState::START);
FormatDebug(decoder_thread_domain, "probing plugin %s", plugin->name); FormatDebug(decoder_thread_domain, "probing plugin %s", plugin->name);
......
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#include "Directory.hxx" #include "Directory.hxx"
#include "Song.hxx" #include "Song.hxx"
#include "fs/Path.hxx" #include "fs/Path.hxx"
#include "fs/Traits.hxx"
#include "fs/Charset.hxx" #include "fs/Charset.hxx"
#include "fs/FileSystem.hxx" #include "fs/FileSystem.hxx"
#include "fs/DirectoryReader.hxx" #include "fs/DirectoryReader.hxx"
...@@ -147,7 +148,7 @@ map_to_relative_path(const char *path_utf8) ...@@ -147,7 +148,7 @@ map_to_relative_path(const char *path_utf8)
return !music_dir_utf8.empty() && return !music_dir_utf8.empty() &&
memcmp(path_utf8, music_dir_utf8.c_str(), memcmp(path_utf8, music_dir_utf8.c_str(),
music_dir_utf8_length) == 0 && music_dir_utf8_length) == 0 &&
Path::IsSeparatorUTF8(path_utf8[music_dir_utf8_length]) PathTraits::IsSeparatorUTF8(path_utf8[music_dir_utf8_length])
? path_utf8 + music_dir_utf8_length + 1 ? path_utf8 + music_dir_utf8_length + 1
: path_utf8; : path_utf8;
} }
...@@ -231,7 +232,7 @@ map_song_fs(const Song *song) ...@@ -231,7 +232,7 @@ map_song_fs(const Song *song)
std::string std::string
map_fs_to_utf8(const char *path_fs) map_fs_to_utf8(const char *path_fs)
{ {
if (Path::IsSeparatorFS(path_fs[0])) { if (PathTraits::IsSeparatorFS(path_fs[0])) {
path_fs = music_dir_fs.RelativeFS(path_fs); path_fs = music_dir_fs.RelativeFS(path_fs);
if (path_fs == nullptr || *path_fs == 0) if (path_fs == nullptr || *path_fs == 0)
return std::string(); return std::string();
......
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
#include "Idle.hxx" #include "Idle.hxx"
#include "fs/Limits.hxx" #include "fs/Limits.hxx"
#include "fs/Path.hxx" #include "fs/Path.hxx"
#include "fs/Traits.hxx"
#include "fs/Charset.hxx" #include "fs/Charset.hxx"
#include "fs/FileSystem.hxx" #include "fs/FileSystem.hxx"
#include "fs/DirectoryReader.hxx" #include "fs/DirectoryReader.hxx"
...@@ -248,7 +249,7 @@ LoadPlaylistFile(const char *utf8path, Error &error) ...@@ -248,7 +249,7 @@ LoadPlaylistFile(const char *utf8path, Error &error)
if (!uri_has_scheme(s)) { if (!uri_has_scheme(s)) {
uri_utf8 = map_fs_to_utf8(s); uri_utf8 = map_fs_to_utf8(s);
if (uri_utf8.empty()) { if (uri_utf8.empty()) {
if (Path::IsAbsoluteFS(s)) { if (PathTraits::IsAbsoluteFS(s)) {
uri_utf8 = PathToUTF8(s); uri_utf8 = PathToUTF8(s);
if (uri_utf8.empty()) if (uri_utf8.empty())
continue; continue;
......
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#include "Mapper.hxx" #include "Mapper.hxx"
#include "Idle.hxx" #include "Idle.hxx"
#include "fs/Path.hxx" #include "fs/Path.hxx"
#include "fs/Traits.hxx"
#include "fs/FileSystem.hxx" #include "fs/FileSystem.hxx"
#include "util/UriUtil.hxx" #include "util/UriUtil.hxx"
#include "util/Error.hxx" #include "util/Error.hxx"
...@@ -55,7 +56,7 @@ void ...@@ -55,7 +56,7 @@ void
playlist_print_uri(FILE *file, const char *uri) playlist_print_uri(FILE *file, const char *uri)
{ {
Path path = playlist_saveAbsolutePaths && !uri_has_scheme(uri) && Path path = playlist_saveAbsolutePaths && !uri_has_scheme(uri) &&
!Path::IsAbsoluteUTF8(uri) !PathTraits::IsAbsoluteUTF8(uri)
? map_uri_fs(uri) ? map_uri_fs(uri)
: Path::FromUTF8(uri); : Path::FromUTF8(uri);
......
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
#include "ls.hxx" #include "ls.hxx"
#include "tag/Tag.hxx" #include "tag/Tag.hxx"
#include "fs/Path.hxx" #include "fs/Path.hxx"
#include "fs/Traits.hxx"
#include "util/UriUtil.hxx" #include "util/UriUtil.hxx"
#include "util/Error.hxx" #include "util/Error.hxx"
#include "Song.hxx" #include "Song.hxx"
...@@ -98,7 +99,7 @@ playlist_check_load_song(const Song *song, const char *uri, bool secure) ...@@ -98,7 +99,7 @@ playlist_check_load_song(const Song *song, const char *uri, bool secure)
if (uri_has_scheme(uri)) { if (uri_has_scheme(uri)) {
dest = Song::NewRemote(uri); dest = Song::NewRemote(uri);
} else if (Path::IsAbsoluteUTF8(uri) && secure) { } else if (PathTraits::IsAbsoluteUTF8(uri) && secure) {
dest = Song::LoadFile(uri, nullptr); dest = Song::LoadFile(uri, nullptr);
if (dest == nullptr) if (dest == nullptr)
return nullptr; return nullptr;
...@@ -147,7 +148,7 @@ playlist_check_translate_song(Song *song, const char *base_uri, ...@@ -147,7 +148,7 @@ playlist_check_translate_song(Song *song, const char *base_uri,
functions */ functions */
base_uri = nullptr; base_uri = nullptr;
if (Path::IsAbsoluteUTF8(uri)) { if (PathTraits::IsAbsoluteUTF8(uri)) {
/* XXX fs_charset vs utf8? */ /* XXX fs_charset vs utf8? */
const char *suffix = map_to_relative_path(uri); const char *suffix = map_to_relative_path(uri);
assert(suffix != nullptr); assert(suffix != nullptr);
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
#include "TextFile.hxx" #include "TextFile.hxx"
#include "util/UriUtil.hxx" #include "util/UriUtil.hxx"
#include "util/Error.hxx" #include "util/Error.hxx"
#include "fs/Path.hxx" #include "fs/Traits.hxx"
#include "Log.hxx" #include "Log.hxx"
#include <glib.h> #include <glib.h>
...@@ -91,7 +91,7 @@ queue_load_song(TextFile &file, const char *line, queue *queue) ...@@ -91,7 +91,7 @@ queue_load_song(TextFile &file, const char *line, queue *queue)
if (g_str_has_prefix(line, SONG_BEGIN)) { if (g_str_has_prefix(line, SONG_BEGIN)) {
const char *uri = line + sizeof(SONG_BEGIN) - 1; const char *uri = line + sizeof(SONG_BEGIN) - 1;
if (!uri_has_scheme(uri) && !Path::IsAbsoluteUTF8(uri)) if (!uri_has_scheme(uri) && !PathTraits::IsAbsoluteUTF8(uri))
return; return;
Error error; Error error;
......
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#include "Directory.hxx" #include "Directory.hxx"
#include "Mapper.hxx" #include "Mapper.hxx"
#include "fs/Path.hxx" #include "fs/Path.hxx"
#include "fs/Traits.hxx"
#include "fs/FileSystem.hxx" #include "fs/FileSystem.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
#include "DecoderPlugin.hxx" #include "DecoderPlugin.hxx"
...@@ -47,7 +48,7 @@ Song::LoadFile(const char *path_utf8, Directory *parent) ...@@ -47,7 +48,7 @@ Song::LoadFile(const char *path_utf8, Directory *parent)
Song *song; Song *song;
bool ret; bool ret;
assert((parent == NULL) == Path::IsAbsoluteUTF8(path_utf8)); assert((parent == NULL) == PathTraits::IsAbsoluteUTF8(path_utf8));
assert(!uri_has_scheme(path_utf8)); assert(!uri_has_scheme(path_utf8));
assert(strchr(path_utf8, '\n') == NULL); assert(strchr(path_utf8, '\n') == NULL);
......
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
#include "ConfigGlobal.hxx" #include "ConfigGlobal.hxx"
#include "ConfigOption.hxx" #include "ConfigOption.hxx"
#include "fs/Path.hxx" #include "fs/Path.hxx"
#include "fs/Traits.hxx"
#include "fs/FileSystem.hxx" #include "fs/FileSystem.hxx"
#include "fs/DirectoryReader.hxx" #include "fs/DirectoryReader.hxx"
#include "util/UriUtil.hxx" #include "util/UriUtil.hxx"
...@@ -295,7 +296,7 @@ skip_symlink(const Directory *directory, const char *utf8_name) ...@@ -295,7 +296,7 @@ skip_symlink(const Directory *directory, const char *utf8_name)
const char *target_str = target.c_str(); const char *target_str = target.c_str();
if (Path::IsAbsoluteFS(target_str)) { if (PathTraits::IsAbsoluteFS(target_str)) {
/* if the symlink points to an absolute path, see if /* if the symlink points to an absolute path, see if
that path is inside the music directory */ that path is inside the music directory */
const char *relative = map_to_relative_path(target_str); const char *relative = map_to_relative_path(target_str);
...@@ -306,7 +307,7 @@ skip_symlink(const Directory *directory, const char *utf8_name) ...@@ -306,7 +307,7 @@ skip_symlink(const Directory *directory, const char *utf8_name)
const char *p = target_str; const char *p = target_str;
while (*p == '.') { while (*p == '.') {
if (p[1] == '.' && Path::IsSeparatorFS(p[2])) { if (p[1] == '.' && PathTraits::IsSeparatorFS(p[2])) {
/* "../" moves to parent directory */ /* "../" moves to parent directory */
directory = directory->parent; directory = directory->parent;
if (directory == NULL) { if (directory == NULL) {
...@@ -316,7 +317,7 @@ skip_symlink(const Directory *directory, const char *utf8_name) ...@@ -316,7 +317,7 @@ skip_symlink(const Directory *directory, const char *utf8_name)
return !follow_outside_symlinks; return !follow_outside_symlinks;
} }
p += 3; p += 3;
} else if (Path::IsSeparatorFS(p[1])) } else if (PathTraits::IsSeparatorFS(p[1]))
/* eliminate "./" */ /* eliminate "./" */
p += 2; p += 2;
else else
......
...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
#define MPD_FS_FILESYSTEM_HXX #define MPD_FS_FILESYSTEM_HXX
#include "check.h" #include "check.h"
#include "Traits.hxx"
#include "system/fd_util.h" #include "system/fd_util.h"
#include "Path.hxx" #include "Path.hxx"
...@@ -31,41 +32,42 @@ ...@@ -31,41 +32,42 @@
#include <stdio.h> #include <stdio.h>
namespace FOpenMode { namespace FOpenMode {
/** /**
* Open mode for reading text files. * Open mode for reading text files.
*/ */
constexpr Path::const_pointer ReadText = "r"; constexpr PathTraits::const_pointer ReadText = "r";
/** /**
* Open mode for reading binary files. * Open mode for reading binary files.
*/ */
constexpr Path::const_pointer ReadBinary = "rb"; constexpr PathTraits::const_pointer ReadBinary = "rb";
/** /**
* Open mode for writing text files. * Open mode for writing text files.
*/ */
constexpr Path::const_pointer WriteText = "w"; constexpr PathTraits::const_pointer WriteText = "w";
/** /**
* Open mode for writing binary files. * Open mode for writing binary files.
*/ */
constexpr Path::const_pointer WriteBinary = "wb"; constexpr PathTraits::const_pointer WriteBinary = "wb";
/** /**
* Open mode for appending text files. * Open mode for appending text files.
*/ */
constexpr Path::const_pointer AppendText = "a"; constexpr PathTraits::const_pointer AppendText = "a";
/** /**
* Open mode for appending binary files. * Open mode for appending binary files.
*/ */
constexpr Path::const_pointer AppendBinary = "ab"; constexpr PathTraits::const_pointer AppendBinary = "ab";
} }
/** /**
* Wrapper for fopen() that uses #Path names. * Wrapper for fopen() that uses #Path names.
*/ */
static inline FILE *FOpen(const Path &file, Path::const_pointer mode) static inline FILE *
FOpen(const Path &file, PathTraits::const_pointer mode)
{ {
return fopen(file.c_str(), mode); return fopen(file.c_str(), mode);
} }
......
...@@ -29,11 +29,6 @@ ...@@ -29,11 +29,6 @@
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>
#ifdef WIN32
#include <windows.h> // for GetACP()
#include <stdio.h> // for sprintf()
#endif
inline Path::Path(Donate, pointer _value) inline Path::Path(Donate, pointer _value)
:value(_value) { :value(_value) {
g_free(_value); g_free(_value);
...@@ -86,14 +81,14 @@ Path::RelativeFS(const char *other_fs) const ...@@ -86,14 +81,14 @@ Path::RelativeFS(const char *other_fs) const
other_fs += l; other_fs += l;
if (*other_fs != 0) { if (*other_fs != 0) {
if (!IsSeparatorFS(*other_fs)) if (!PathTraits::IsSeparatorFS(*other_fs))
/* mismatch */ /* mismatch */
return nullptr; return nullptr;
/* skip remaining path separators */ /* skip remaining path separators */
do { do {
++other_fs; ++other_fs;
} while (IsSeparatorFS(*other_fs)); } while (PathTraits::IsSeparatorFS(*other_fs));
} }
return other_fs; return other_fs;
...@@ -105,7 +100,7 @@ Path::ChopSeparators() ...@@ -105,7 +100,7 @@ Path::ChopSeparators()
size_t l = length(); size_t l = length();
const char *p = data(); const char *p = data();
while (l >= 2 && IsSeparatorFS(p[l - 1])) { while (l >= 2 && PathTraits::IsSeparatorFS(p[l - 1])) {
--l; --l;
#if GCC_CHECK_VERSION(4,7) && !defined(__clang__) #if GCC_CHECK_VERSION(4,7) && !defined(__clang__)
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
#include "check.h" #include "check.h"
#include "Compiler.h" #include "Compiler.h"
#include "Traits.hxx"
#ifdef WIN32 #ifdef WIN32
#include <glib.h> #include <glib.h>
...@@ -40,20 +41,10 @@ class Error; ...@@ -40,20 +41,10 @@ class Error;
class Path { class Path {
typedef std::string string; typedef std::string string;
public: typedef PathTraits::value_type value_type;
typedef string::value_type value_type; typedef PathTraits::pointer pointer;
typedef string::pointer pointer; typedef PathTraits::const_pointer const_pointer;
typedef string::const_pointer const_pointer;
#ifdef WIN32
static constexpr value_type SEPARATOR_FS = '\\';
static constexpr char SEPARATOR_UTF8 = '/';
#else
static constexpr value_type SEPARATOR_FS = '/';
static constexpr char SEPARATOR_UTF8 = '/';
#endif
private:
string value; string value;
struct Donate {}; struct Donate {};
...@@ -216,47 +207,9 @@ public: ...@@ -216,47 +207,9 @@ public:
*/ */
void ChopSeparators(); void ChopSeparators();
static constexpr bool IsSeparatorFS(value_type ch) {
return
#ifdef WIN32
ch == '/' ||
#endif
ch == SEPARATOR_FS;
}
static constexpr bool IsSeparatorUTF8(char ch) {
return
#ifdef WIN32
ch == '/' ||
#endif
ch == SEPARATOR_UTF8;
}
gcc_pure
static bool IsAbsoluteFS(const_pointer p) {
assert(p != nullptr);
#ifdef WIN32
return g_path_is_absolute(p);
#else
return IsSeparatorFS(*p);
#endif
}
gcc_pure
static bool IsAbsoluteUTF8(const char *p) {
assert(p != nullptr);
#ifdef WIN32
return g_path_is_absolute(p);
#else
return IsSeparatorUTF8(*p);
#endif
}
gcc_pure gcc_pure
bool IsAbsolute() { bool IsAbsolute() {
return IsAbsoluteFS(c_str()); return PathTraits::IsAbsoluteFS(c_str());
} }
}; };
......
/*
* Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org
*
* 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.
*
* 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.
*/
#ifndef MPD_FS_TRAITS_HXX
#define MPD_FS_TRAITS_HXX
#include "check.h"
#include "Compiler.h"
#ifdef WIN32
#include <glib.h>
#endif
#include <assert.h>
class Error;
/**
* This class describes the nature of a filesystem path.
*/
struct PathTraits {
typedef char value_type;
typedef char *pointer;
typedef const char *const_pointer;
#ifdef WIN32
static constexpr value_type SEPARATOR_FS = '\\';
static constexpr char SEPARATOR_UTF8 = '/';
#else
static constexpr value_type SEPARATOR_FS = '/';
static constexpr char SEPARATOR_UTF8 = '/';
#endif
static constexpr bool IsSeparatorFS(value_type ch) {
return
#ifdef WIN32
ch == '/' ||
#endif
ch == SEPARATOR_FS;
}
static constexpr bool IsSeparatorUTF8(char ch) {
return
#ifdef WIN32
ch == '/' ||
#endif
ch == SEPARATOR_UTF8;
}
gcc_pure
static bool IsAbsoluteFS(const_pointer p) {
assert(p != nullptr);
#ifdef WIN32
return g_path_is_absolute(p);
#else
return IsSeparatorFS(*p);
#endif
}
gcc_pure
static bool IsAbsoluteUTF8(const char *p) {
assert(p != nullptr);
#ifdef WIN32
return g_path_is_absolute(p);
#else
return IsSeparatorUTF8(*p);
#endif
}
};
#endif
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include "ArchiveFile.hxx" #include "ArchiveFile.hxx"
#include "InputPlugin.hxx" #include "InputPlugin.hxx"
#include "util/Error.hxx" #include "util/Error.hxx"
#include "fs/Path.hxx" #include "fs/Traits.hxx"
#include "Log.hxx" #include "Log.hxx"
#include <glib.h> #include <glib.h>
...@@ -47,7 +47,7 @@ input_archive_open(const char *pathname, ...@@ -47,7 +47,7 @@ input_archive_open(const char *pathname,
const struct archive_plugin *arplug; const struct archive_plugin *arplug;
struct input_stream *is; struct input_stream *is;
if (!Path::IsAbsoluteFS(pathname)) if (!PathTraits::IsAbsoluteFS(pathname))
return NULL; return NULL;
char *pname = g_strdup(pathname); char *pname = g_strdup(pathname);
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
#include "InputPlugin.hxx" #include "InputPlugin.hxx"
#include "util/Error.hxx" #include "util/Error.hxx"
#include "util/Domain.hxx" #include "util/Domain.hxx"
#include "fs/Path.hxx" #include "fs/Traits.hxx"
#include "system/fd_util.h" #include "system/fd_util.h"
#include "open.h" #include "open.h"
...@@ -63,7 +63,7 @@ input_file_open(const char *filename, ...@@ -63,7 +63,7 @@ input_file_open(const char *filename,
int fd, ret; int fd, ret;
struct stat st; struct stat st;
if (!Path::IsAbsoluteFS(filename)) if (!PathTraits::IsAbsoluteFS(filename))
return nullptr; return nullptr;
fd = open_cloexec(filename, O_RDONLY|O_BINARY, 0); fd = open_cloexec(filename, O_RDONLY|O_BINARY, 0);
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
#include "Song.hxx" #include "Song.hxx"
#include "TagFile.hxx" #include "TagFile.hxx"
#include "cue/CueParser.hxx" #include "cue/CueParser.hxx"
#include "fs/Path.hxx" #include "fs/Traits.hxx"
#include <glib.h> #include <glib.h>
#include <assert.h> #include <assert.h>
...@@ -96,7 +96,7 @@ embcue_playlist_open_uri(const char *uri, ...@@ -96,7 +96,7 @@ embcue_playlist_open_uri(const char *uri,
gcc_unused Mutex &mutex, gcc_unused Mutex &mutex,
gcc_unused Cond &cond) gcc_unused Cond &cond)
{ {
if (!Path::IsAbsoluteUTF8(uri)) if (!PathTraits::IsAbsoluteUTF8(uri))
/* only local files supported */ /* only local files supported */
return NULL; return NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment