mpd/test/run_input.cxx

158 lines
3.0 KiB
C++
Raw Normal View History

2009-04-13 19:18:10 +02:00
/*
2014-01-13 22:30:36 +01:00
* Copyright (C) 2003-2014 The Music Player Daemon Project
2009-04-13 19:18:10 +02: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-01-02 19:52:57 +01:00
#include "TagSave.hxx"
#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"
#include "InputStream.hxx"
#include "InputInit.hxx"
2013-01-10 10:33:20 +01:00
#include "IOThread.hxx"
#include "util/Error.hxx"
#include "thread/Cond.hxx"
#include "Log.hxx"
2013-01-02 19:52:57 +01:00
#ifdef ENABLE_ARCHIVE
2014-01-24 00:09:37 +01:00
#include "archive/ArchiveList.hxx"
#endif
#ifdef HAVE_GLIB
2009-04-13 19:18:10 +02:00
#include <glib.h>
#endif
2009-04-13 19:18:10 +02:00
#include <unistd.h>
#include <stdlib.h>
2009-04-13 19:18:10 +02:00
static int
dump_input_stream(InputStream *is)
2009-04-13 19:18:10 +02:00
{
Error error;
2009-04-13 19:18:10 +02:00
char buffer[4096];
size_t num_read;
ssize_t num_written;
is->Lock();
2009-04-13 19:18:10 +02:00
/* print meta data */
2013-01-28 23:41:45 +01:00
if (!is->mime.empty())
fprintf(stderr, "MIME type: %s\n", is->mime.c_str());
2009-04-13 19:18:10 +02:00
/* read data and tags from the stream */
while (!is->IsEOF()) {
Tag *tag = is->ReadTag();
2009-04-13 19:18:10 +02:00
if (tag != NULL) {
fprintf(stderr, "Received a tag:\n");
2013-07-30 20:11:57 +02:00
tag_save(stderr, *tag);
delete tag;
2009-04-13 19:18:10 +02:00
}
num_read = is->Read(buffer, sizeof(buffer), error);
if (num_read == 0) {
if (error.IsDefined())
LogError(error);
2009-04-13 19:18:10 +02:00
break;
}
2009-04-13 19:18:10 +02:00
num_written = write(1, buffer, num_read);
if (num_written <= 0)
break;
}
if (!is->Check(error)) {
LogError(error);
is->Unlock();
return EXIT_FAILURE;
}
is->Unlock();
return 0;
}
int main(int argc, char **argv)
{
Error error;
InputStream *is;
int ret;
if (argc != 2) {
fprintf(stderr, "Usage: run_input URI\n");
return EXIT_FAILURE;
}
/* initialize GLib */
#ifdef HAVE_GLIB
#if !GLIB_CHECK_VERSION(2,32,0)
g_thread_init(NULL);
#endif
#endif
/* initialize MPD */
config_global_init();
io_thread_init();
io_thread_start();
#ifdef ENABLE_ARCHIVE
archive_plugin_init_all();
#endif
if (!input_stream_global_init(error)) {
LogError(error);
return 2;
}
/* open the stream and dump it */
Mutex mutex;
Cond cond;
is = InputStream::OpenReady(argv[1], mutex, cond, error);
if (is != NULL) {
ret = dump_input_stream(is);
is->Close();
} else {
if (error.IsDefined())
LogError(error);
else
fprintf(stderr, "input_stream::Open() failed\n");
ret = EXIT_FAILURE;
}
2009-04-13 19:18:10 +02:00
/* deinitialize everything */
input_stream_global_finish();
#ifdef ENABLE_ARCHIVE
archive_plugin_deinit_all();
#endif
io_thread_deinit();
2009-04-13 19:18:10 +02:00
config_global_finish();
return ret;
2009-04-13 19:18:10 +02:00
}