2012-08-07 20:08:50 +02:00
|
|
|
/*
|
2019-02-05 21:56:20 +01:00
|
|
|
* Copyright 2003-2019 The Music Player Daemon Project
|
2012-08-07 20:08:50 +02:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2014-01-24 16:18:50 +01:00
|
|
|
#include "db/Registry.hxx"
|
|
|
|
#include "db/DatabasePlugin.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"
|
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
|
|
|
|
2016-09-09 18:47:42 +02:00
|
|
|
#include <stdexcept>
|
2012-08-07 20:08:50 +02:00
|
|
|
#include <iostream>
|
|
|
|
using std::cout;
|
|
|
|
using std::cerr;
|
|
|
|
using std::endl;
|
|
|
|
|
|
|
|
#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
|
|
|
}
|
|
|
|
|
|
|
|
~GlobalInit() {
|
|
|
|
}
|
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:
|
|
|
|
virtual void OnDatabaseModified() override {
|
|
|
|
cout << "DatabaseModified" << endl;
|
|
|
|
}
|
2014-02-04 19:16:30 +01:00
|
|
|
|
2016-03-18 16:18:41 +01:00
|
|
|
virtual void OnDatabaseSongRemoved(const char *uri) override {
|
|
|
|
cout << "SongRemoved " << uri << endl;
|
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
|
|
|
{
|
2014-01-22 22:40:42 +01:00
|
|
|
cout << "D " << directory.GetPath() << endl;
|
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-07 21:39:47 +01:00
|
|
|
cout << "S ";
|
2014-01-19 10:51:34 +01:00
|
|
|
if (song.directory != nullptr)
|
|
|
|
cout << song.directory << "/";
|
2014-01-07 21:39:47 +01:00
|
|
|
cout << song.uri << endl;
|
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
|
|
|
{
|
2014-01-22 22:40:42 +01:00
|
|
|
cout << "P " << directory.GetPath()
|
|
|
|
<< "/" << playlist.name.c_str() << endl;
|
2012-08-07 20:08:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
2015-12-16 11:12:30 +01:00
|
|
|
try {
|
2012-08-07 20:08:50 +02:00
|
|
|
if (argc != 3) {
|
|
|
|
cerr << "Usage: DumpDatabase CONFIG PLUGIN" << endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-01-29 17:23:35 +01:00
|
|
|
const Path config_path = Path::FromFS(argv[1]);
|
2012-08-07 20:08:50 +02:00
|
|
|
const char *const plugin_name = argv[2];
|
|
|
|
|
|
|
|
const DatabasePlugin *plugin = GetDatabasePluginByName(plugin_name);
|
|
|
|
if (plugin == NULL) {
|
|
|
|
cerr << "No such database plugin: " << plugin_name << endl;
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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 */
|
|
|
|
|
2018-07-17 23:41:37 +02:00
|
|
|
const auto *path = config.GetParam(ConfigOption::DB_FILE);
|
2015-01-21 22:13:44 +01:00
|
|
|
ConfigBlock block(path != nullptr ? path->line : -1);
|
2012-08-07 20:08:50 +02:00
|
|
|
if (path != nullptr)
|
2018-07-17 20:16:12 +02:00
|
|
|
block.AddBlockParam("path", path->value, path->line);
|
2012-08-07 20:08:50 +02:00
|
|
|
|
2017-08-18 14:20:03 +02:00
|
|
|
Database *db = plugin->create(init.GetEventLoop(),
|
2017-08-24 19:49:54 +02:00
|
|
|
init.GetEventLoop(),
|
2017-08-18 14:20:03 +02:00
|
|
|
database_listener, block);
|
2012-08-07 20:08:50 +02:00
|
|
|
|
2016-03-18 22:53:16 +01:00
|
|
|
AtScopeExit(db) { delete db; };
|
|
|
|
|
2016-03-18 22:17:46 +01:00
|
|
|
db->Open();
|
2012-08-07 20:08:50 +02:00
|
|
|
|
2016-03-18 22:53:16 +01:00
|
|
|
AtScopeExit(db) { db->Close(); };
|
|
|
|
|
2012-08-07 23:06:41 +02:00
|
|
|
const DatabaseSelection selection("", 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
|
|
|
}
|