mpd/test/visit_archive.cxx

99 lines
2.4 KiB
C++
Raw Normal View History

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"
#include "ConfigGlue.hxx"
#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"
#include <stdexcept>
2013-01-29 22:40:11 +01:00
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
2013-01-29 22:40:11 +01:00
class GlobalInit {
const ConfigData config;
EventThread io_thread;
2019-02-05 21:40:07 +01:00
#ifdef ENABLE_ARCHIVE
const ScopeArchivePluginsInit archive_plugins_init;
#endif
const ScopeInputPluginsInit input_plugins_init{config, io_thread.GetEventLoop()};
2019-02-05 21:50:31 +01:00
public:
explicit GlobalInit(Path config_path)
:config(AutoLoadConfigFile(config_path))
2019-02-05 21:50:31 +01:00
{
io_thread.Start();
}
};
2013-01-29 22:40:11 +01:00
class MyArchiveVisitor final : public ArchiveVisitor {
public:
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)
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 */
const GlobalInit init{nullptr};
2013-01-29 22:40:11 +01:00
/* open the archive and dump it */
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;
auto file = archive_file_open(plugin, path);
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());
return EXIT_FAILURE;
2013-01-29 22:40:11 +01:00
}