2013-01-29 22:40:11 +01:00
|
|
|
/*
|
2021-01-01 19:54:25 +01:00
|
|
|
* Copyright 2003-2021 The Music Player Daemon Project
|
2013-01-29 22:40:11 +01: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"
|
2013-09-05 18:22:02 +02:00
|
|
|
#include "tag/Tag.hxx"
|
2022-02-14 16:36:55 +01:00
|
|
|
#include "ConfigGlue.hxx"
|
2017-02-10 22:14:07 +01:00
|
|
|
#include "event/Thread.hxx"
|
2014-01-24 16:18:21 +01:00
|
|
|
#include "input/Init.hxx"
|
2014-01-24 00:09:37 +01:00
|
|
|
#include "archive/ArchiveList.hxx"
|
|
|
|
#include "archive/ArchivePlugin.hxx"
|
|
|
|
#include "archive/ArchiveFile.hxx"
|
|
|
|
#include "archive/ArchiveVisitor.hxx"
|
2013-01-29 22:40:11 +01:00
|
|
|
#include "fs/Path.hxx"
|
2018-07-17 21:56:43 +02:00
|
|
|
#include "util/PrintException.hxx"
|
2016-09-05 12:05:54 +02:00
|
|
|
|
|
|
|
#include <stdexcept>
|
2013-01-29 22:40:11 +01:00
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
2016-07-02 14:19:47 +02:00
|
|
|
#include <stdio.h>
|
2013-01-29 22:40:11 +01:00
|
|
|
|
2017-01-03 12:22:14 +01:00
|
|
|
class GlobalInit {
|
2022-02-14 16:36:55 +01:00
|
|
|
const ConfigData config;
|
|
|
|
|
2017-02-10 22:14:07 +01:00
|
|
|
EventThread io_thread;
|
2017-01-03 12:22:14 +01:00
|
|
|
|
2019-02-05 21:40:07 +01:00
|
|
|
#ifdef ENABLE_ARCHIVE
|
|
|
|
const ScopeArchivePluginsInit archive_plugins_init;
|
|
|
|
#endif
|
|
|
|
|
2022-02-14 16:36:55 +01:00
|
|
|
const ScopeInputPluginsInit input_plugins_init{config, io_thread.GetEventLoop()};
|
2019-02-05 21:50:31 +01:00
|
|
|
|
2017-01-03 12:22:14 +01:00
|
|
|
public:
|
2022-02-14 16:36:55 +01:00
|
|
|
explicit GlobalInit(Path config_path)
|
|
|
|
:config(AutoLoadConfigFile(config_path))
|
2019-02-05 21:50:31 +01:00
|
|
|
{
|
2017-02-10 22:14:07 +01:00
|
|
|
io_thread.Start();
|
2017-01-03 12:22:14 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-01-29 22:40:11 +01:00
|
|
|
class MyArchiveVisitor final : public ArchiveVisitor {
|
2017-01-03 12:22:14 +01:00
|
|
|
public:
|
2020-02-01 04:37:53 +01:00
|
|
|
void VisitArchiveEntry(const char *path_utf8) override {
|
2013-01-29 22:40:11 +01:00
|
|
|
printf("%s\n", path_utf8);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
2016-09-05 12:05:54 +02:00
|
|
|
try {
|
2013-01-29 22:40:11 +01:00
|
|
|
if (argc != 3) {
|
|
|
|
fprintf(stderr, "Usage: visit_archive PLUGIN PATH\n");
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *plugin_name = argv[1];
|
|
|
|
const Path path = Path::FromFS(argv[2]);
|
|
|
|
|
|
|
|
/* initialize MPD */
|
|
|
|
|
2022-02-14 16:36:55 +01:00
|
|
|
const GlobalInit init{nullptr};
|
2013-01-29 22:40:11 +01:00
|
|
|
|
|
|
|
/* open the archive and dump it */
|
|
|
|
|
2014-02-08 13:22:13 +01:00
|
|
|
const ArchivePlugin *plugin = archive_plugin_from_name(plugin_name);
|
2013-01-29 22:40:11 +01:00
|
|
|
if (plugin == nullptr) {
|
|
|
|
fprintf(stderr, "No such plugin: %s\n", plugin_name);
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
int result = EXIT_SUCCESS;
|
|
|
|
|
2017-12-27 09:07:21 +01:00
|
|
|
auto file = archive_file_open(plugin, path);
|
2016-09-09 18:34:55 +02:00
|
|
|
|
|
|
|
MyArchiveVisitor visitor;
|
|
|
|
file->Visit(visitor);
|
2013-01-29 22:40:11 +01:00
|
|
|
|
|
|
|
return result;
|
2018-07-17 21:56:43 +02:00
|
|
|
} catch (...) {
|
|
|
|
PrintException(std::current_exception());
|
2016-09-05 12:05:54 +02:00
|
|
|
return EXIT_FAILURE;
|
2013-01-29 22:40:11 +01:00
|
|
|
}
|