mpd/src/Mapper.cxx

128 lines
2.9 KiB
C++
Raw Normal View History

/*
2020-01-18 19:22:19 +01:00
* Copyright 2003-2020 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.
*/
/*
* Maps directory and song objects to file system paths.
*/
#include "config.h"
2013-01-02 22:43:56 +01:00
#include "Mapper.hxx"
#include "fs/AllocatedPath.hxx"
#include "fs/CheckFile.hxx"
#include "util/StringCompare.hxx"
#ifdef ENABLE_DATABASE
#include "storage/StorageInterface.hxx"
#include "Instance.hxx"
#include "Main.hxx"
#endif
#include <cassert>
/**
* The absolute path of the playlist directory encoded in the
* filesystem character set.
*/
static AllocatedPath playlist_dir_fs = nullptr;
static void
mapper_set_playlist_dir(AllocatedPath &&path)
{
assert(!path.IsNull());
playlist_dir_fs = std::move(path);
CheckDirectoryReadable(playlist_dir_fs);
}
void
mapper_init(AllocatedPath &&_playlist_dir)
{
if (!_playlist_dir.IsNull())
mapper_set_playlist_dir(std::move(_playlist_dir));
}
#ifdef ENABLE_DATABASE
AllocatedPath
map_uri_fs(const char *uri) noexcept
{
2013-10-28 23:58:17 +01:00
assert(uri != nullptr);
assert(*uri != '/');
2019-05-29 21:22:25 +02:00
if (global_instance->storage == nullptr)
return nullptr;
2019-05-29 21:22:25 +02:00
const auto music_dir_fs = global_instance->storage->MapFS("");
2013-01-23 19:38:09 +01:00
if (music_dir_fs.IsNull())
return nullptr;
const auto uri_fs = AllocatedPath::FromUTF8(uri);
if (uri_fs.IsNull())
return nullptr;
return music_dir_fs / uri_fs;
}
std::string
map_fs_to_utf8(Path path_fs) noexcept
{
2015-02-28 23:50:18 +01:00
if (path_fs.IsAbsolute()) {
2019-05-29 21:22:25 +02:00
if (global_instance->storage == nullptr)
return std::string();
2019-05-29 21:22:25 +02:00
const auto music_dir_fs = global_instance->storage->MapFS("");
if (music_dir_fs.IsNull())
return std::string();
2015-02-28 23:50:18 +01:00
auto relative = music_dir_fs.Relative(path_fs);
if (relative == nullptr || StringIsEmpty(relative))
return std::string();
2015-02-28 23:50:18 +01:00
path_fs = Path::FromFS(relative);
}
2015-02-28 23:50:18 +01:00
return path_fs.ToUTF8();
}
#endif
const AllocatedPath &
map_spl_path() noexcept
{
return playlist_dir_fs;
}
AllocatedPath
map_spl_utf8_to_fs(const char *name) noexcept
{
2013-01-23 19:38:09 +01:00
if (playlist_dir_fs.IsNull())
return nullptr;
2013-10-17 19:54:58 +02:00
std::string filename_utf8 = name;
filename_utf8.append(PLAYLIST_FILE_SUFFIX);
const auto filename_fs =
AllocatedPath::FromUTF8(filename_utf8);
if (filename_fs.IsNull())
return nullptr;
return playlist_dir_fs / filename_fs;
}