2012-08-07 20:08:50 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003-2012 The Music Player Daemon Project
|
|
|
|
* 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"
|
|
|
|
#include "DatabaseRegistry.hxx"
|
|
|
|
#include "DatabasePlugin.hxx"
|
2012-08-07 23:06:41 +02:00
|
|
|
#include "DatabaseSelection.hxx"
|
2013-01-02 22:52:08 +01:00
|
|
|
#include "Directory.hxx"
|
2013-07-28 13:25:12 +02:00
|
|
|
#include "Song.hxx"
|
2013-01-02 20:25:20 +01:00
|
|
|
#include "PlaylistVector.hxx"
|
2013-09-05 08:47:10 +02:00
|
|
|
#include "ConfigGlobal.hxx"
|
|
|
|
#include "ConfigData.hxx"
|
2013-09-05 18:23:15 +02:00
|
|
|
#include "tag/TagConfig.hxx"
|
2013-01-29 17:23:35 +01:00
|
|
|
#include "fs/Path.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2012-08-07 20:08:50 +02:00
|
|
|
|
2013-10-02 08:11:58 +02:00
|
|
|
#include <glib.h>
|
|
|
|
|
2012-08-07 20:08:50 +02:00
|
|
|
#include <iostream>
|
|
|
|
using std::cout;
|
|
|
|
using std::cerr;
|
|
|
|
using std::endl;
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
static bool
|
2013-08-10 18:02:44 +02:00
|
|
|
DumpDirectory(const Directory &directory, Error &)
|
2012-08-07 20:08:50 +02:00
|
|
|
{
|
2012-08-07 21:32:08 +02:00
|
|
|
cout << "D " << directory.path << endl;
|
2012-08-07 20:08:50 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2013-08-10 18:02:44 +02:00
|
|
|
DumpSong(Song &song, Error &)
|
2012-08-07 20:08:50 +02:00
|
|
|
{
|
2014-01-07 21:39:47 +01:00
|
|
|
cout << "S ";
|
|
|
|
if (song.parent != nullptr && !song.parent->IsRoot())
|
|
|
|
cout << song.parent->path << "/";
|
|
|
|
cout << song.uri << endl;
|
2012-08-07 20:08:50 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2013-01-02 22:04:03 +01:00
|
|
|
DumpPlaylist(const PlaylistInfo &playlist,
|
2013-08-10 18:02:44 +02:00
|
|
|
const Directory &directory, Error &)
|
2012-08-07 20:08:50 +02:00
|
|
|
{
|
2013-01-02 22:04:03 +01:00
|
|
|
cout << "P " << directory.path << "/" << playlist.name.c_str() << endl;
|
2012-08-07 20:08:50 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
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 GLib */
|
|
|
|
|
2013-04-17 01:53:10 +02:00
|
|
|
#if !GLIB_CHECK_VERSION(2,32,0)
|
2012-08-07 20:08:50 +02:00
|
|
|
g_thread_init(nullptr);
|
2013-04-17 01:53:10 +02:00
|
|
|
#endif
|
|
|
|
|
2012-08-07 20:08:50 +02:00
|
|
|
/* initialize MPD */
|
|
|
|
|
|
|
|
config_global_init();
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
|
|
|
if (!ReadConfigFile(config_path, error)) {
|
|
|
|
cerr << error.GetMessage() << endl;
|
2012-08-07 20:08:50 +02:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2013-09-05 18:23:15 +02:00
|
|
|
TagLoadConfig();
|
2012-08-07 20:08:50 +02:00
|
|
|
|
|
|
|
/* do it */
|
|
|
|
|
|
|
|
const struct config_param *path = config_get_param(CONF_DB_FILE);
|
2014-01-09 09:05:54 +01:00
|
|
|
config_param param("database", path != nullptr ? path->line : -1);
|
2012-08-07 20:08:50 +02:00
|
|
|
if (path != nullptr)
|
2013-10-15 22:32:39 +02:00
|
|
|
param.AddBlockParam("path", path->value.c_str(), path->line);
|
2012-08-07 20:08:50 +02:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
Database *db = plugin->create(param, error);
|
2012-08-07 20:08:50 +02:00
|
|
|
|
|
|
|
if (db == nullptr) {
|
2013-08-10 18:02:44 +02:00
|
|
|
cerr << error.GetMessage() << endl;
|
2012-08-07 20:08:50 +02:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!db->Open(error)) {
|
2012-08-07 20:08:50 +02:00
|
|
|
delete db;
|
2013-08-10 18:02:44 +02:00
|
|
|
cerr << error.GetMessage() << endl;
|
2012-08-07 20:08:50 +02:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2012-08-07 23:06:41 +02:00
|
|
|
const DatabaseSelection selection("", true);
|
2012-08-07 20:08:50 +02:00
|
|
|
|
2012-08-07 21:32:08 +02:00
|
|
|
if (!db->Visit(selection, DumpDirectory, DumpSong, DumpPlaylist,
|
2013-08-10 18:02:44 +02:00
|
|
|
error)) {
|
2012-08-07 20:08:50 +02:00
|
|
|
db->Close();
|
|
|
|
delete db;
|
2013-08-10 18:02:44 +02:00
|
|
|
cerr << error.GetMessage() << endl;
|
2012-08-07 20:08:50 +02:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
db->Close();
|
|
|
|
delete db;
|
|
|
|
|
|
|
|
/* deinitialize everything */
|
|
|
|
|
|
|
|
config_global_finish();
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|