mpd/test/DumpDatabase.cxx

125 lines
2.4 KiB
C++
Raw Permalink Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
2012-08-07 20:08:50 +02:00
#include "config.h"
2014-01-24 16:18:50 +01:00
#include "db/Registry.hxx"
#include "db/Configured.hxx"
2014-02-19 22:54:52 +01:00
#include "db/Interface.hxx"
2014-01-24 16:18:50 +01:00
#include "db/Selection.hxx"
#include "db/DatabaseListener.hxx"
#include "db/LightDirectory.hxx"
#include "song/LightSong.hxx"
2014-01-27 11:05:21 +01:00
#include "db/PlaylistVector.hxx"
#include "ConfigGlue.hxx"
2017-02-08 08:26:58 +01:00
#include "tag/Config.hxx"
#include "fs/Path.hxx"
#include "fs/NarrowPath.hxx"
#include "event/Thread.hxx"
2016-03-18 22:53:16 +01:00
#include "util/ScopeExit.hxx"
2018-07-17 21:56:43 +02:00
#include "util/PrintException.hxx"
2012-08-07 20:08:50 +02:00
2024-01-04 15:29:36 +01:00
#include <fmt/core.h>
#include <stdexcept>
2012-08-07 20:08:50 +02:00
#include <stdlib.h>
class GlobalInit {
EventThread io_thread;
public:
GlobalInit() {
io_thread.Start();
}
2020-02-01 13:47:16 +01:00
~GlobalInit() = default;
EventLoop &GetEventLoop() {
return io_thread.GetEventLoop();
}
};
#ifdef ENABLE_UPNP
2014-01-24 16:18:21 +01:00
#include "input/InputStream.hxx"
size_t
InputStream::LockRead(std::span<std::byte>)
{
return 0;
}
#endif
class MyDatabaseListener final : public DatabaseListener {
public:
void OnDatabaseModified() noexcept override {
2024-01-04 15:29:36 +01:00
fmt::print("DatabaseModified\n");
}
void OnDatabaseSongRemoved(const char *uri) noexcept override {
2024-04-16 11:06:34 +02:00
fmt::print("SongRemoved {:?}\n", uri);
}
};
static void
DumpDirectory(const LightDirectory &directory)
2012-08-07 20:08:50 +02:00
{
2024-01-04 15:29:36 +01:00
fmt::print("D {}\n", directory.GetPath());
2012-08-07 20:08:50 +02:00
}
static void
DumpSong(const LightSong &song)
2012-08-07 20:08:50 +02:00
{
if (song.directory != nullptr)
2024-01-04 15:29:36 +01:00
fmt::print("S {}/{}\n", song.directory, song.uri);
else
fmt::print("S {}\n", song.uri);
2012-08-07 20:08:50 +02:00
}
static void
DumpPlaylist(const PlaylistInfo &playlist, const LightDirectory &directory)
2012-08-07 20:08:50 +02:00
{
2024-01-04 15:29:36 +01:00
fmt::print("P {}/{}\n", directory.GetPath(), playlist.name);
2012-08-07 20:08:50 +02:00
}
int
main(int argc, char **argv)
try {
2024-01-04 15:37:09 +01:00
if (argc < 2 || argc > 3) {
fmt::print(stderr, "Usage: DumpDatabase CONFIG [URI]\n");
2024-01-04 15:29:36 +01:00
return EXIT_FAILURE;
2012-08-07 20:08:50 +02:00
}
const FromNarrowPath config_path = argv[1];
2012-08-07 20:08:50 +02:00
2024-01-04 15:37:09 +01:00
const char *uri = argc >= 3 ? argv[2] : "";
2012-08-07 20:08:50 +02:00
/* initialize MPD */
GlobalInit init;
2012-08-07 20:08:50 +02:00
const auto config = AutoLoadConfigFile(config_path);
TagLoadConfig(config);
2012-08-07 20:08:50 +02:00
MyDatabaseListener database_listener;
2012-08-07 20:08:50 +02:00
/* do it */
auto db = CreateConfiguredDatabase(config,
init.GetEventLoop(),
init.GetEventLoop(),
database_listener);
2016-03-18 22:53:16 +01:00
db->Open();
2012-08-07 20:08:50 +02:00
AtScopeExit(&db) { db->Close(); };
2016-03-18 22:53:16 +01:00
2024-01-04 15:37:09 +01:00
const DatabaseSelection selection(uri, true);
2012-08-07 20:08:50 +02:00
db->Visit(selection, DumpDirectory, DumpSong, DumpPlaylist);
2012-08-07 20:08:50 +02:00
return EXIT_SUCCESS;
2018-07-17 21:56:43 +02:00
} catch (...) {
PrintException(std::current_exception());
return EXIT_FAILURE;
2018-07-17 21:56:43 +02:00
}