2023-03-06 14:42:04 +01:00
|
|
|
// 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"
|
2024-01-04 15:28:40 +01:00
|
|
|
#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"
|
2018-08-02 13:45:43 +02:00
|
|
|
#include "song/LightSong.hxx"
|
2014-01-27 11:05:21 +01:00
|
|
|
#include "db/PlaylistVector.hxx"
|
2019-02-05 21:56:20 +01:00
|
|
|
#include "ConfigGlue.hxx"
|
2017-02-08 08:26:58 +01:00
|
|
|
#include "tag/Config.hxx"
|
2013-01-29 17:23:35 +01:00
|
|
|
#include "fs/Path.hxx"
|
2020-04-02 16:40:18 +02:00
|
|
|
#include "fs/NarrowPath.hxx"
|
2017-08-18 14:20:03 +02:00
|
|
|
#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>
|
|
|
|
|
2016-09-09 18:47:42 +02:00
|
|
|
#include <stdexcept>
|
2012-08-07 20:08:50 +02:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2017-08-18 14:19:03 +02:00
|
|
|
class GlobalInit {
|
2017-08-18 14:20:03 +02:00
|
|
|
EventThread io_thread;
|
|
|
|
|
2017-08-18 14:19:03 +02:00
|
|
|
public:
|
|
|
|
GlobalInit() {
|
2017-08-18 14:20:03 +02:00
|
|
|
io_thread.Start();
|
2017-08-18 14:19:03 +02:00
|
|
|
}
|
|
|
|
|
2020-02-01 13:47:16 +01:00
|
|
|
~GlobalInit() = default;
|
2017-08-18 14:20:03 +02:00
|
|
|
|
|
|
|
EventLoop &GetEventLoop() {
|
|
|
|
return io_thread.GetEventLoop();
|
|
|
|
}
|
2017-08-18 14:19:03 +02:00
|
|
|
};
|
|
|
|
|
2014-11-21 22:19:57 +01:00
|
|
|
#ifdef ENABLE_UPNP
|
2014-01-24 16:18:21 +01:00
|
|
|
#include "input/InputStream.hxx"
|
2013-11-01 19:26:01 +01:00
|
|
|
size_t
|
2016-09-09 18:47:42 +02:00
|
|
|
InputStream::LockRead(void *, size_t)
|
2013-11-01 19:26:01 +01:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-01-11 01:01:54 +01:00
|
|
|
class MyDatabaseListener final : public DatabaseListener {
|
|
|
|
public:
|
2020-02-01 04:37:53 +01:00
|
|
|
void OnDatabaseModified() noexcept override {
|
2024-01-04 15:29:36 +01:00
|
|
|
fmt::print("DatabaseModified\n");
|
2014-01-11 01:01:54 +01:00
|
|
|
}
|
2014-02-04 19:16:30 +01:00
|
|
|
|
2020-02-01 04:37:53 +01:00
|
|
|
void OnDatabaseSongRemoved(const char *uri) noexcept override {
|
2024-01-04 15:29:36 +01:00
|
|
|
fmt::print("SongRemoved '{}'\n", uri);
|
2014-02-04 19:16:30 +01:00
|
|
|
}
|
2014-01-11 01:01:54 +01:00
|
|
|
};
|
|
|
|
|
2016-10-29 10:04:43 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-10-29 10:04:43 +02:00
|
|
|
static void
|
|
|
|
DumpSong(const LightSong &song)
|
2012-08-07 20:08:50 +02:00
|
|
|
{
|
2014-01-19 10:51:34 +01: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
|
|
|
}
|
|
|
|
|
2016-10-29 10:04:43 +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)
|
2015-12-16 11:12:30 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-04-02 16:40:18 +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 */
|
|
|
|
|
2017-08-18 14:19:03 +02:00
|
|
|
GlobalInit init;
|
2012-08-07 20:08:50 +02:00
|
|
|
|
2019-02-05 21:56:20 +01:00
|
|
|
const auto config = AutoLoadConfigFile(config_path);
|
2018-07-17 23:41:37 +02:00
|
|
|
|
|
|
|
TagLoadConfig(config);
|
2012-08-07 20:08:50 +02:00
|
|
|
|
2014-01-11 01:01:54 +01:00
|
|
|
MyDatabaseListener database_listener;
|
|
|
|
|
2012-08-07 20:08:50 +02:00
|
|
|
/* do it */
|
|
|
|
|
2024-01-04 15:28:40 +01:00
|
|
|
auto db = CreateConfiguredDatabase(config,
|
|
|
|
init.GetEventLoop(),
|
|
|
|
init.GetEventLoop(),
|
|
|
|
database_listener);
|
2016-03-18 22:53:16 +01:00
|
|
|
|
2016-03-18 22:17:46 +01:00
|
|
|
db->Open();
|
2012-08-07 20:08:50 +02:00
|
|
|
|
2019-02-20 20:32:11 +01: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
|
|
|
|
2016-10-29 10:21:57 +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());
|
2015-12-16 11:12:30 +01:00
|
|
|
return EXIT_FAILURE;
|
2018-07-17 21:56:43 +02:00
|
|
|
}
|