mpd/src/db/update/Walk.hxx

171 lines
4.6 KiB
C++
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
#ifndef MPD_UPDATE_WALK_HXX
#define MPD_UPDATE_WALK_HXX
#include "Config.hxx"
#include "Editor.hxx"
#include "config.h"
#include <atomic>
#include <string_view>
struct StorageFileInfo;
struct Directory;
struct ArchivePlugin;
struct PlaylistPlugin;
class SongEnumerator;
class ArchiveFile;
class Storage;
class ExcludeList;
class UpdateWalk final {
#ifdef ENABLE_ARCHIVE
friend class UpdateArchiveVisitor;
#endif
const UpdateConfig config;
bool walk_discard;
bool modified;
/**
* Set to true by the main thread when the update thread shall
* cancel as quickly as possible. Access to this flag is
* unprotected.
*/
std::atomic_bool cancel;
Storage &storage;
DatabaseEditor editor;
public:
UpdateWalk(const UpdateConfig &_config,
EventLoop &_loop, DatabaseListener &_listener,
2018-01-21 11:22:17 +01:00
Storage &_storage) noexcept;
/**
* Cancel the current update and quit the Walk() method as
* soon as possible.
*/
2018-01-21 11:22:17 +01:00
void Cancel() noexcept {
cancel = true;
}
/**
* 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;
private:
2021-10-13 11:28:04 +02:00
[[gnu::pure]]
bool SkipSymlink(const Directory *directory,
std::string_view utf8_name) const noexcept;
void RemoveExcludedFromDirectory(Directory &directory,
2018-01-21 11:22:17 +01:00
const ExcludeList &exclude_list) noexcept;
2018-01-21 11:22:17 +01:00
void PurgeDeletedFromDirectory(Directory &directory) noexcept;
/**
* Remove all virtual songs inside playlists whose "target"
* field points to a non-existing song file.
*
* It also looks up all target songs and sets their
* "in_playlist" field.
*/
void PurgeDanglingFromPlaylists(Directory &directory) noexcept;
void UpdateSongFile2(Directory &directory,
std::string_view name, std::string_view suffix,
2018-01-21 11:22:17 +01:00
const StorageFileInfo &info) noexcept;
bool UpdateSongFile(Directory &directory,
std::string_view name, std::string_view suffix,
2018-01-21 11:22:17 +01:00
const StorageFileInfo &info) noexcept;
bool UpdateContainerFile(Directory &directory,
std::string_view name, std::string_view suffix,
2018-01-21 11:22:17 +01:00
const StorageFileInfo &info) noexcept;
#ifdef ENABLE_ARCHIVE
void UpdateArchiveTree(ArchiveFile &archive, Directory &parent,
std::string_view name) noexcept;
bool UpdateArchiveFile(Directory &directory,
std::string_view name, std::string_view suffix,
2018-01-21 11:22:17 +01:00
const StorageFileInfo &info) noexcept;
void UpdateArchiveFile(Directory &directory, std::string_view name,
const StorageFileInfo &info,
2018-01-21 11:22:17 +01:00
const ArchivePlugin &plugin) noexcept;
#else
bool UpdateArchiveFile([[maybe_unused]] Directory &directory,
[[maybe_unused]] std::string_view name,
[[maybe_unused]] std::string_view suffix,
[[maybe_unused]] const StorageFileInfo &info) noexcept {
return false;
}
#endif
void UpdatePlaylistFile(Directory &directory,
SongEnumerator &contents) noexcept;
void UpdatePlaylistFile(Directory &parent, std::string_view name,
const StorageFileInfo &info,
const PlaylistPlugin &plugin) noexcept;
bool UpdatePlaylistFile(Directory &directory,
std::string_view name, std::string_view suffix,
2018-01-21 11:22:17 +01:00
const StorageFileInfo &info) noexcept;
bool UpdateRegularFile(Directory &directory,
2018-01-21 11:22:17 +01:00
const char *name, const StorageFileInfo &info) noexcept;
void UpdateDirectoryChild(Directory &directory,
const ExcludeList &exclude_list,
const char *name,
2018-01-21 11:22:17 +01:00
const StorageFileInfo &info) noexcept;
bool UpdateDirectory(Directory &directory,
const ExcludeList &exclude_list,
2018-01-21 11:22:17 +01:00
const StorageFileInfo &info) noexcept;
/**
* 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
* modified since the last update. Returns nullptr when it
* exists already and is unmodified.
*
* The caller must lock the database.
*
* @param virtual_device one of the DEVICE_* constants
* specifying the kind of virtual directory
*/
Directory *MakeVirtualDirectoryIfModified(Directory &parent,
std::string_view name,
const StorageFileInfo &info,
unsigned virtual_device) noexcept;
Directory *LockMakeVirtualDirectoryIfModified(Directory &parent,
std::string_view name,
const StorageFileInfo &info,
unsigned virtual_device) noexcept;
Directory *DirectoryMakeChildChecked(Directory &parent,
const char *uri_utf8,
std::string_view name_utf8) noexcept;
Directory *DirectoryMakeUriParentChecked(Directory &root,
std::string_view uri) noexcept;
2018-01-21 11:22:17 +01:00
void UpdateUri(Directory &root, const char *uri) noexcept;
};
#endif