2013-01-29 22:40:11 +01:00
|
|
|
/*
|
2018-10-31 17:54:59 +01:00
|
|
|
* Copyright 2003-2018 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"
|
2018-07-17 21:49:27 +02:00
|
|
|
#include "config/Data.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 {
|
2017-02-10 22:14:07 +01:00
|
|
|
EventThread io_thread;
|
2017-01-03 12:22:14 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
GlobalInit() {
|
2017-02-10 22:14:07 +01:00
|
|
|
io_thread.Start();
|
2017-01-03 12:22:14 +01:00
|
|
|
#ifdef ENABLE_ARCHIVE
|
|
|
|
archive_plugin_init_all();
|
|
|
|
#endif
|
2018-07-17 21:49:27 +02:00
|
|
|
input_stream_global_init(ConfigData(),
|
|
|
|
io_thread.GetEventLoop());
|
2017-01-03 12:22:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
~GlobalInit() {
|
|
|
|
input_stream_global_finish();
|
|
|
|
#ifdef ENABLE_ARCHIVE
|
|
|
|
archive_plugin_deinit_all();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-01-29 22:40:11 +01:00
|
|
|
class MyArchiveVisitor final : public ArchiveVisitor {
|
2017-01-03 12:22:14 +01:00
|
|
|
public:
|
2013-01-29 22:40:11 +01:00
|
|
|
virtual void VisitArchiveEntry(const char *path_utf8) override {
|
|
|
|
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 */
|
|
|
|
|
2017-01-03 12:22:14 +01:00
|
|
|
const GlobalInit init;
|
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
|
|
|
}
|