2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2020-01-18 19:22:19 +01:00
|
|
|
* Copyright 2003-2020 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2008-10-14 11:10:49 +02:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2008-10-14 11:10:49 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Maps directory and song objects to file system paths.
|
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-02 22:43:56 +01:00
|
|
|
#include "Mapper.hxx"
|
2013-10-17 21:59:35 +02:00
|
|
|
#include "fs/AllocatedPath.hxx"
|
2014-02-07 23:25:47 +01:00
|
|
|
#include "fs/CheckFile.hxx"
|
2015-11-06 09:37:07 +01:00
|
|
|
#include "util/StringCompare.hxx"
|
2008-10-15 19:36:33 +02:00
|
|
|
|
2014-01-30 20:29:48 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
2014-02-07 23:34:29 +01:00
|
|
|
#include "storage/StorageInterface.hxx"
|
|
|
|
#include "Instance.hxx"
|
|
|
|
#include "Main.hxx"
|
2014-01-30 20:29:48 +01:00
|
|
|
#endif
|
|
|
|
|
2020-03-12 23:20:59 +01:00
|
|
|
#include <cassert>
|
2014-02-07 23:34:29 +01:00
|
|
|
|
2012-08-13 23:37:50 +02:00
|
|
|
/**
|
|
|
|
* The absolute path of the playlist directory encoded in the
|
|
|
|
* filesystem character set.
|
|
|
|
*/
|
2018-01-17 12:17:41 +01:00
|
|
|
static AllocatedPath playlist_dir_fs = nullptr;
|
2009-01-18 16:15:45 +01:00
|
|
|
|
2013-08-07 19:54:38 +02:00
|
|
|
static void
|
2013-10-17 21:59:35 +02:00
|
|
|
mapper_set_playlist_dir(AllocatedPath &&path)
|
2009-01-18 16:15:45 +01:00
|
|
|
{
|
2013-08-07 19:54:38 +02:00
|
|
|
assert(!path.IsNull());
|
|
|
|
|
2013-10-01 18:50:12 +02:00
|
|
|
playlist_dir_fs = std::move(path);
|
2013-01-27 08:26:17 +01:00
|
|
|
|
2014-02-07 23:25:47 +01:00
|
|
|
CheckDirectoryReadable(playlist_dir_fs);
|
2009-01-18 16:15:45 +01:00
|
|
|
}
|
2008-10-31 16:47:14 +01:00
|
|
|
|
2013-08-07 19:54:38 +02:00
|
|
|
void
|
2014-02-07 23:34:29 +01:00
|
|
|
mapper_init(AllocatedPath &&_playlist_dir)
|
2008-10-15 19:36:33 +02:00
|
|
|
{
|
2013-08-07 19:54:38 +02:00
|
|
|
if (!_playlist_dir.IsNull())
|
|
|
|
mapper_set_playlist_dir(std::move(_playlist_dir));
|
2008-10-15 19:36:33 +02:00
|
|
|
}
|
|
|
|
|
2014-01-30 20:29:48 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
AllocatedPath
|
2017-05-08 14:44:49 +02:00
|
|
|
map_uri_fs(const char *uri) noexcept
|
2008-12-24 22:04:24 +01:00
|
|
|
{
|
2013-10-28 23:58:17 +01:00
|
|
|
assert(uri != nullptr);
|
2008-12-24 22:04:24 +01:00
|
|
|
assert(*uri != '/');
|
|
|
|
|
2019-05-29 21:22:25 +02:00
|
|
|
if (global_instance->storage == nullptr)
|
2018-01-17 12:17:41 +01:00
|
|
|
return nullptr;
|
2014-02-07 23:34:29 +01:00
|
|
|
|
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())
|
2018-01-17 12:17:41 +01:00
|
|
|
return nullptr;
|
2009-01-18 16:56:07 +01:00
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
const auto uri_fs = AllocatedPath::FromUTF8(uri);
|
2013-01-17 00:56:57 +01:00
|
|
|
if (uri_fs.IsNull())
|
2018-01-17 12:17:41 +01:00
|
|
|
return nullptr;
|
2009-01-08 21:20:46 +01:00
|
|
|
|
2018-07-17 17:01:02 +02:00
|
|
|
return music_dir_fs / uri_fs;
|
2008-12-24 22:04:24 +01:00
|
|
|
}
|
|
|
|
|
2013-10-14 21:43:41 +02:00
|
|
|
std::string
|
2017-05-08 14:44:49 +02:00
|
|
|
map_fs_to_utf8(Path path_fs) noexcept
|
2008-10-14 11:10:49 +02:00
|
|
|
{
|
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)
|
2014-02-07 23:34:29 +01:00
|
|
|
return std::string();
|
|
|
|
|
2019-05-29 21:22:25 +02:00
|
|
|
const auto music_dir_fs = global_instance->storage->MapFS("");
|
2014-02-07 23:34:29 +01:00
|
|
|
if (music_dir_fs.IsNull())
|
|
|
|
return std::string();
|
|
|
|
|
2015-02-28 23:50:18 +01:00
|
|
|
auto relative = music_dir_fs.Relative(path_fs);
|
2015-11-06 09:37:07 +01:00
|
|
|
if (relative == nullptr || StringIsEmpty(relative))
|
2013-10-14 22:09:02 +02:00
|
|
|
return std::string();
|
2015-02-28 23:50:18 +01:00
|
|
|
|
|
|
|
path_fs = Path::FromFS(relative);
|
2013-10-14 22:09:02 +02:00
|
|
|
}
|
2009-01-30 13:47:52 +01:00
|
|
|
|
2015-02-28 23:50:18 +01:00
|
|
|
return path_fs.ToUTF8();
|
2008-10-14 11:10:49 +02:00
|
|
|
}
|
2008-10-31 16:47:14 +01:00
|
|
|
|
2014-01-30 20:29:48 +01:00
|
|
|
#endif
|
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
const AllocatedPath &
|
2017-05-08 14:44:49 +02:00
|
|
|
map_spl_path() noexcept
|
2008-10-31 16:47:14 +01:00
|
|
|
{
|
2012-08-13 23:37:50 +02:00
|
|
|
return playlist_dir_fs;
|
2008-10-31 16:47:14 +01:00
|
|
|
}
|
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
AllocatedPath
|
2017-05-08 14:44:49 +02:00
|
|
|
map_spl_utf8_to_fs(const char *name) noexcept
|
2008-10-31 16:47:14 +01:00
|
|
|
{
|
2013-01-23 19:38:09 +01:00
|
|
|
if (playlist_dir_fs.IsNull())
|
2018-01-17 12:17:41 +01:00
|
|
|
return nullptr;
|
2009-01-18 16:15:45 +01:00
|
|
|
|
2013-10-17 19:54:58 +02:00
|
|
|
std::string filename_utf8 = name;
|
|
|
|
filename_utf8.append(PLAYLIST_FILE_SUFFIX);
|
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
const auto filename_fs =
|
2020-04-03 15:55:19 +02:00
|
|
|
AllocatedPath::FromUTF8(filename_utf8);
|
2013-01-17 00:56:57 +01:00
|
|
|
if (filename_fs.IsNull())
|
2018-01-17 12:17:41 +01:00
|
|
|
return nullptr;
|
2009-01-01 19:17:44 +01:00
|
|
|
|
2018-07-17 17:01:02 +02:00
|
|
|
return playlist_dir_fs / filename_fs;
|
2008-10-31 16:47:14 +01:00
|
|
|
}
|