mpd/test/visit_archive.cxx

110 lines
2.5 KiB
C++
Raw Normal View History

2013-01-29 22:40:11 +01:00
/*
2014-01-13 22:30:36 +01:00
* Copyright (C) 2003-2014 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"
#include "stdbin.h"
2013-09-05 18:22:02 +02:00
#include "tag/Tag.hxx"
2014-01-24 00:20:01 +01:00
#include "config/ConfigGlobal.hxx"
2013-01-29 22:40:11 +01:00
#include "IOThread.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"
#include "util/Error.hxx"
2013-01-29 22:40:11 +01:00
#include <glib.h>
#include <unistd.h>
#include <stdlib.h>
class MyArchiveVisitor final : public ArchiveVisitor {
public:
virtual void VisitArchiveEntry(const char *path_utf8) override {
printf("%s\n", path_utf8);
}
};
int
main(int argc, char **argv)
{
Error error;
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 GLib */
#if !GLIB_CHECK_VERSION(2,32,0)
2013-01-29 22:40:11 +01:00
g_thread_init(NULL);
#endif
2013-01-29 22:40:11 +01:00
/* initialize MPD */
config_global_init();
io_thread_init();
io_thread_start();
2013-01-29 22:40:11 +01:00
archive_plugin_init_all();
if (!input_stream_global_init(error)) {
fprintf(stderr, "%s", error.GetMessage());
2013-01-29 22:40:11 +01:00
return 2;
}
/* open the archive and dump it */
const archive_plugin *plugin = archive_plugin_from_name(plugin_name);
if (plugin == nullptr) {
fprintf(stderr, "No such plugin: %s\n", plugin_name);
return EXIT_FAILURE;
}
int result = EXIT_SUCCESS;
ArchiveFile *file = archive_file_open(plugin, path.c_str(), error);
2013-01-29 22:40:11 +01:00
if (file != nullptr) {
MyArchiveVisitor visitor;
file->Visit(visitor);
file->Close();
2013-01-29 22:40:11 +01:00
} else {
fprintf(stderr, "%s", error.GetMessage());
2013-01-29 22:40:11 +01:00
result = EXIT_FAILURE;
}
/* deinitialize everything */
input_stream_global_finish();
archive_plugin_deinit_all();
io_thread_deinit();
config_global_finish();
return result;
}