2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2014-01-29 20:16:43 +01:00
|
|
|
|
|
|
|
#ifndef MPD_UPDATE_WALK_HXX
|
|
|
|
#define MPD_UPDATE_WALK_HXX
|
|
|
|
|
2018-07-17 22:36:37 +02:00
|
|
|
#include "Config.hxx"
|
2014-01-29 20:16:43 +01:00
|
|
|
#include "Editor.hxx"
|
2018-11-19 12:49:45 +01:00
|
|
|
#include "config.h"
|
2014-01-29 20:16:43 +01:00
|
|
|
|
2017-12-22 12:02:44 +01:00
|
|
|
#include <atomic>
|
2020-04-02 19:23:04 +02:00
|
|
|
#include <string_view>
|
2017-12-22 12:02:44 +01:00
|
|
|
|
2015-02-28 20:50:15 +01:00
|
|
|
struct StorageFileInfo;
|
2014-01-29 20:16:43 +01:00
|
|
|
struct Directory;
|
2014-02-08 13:22:13 +01:00
|
|
|
struct ArchivePlugin;
|
2019-09-02 20:01:30 +02:00
|
|
|
struct PlaylistPlugin;
|
2021-10-14 11:35:35 +02:00
|
|
|
class SongEnumerator;
|
2016-02-26 15:00:41 +01:00
|
|
|
class ArchiveFile;
|
2014-02-05 17:03:43 +01:00
|
|
|
class Storage;
|
2014-01-29 20:16:43 +01:00
|
|
|
class ExcludeList;
|
|
|
|
|
|
|
|
class UpdateWalk final {
|
|
|
|
#ifdef ENABLE_ARCHIVE
|
|
|
|
friend class UpdateArchiveVisitor;
|
|
|
|
#endif
|
|
|
|
|
2018-07-17 22:36:37 +02:00
|
|
|
const UpdateConfig config;
|
2014-01-29 20:16:43 +01:00
|
|
|
|
|
|
|
bool walk_discard;
|
|
|
|
bool modified;
|
|
|
|
|
2014-02-27 16:36:11 +01:00
|
|
|
/**
|
|
|
|
* Set to true by the main thread when the update thread shall
|
|
|
|
* cancel as quickly as possible. Access to this flag is
|
|
|
|
* unprotected.
|
|
|
|
*/
|
2017-12-22 12:02:44 +01:00
|
|
|
std::atomic_bool cancel;
|
2014-02-27 16:36:11 +01:00
|
|
|
|
2014-02-05 17:03:43 +01:00
|
|
|
Storage &storage;
|
2014-01-29 18:14:57 +01:00
|
|
|
|
2014-01-29 20:16:43 +01:00
|
|
|
DatabaseEditor editor;
|
|
|
|
|
|
|
|
public:
|
2018-07-17 22:39:52 +02:00
|
|
|
UpdateWalk(const UpdateConfig &_config,
|
|
|
|
EventLoop &_loop, DatabaseListener &_listener,
|
2018-01-21 11:22:17 +01:00
|
|
|
Storage &_storage) noexcept;
|
2014-01-29 20:16:43 +01:00
|
|
|
|
2014-02-27 16:36:11 +01:00
|
|
|
/**
|
|
|
|
* Cancel the current update and quit the Walk() method as
|
|
|
|
* soon as possible.
|
|
|
|
*/
|
2018-01-21 11:22:17 +01:00
|
|
|
void Cancel() noexcept {
|
2014-02-27 16:36:11 +01:00
|
|
|
cancel = true;
|
|
|
|
}
|
|
|
|
|
2014-01-29 20:16:43 +01:00
|
|
|
/**
|
|
|
|
* Returns true if the database was modified.
|
|
|
|
*/
|
2018-01-21 11:22:17 +01:00
|
|
|
bool Walk(Directory &root, const char *path, bool discard) noexcept;
|
2014-01-29 20:16:43 +01:00
|
|
|
|
|
|
|
private:
|
2021-10-13 11:28:04 +02:00
|
|
|
[[gnu::pure]]
|
2014-01-29 20:16:43 +01:00
|
|
|
bool SkipSymlink(const Directory *directory,
|
2020-04-02 20:10:36 +02:00
|
|
|
std::string_view utf8_name) const noexcept;
|
2014-01-29 20:16:43 +01:00
|
|
|
|
|
|
|
void RemoveExcludedFromDirectory(Directory &directory,
|
2018-01-21 11:22:17 +01:00
|
|
|
const ExcludeList &exclude_list) noexcept;
|
2014-01-29 20:16:43 +01:00
|
|
|
|
2018-01-21 11:22:17 +01:00
|
|
|
void PurgeDeletedFromDirectory(Directory &directory) noexcept;
|
2014-01-29 20:16:43 +01:00
|
|
|
|
2021-08-05 18:57:11 +02:00
|
|
|
/**
|
|
|
|
* Remove all virtual songs inside playlists whose "target"
|
|
|
|
* field points to a non-existing song file.
|
2021-10-14 13:03:54 +02:00
|
|
|
*
|
|
|
|
* It also looks up all target songs and sets their
|
|
|
|
* "in_playlist" field.
|
2021-08-05 18:57:11 +02:00
|
|
|
*/
|
|
|
|
void PurgeDanglingFromPlaylists(Directory &directory) noexcept;
|
|
|
|
|
2014-01-29 20:16:43 +01:00
|
|
|
void UpdateSongFile2(Directory &directory,
|
2023-04-30 08:23:11 +02:00
|
|
|
std::string_view name, std::string_view suffix,
|
2018-01-21 11:22:17 +01:00
|
|
|
const StorageFileInfo &info) noexcept;
|
2014-01-29 20:16:43 +01:00
|
|
|
|
|
|
|
bool UpdateSongFile(Directory &directory,
|
2023-04-30 08:23:11 +02:00
|
|
|
std::string_view name, std::string_view suffix,
|
2018-01-21 11:22:17 +01:00
|
|
|
const StorageFileInfo &info) noexcept;
|
2014-01-29 20:16:43 +01:00
|
|
|
|
|
|
|
bool UpdateContainerFile(Directory &directory,
|
2020-11-04 20:39:06 +01:00
|
|
|
std::string_view name, std::string_view suffix,
|
2018-01-21 11:22:17 +01:00
|
|
|
const StorageFileInfo &info) noexcept;
|
2014-01-29 20:16:43 +01:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef ENABLE_ARCHIVE
|
2016-02-26 15:00:41 +01:00
|
|
|
void UpdateArchiveTree(ArchiveFile &archive, Directory &parent,
|
2023-04-30 08:23:11 +02:00
|
|
|
std::string_view name) noexcept;
|
2014-01-29 20:16:43 +01:00
|
|
|
|
|
|
|
bool UpdateArchiveFile(Directory &directory,
|
2020-11-04 20:39:06 +01:00
|
|
|
std::string_view name, std::string_view suffix,
|
2018-01-21 11:22:17 +01:00
|
|
|
const StorageFileInfo &info) noexcept;
|
2014-01-29 20:16:43 +01:00
|
|
|
|
2020-04-02 20:10:36 +02:00
|
|
|
void UpdateArchiveFile(Directory &directory, std::string_view name,
|
2015-02-28 20:50:15 +01:00
|
|
|
const StorageFileInfo &info,
|
2018-01-21 11:22:17 +01:00
|
|
|
const ArchivePlugin &plugin) noexcept;
|
2014-01-29 20:16:43 +01:00
|
|
|
|
|
|
|
|
|
|
|
#else
|
2020-03-12 20:56:11 +01:00
|
|
|
bool UpdateArchiveFile([[maybe_unused]] Directory &directory,
|
2023-04-30 08:23:11 +02:00
|
|
|
[[maybe_unused]] std::string_view name,
|
2020-11-04 20:39:06 +01:00
|
|
|
[[maybe_unused]] std::string_view suffix,
|
2020-03-12 20:56:11 +01:00
|
|
|
[[maybe_unused]] const StorageFileInfo &info) noexcept {
|
2014-01-29 20:16:43 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2021-10-14 11:35:35 +02:00
|
|
|
void UpdatePlaylistFile(Directory &directory,
|
|
|
|
SongEnumerator &contents) noexcept;
|
|
|
|
|
2020-04-02 19:23:04 +02:00
|
|
|
void UpdatePlaylistFile(Directory &parent, std::string_view name,
|
2019-09-02 20:01:30 +02:00
|
|
|
const StorageFileInfo &info,
|
|
|
|
const PlaylistPlugin &plugin) noexcept;
|
|
|
|
|
2014-01-29 20:16:43 +01:00
|
|
|
bool UpdatePlaylistFile(Directory &directory,
|
2020-11-04 20:39:06 +01:00
|
|
|
std::string_view name, std::string_view suffix,
|
2018-01-21 11:22:17 +01:00
|
|
|
const StorageFileInfo &info) noexcept;
|
2014-01-29 20:16:43 +01:00
|
|
|
|
|
|
|
bool UpdateRegularFile(Directory &directory,
|
2018-01-21 11:22:17 +01:00
|
|
|
const char *name, const StorageFileInfo &info) noexcept;
|
2014-01-29 20:16:43 +01:00
|
|
|
|
|
|
|
void UpdateDirectoryChild(Directory &directory,
|
2015-09-29 19:39:07 +02:00
|
|
|
const ExcludeList &exclude_list,
|
2015-02-28 20:50:15 +01:00
|
|
|
const char *name,
|
2018-01-21 11:22:17 +01:00
|
|
|
const StorageFileInfo &info) noexcept;
|
2014-01-29 20:16:43 +01:00
|
|
|
|
2015-02-28 20:50:15 +01:00
|
|
|
bool UpdateDirectory(Directory &directory,
|
2015-09-29 19:39:07 +02:00
|
|
|
const ExcludeList &exclude_list,
|
2018-01-21 11:22:17 +01:00
|
|
|
const StorageFileInfo &info) noexcept;
|
2014-01-29 20:16:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create the specified directory object if it does not exist
|
2016-03-01 22:08:13 +01:00
|
|
|
* already or if the #StorageFileInfo object indicates that it has been
|
2014-01-29 20:16:43 +01:00
|
|
|
* modified since the last update. Returns nullptr when it
|
|
|
|
* exists already and is unmodified.
|
|
|
|
*
|
|
|
|
* The caller must lock the database.
|
2019-09-03 19:49:32 +02:00
|
|
|
*
|
|
|
|
* @param virtual_device one of the DEVICE_* constants
|
|
|
|
* specifying the kind of virtual directory
|
2014-01-29 20:16:43 +01:00
|
|
|
*/
|
2019-09-03 19:49:10 +02:00
|
|
|
Directory *MakeVirtualDirectoryIfModified(Directory &parent,
|
2020-04-02 19:23:04 +02:00
|
|
|
std::string_view name,
|
2019-09-03 19:49:32 +02:00
|
|
|
const StorageFileInfo &info,
|
|
|
|
unsigned virtual_device) noexcept;
|
2014-01-29 20:16:43 +01:00
|
|
|
|
2019-09-03 19:51:20 +02:00
|
|
|
Directory *LockMakeVirtualDirectoryIfModified(Directory &parent,
|
2020-04-02 19:23:04 +02:00
|
|
|
std::string_view name,
|
2019-09-03 19:51:20 +02:00
|
|
|
const StorageFileInfo &info,
|
|
|
|
unsigned virtual_device) noexcept;
|
|
|
|
|
2014-01-29 20:16:43 +01:00
|
|
|
Directory *DirectoryMakeChildChecked(Directory &parent,
|
2014-01-29 18:14:57 +01:00
|
|
|
const char *uri_utf8,
|
2020-04-02 20:10:36 +02:00
|
|
|
std::string_view name_utf8) noexcept;
|
2014-01-29 20:16:43 +01:00
|
|
|
|
2014-02-04 08:57:40 +01:00
|
|
|
Directory *DirectoryMakeUriParentChecked(Directory &root,
|
2020-04-02 20:14:28 +02:00
|
|
|
std::string_view uri) noexcept;
|
2014-01-29 20:16:43 +01:00
|
|
|
|
2018-01-21 11:22:17 +01:00
|
|
|
void UpdateUri(Directory &root, const char *uri) noexcept;
|
2014-01-29 20:16:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|