2009-04-13 19:18:10 +02:00
|
|
|
/*
|
2013-01-02 19:52:57 +01:00
|
|
|
* Copyright (C) 2003-2013 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.
|
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#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"
|
2013-09-05 08:47:10 +02:00
|
|
|
#include "ConfigGlobal.hxx"
|
2013-01-24 19:14:40 +01:00
|
|
|
#include "InputStream.hxx"
|
2013-01-10 10:15:09 +01:00
|
|
|
#include "InputInit.hxx"
|
2013-01-10 10:33:20 +01:00
|
|
|
#include "IOThread.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2013-01-02 19:52:57 +01:00
|
|
|
|
2009-12-15 19:07:20 +01:00
|
|
|
#ifdef ENABLE_ARCHIVE
|
2013-01-24 19:18:58 +01:00
|
|
|
#include "ArchiveList.hxx"
|
2009-12-15 19:07:20 +01:00
|
|
|
#endif
|
|
|
|
|
2009-04-13 19:18:10 +02:00
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
2011-08-24 03:23:12 +02:00
|
|
|
#include <stdlib.h>
|
2009-04-13 19:18:10 +02:00
|
|
|
|
|
|
|
static void
|
2013-08-04 23:48:01 +02:00
|
|
|
my_log_func(const gchar *log_domain, gcc_unused GLogLevelFlags log_level,
|
|
|
|
const gchar *message, gcc_unused gpointer user_data)
|
2009-04-13 19:18:10 +02:00
|
|
|
{
|
|
|
|
if (log_domain != NULL)
|
|
|
|
g_printerr("%s: %s\n", log_domain, message);
|
|
|
|
else
|
|
|
|
g_printerr("%s\n", message);
|
|
|
|
}
|
|
|
|
|
2009-12-15 19:36:22 +01:00
|
|
|
static int
|
|
|
|
dump_input_stream(struct input_stream *is)
|
2009-04-13 19:18:10 +02:00
|
|
|
{
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
2009-04-13 19:18:10 +02:00
|
|
|
char buffer[4096];
|
|
|
|
size_t num_read;
|
|
|
|
ssize_t num_written;
|
|
|
|
|
2013-09-05 00:06:31 +02:00
|
|
|
is->Lock();
|
2011-09-14 21:46:41 +02:00
|
|
|
|
2009-12-15 19:36:22 +01:00
|
|
|
/* wait until the stream becomes ready */
|
2009-04-13 19:18:10 +02:00
|
|
|
|
2013-09-05 00:06:31 +02:00
|
|
|
is->WaitReady();
|
2009-04-13 19:18:10 +02:00
|
|
|
|
2013-09-05 00:06:31 +02:00
|
|
|
if (!is->Check(error)) {
|
2013-08-10 18:02:44 +02:00
|
|
|
g_warning("%s", error.GetMessage());
|
2013-09-05 00:06:31 +02:00
|
|
|
is->Unlock();
|
2011-09-14 21:46:41 +02:00
|
|
|
return EXIT_FAILURE;
|
2009-04-13 19:18:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* print meta data */
|
|
|
|
|
2013-01-28 23:41:45 +01:00
|
|
|
if (!is->mime.empty())
|
|
|
|
g_printerr("MIME type: %s\n", is->mime.c_str());
|
2009-04-13 19:18:10 +02:00
|
|
|
|
|
|
|
/* read data and tags from the stream */
|
|
|
|
|
2013-09-05 00:06:31 +02:00
|
|
|
while (!is->IsEOF()) {
|
|
|
|
Tag *tag = is->ReadTag();
|
2009-04-13 19:18:10 +02:00
|
|
|
if (tag != NULL) {
|
|
|
|
g_printerr("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
|
|
|
}
|
|
|
|
|
2013-09-05 00:06:31 +02:00
|
|
|
num_read = is->Read(buffer, sizeof(buffer), error);
|
2009-11-14 23:53:04 +01:00
|
|
|
if (num_read == 0) {
|
2013-08-10 18:02:44 +02:00
|
|
|
if (error.IsDefined())
|
|
|
|
g_warning("%s", error.GetMessage());
|
2009-11-14 23:53:04 +01:00
|
|
|
|
2009-04-13 19:18:10 +02:00
|
|
|
break;
|
2009-11-14 23:53:04 +01:00
|
|
|
}
|
2009-04-13 19:18:10 +02:00
|
|
|
|
|
|
|
num_written = write(1, buffer, num_read);
|
|
|
|
if (num_written <= 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-09-05 00:06:31 +02:00
|
|
|
if (!is->Check(error)) {
|
2013-08-10 18:02:44 +02:00
|
|
|
g_warning("%s", error.GetMessage());
|
2013-09-05 00:06:31 +02:00
|
|
|
is->Unlock();
|
2011-09-16 21:06:12 +02:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2013-09-05 00:06:31 +02:00
|
|
|
is->Unlock();
|
2011-09-14 21:46:41 +02:00
|
|
|
|
2009-12-15 19:36:22 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
2009-12-30 23:27:37 +01:00
|
|
|
struct input_stream *is;
|
2009-12-15 19:36:22 +01:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (argc != 2) {
|
|
|
|
g_printerr("Usage: run_input URI\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* initialize GLib */
|
|
|
|
|
2013-04-17 01:53:10 +02:00
|
|
|
#if !GLIB_CHECK_VERSION(2,32,0)
|
2009-12-15 19:36:22 +01:00
|
|
|
g_thread_init(NULL);
|
2013-04-17 01:53:10 +02:00
|
|
|
#endif
|
|
|
|
|
2009-12-15 19:36:22 +01:00
|
|
|
g_log_set_default_handler(my_log_func, NULL);
|
|
|
|
|
|
|
|
/* initialize MPD */
|
|
|
|
|
|
|
|
config_global_init();
|
|
|
|
|
2011-08-24 03:23:12 +02:00
|
|
|
io_thread_init();
|
2013-09-03 11:28:47 +02:00
|
|
|
io_thread_start();
|
2011-08-24 03:23:12 +02:00
|
|
|
|
2009-12-15 19:36:22 +01:00
|
|
|
#ifdef ENABLE_ARCHIVE
|
|
|
|
archive_plugin_init_all();
|
|
|
|
#endif
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!input_stream_global_init(error)) {
|
|
|
|
g_warning("%s", error.GetMessage());
|
2009-12-15 20:26:38 +01:00
|
|
|
return 2;
|
|
|
|
}
|
2009-12-15 19:36:22 +01:00
|
|
|
|
|
|
|
/* open the stream and dump it */
|
|
|
|
|
2013-01-27 17:20:50 +01:00
|
|
|
Mutex mutex;
|
|
|
|
Cond cond;
|
2011-09-14 21:46:41 +02:00
|
|
|
|
2013-09-05 00:06:31 +02:00
|
|
|
is = input_stream::Open(argv[1], mutex, cond, error);
|
2009-12-30 23:27:37 +01:00
|
|
|
if (is != NULL) {
|
|
|
|
ret = dump_input_stream(is);
|
2013-09-05 00:06:31 +02:00
|
|
|
is->Close();
|
2009-12-15 19:36:22 +01:00
|
|
|
} else {
|
2013-08-10 18:02:44 +02:00
|
|
|
if (error.IsDefined())
|
|
|
|
g_warning("%s", error.GetMessage());
|
|
|
|
else
|
2013-09-05 00:06:31 +02:00
|
|
|
g_printerr("input_stream::Open() failed\n");
|
2009-12-15 19:36:22 +01:00
|
|
|
ret = 2;
|
|
|
|
}
|
|
|
|
|
2009-04-13 19:18:10 +02:00
|
|
|
/* deinitialize everything */
|
|
|
|
|
|
|
|
input_stream_global_finish();
|
2009-12-15 19:07:20 +01:00
|
|
|
|
|
|
|
#ifdef ENABLE_ARCHIVE
|
|
|
|
archive_plugin_deinit_all();
|
|
|
|
#endif
|
|
|
|
|
2011-08-24 03:23:12 +02:00
|
|
|
io_thread_deinit();
|
|
|
|
|
2009-04-13 19:18:10 +02:00
|
|
|
config_global_finish();
|
|
|
|
|
2009-12-15 19:36:22 +01:00
|
|
|
return ret;
|
2009-04-13 19:18:10 +02:00
|
|
|
}
|