2012-03-19 19:59:30 +01:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 The Music Player Daemon Project
|
2012-03-19 19:59:30 +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-01-10 10:33:20 +01:00
|
|
|
#include "IOThread.hxx"
|
2013-01-10 10:15:09 +01:00
|
|
|
#include "InputInit.hxx"
|
2013-01-24 19:14:40 +01:00
|
|
|
#include "InputStream.hxx"
|
2013-09-05 08:47:10 +02:00
|
|
|
#include "ConfigGlobal.hxx"
|
2012-03-19 19:59:30 +01:00
|
|
|
#include "stdbin.h"
|
2013-05-12 16:02:27 +02:00
|
|
|
#include "TextInputStream.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2013-10-17 10:06:31 +02:00
|
|
|
#include "thread/Cond.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2013-01-10 10:15:09 +01:00
|
|
|
|
2012-03-19 19:59:30 +01:00
|
|
|
#ifdef ENABLE_ARCHIVE
|
2013-01-24 19:18:58 +01:00
|
|
|
#include "ArchiveList.hxx"
|
2012-03-19 19:59:30 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
static void
|
2013-05-12 16:02:27 +02:00
|
|
|
dump_text_file(TextInputStream &is)
|
2012-03-19 19:59:30 +01:00
|
|
|
{
|
2013-05-12 16:02:27 +02:00
|
|
|
std::string line;
|
|
|
|
while (is.ReadLine(line))
|
|
|
|
printf("'%s'\n", line.c_str());
|
2012-03-19 19:59:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2013-10-23 22:08:59 +02:00
|
|
|
dump_input_stream(InputStream &is)
|
2012-03-19 19:59:30 +01:00
|
|
|
{
|
2013-05-12 16:02:27 +02:00
|
|
|
{
|
|
|
|
TextInputStream tis(is);
|
|
|
|
dump_text_file(tis);
|
|
|
|
}
|
2012-03-19 19:59:30 +01:00
|
|
|
|
2013-10-23 22:08:59 +02:00
|
|
|
is.Lock();
|
2013-09-05 00:06:31 +02:00
|
|
|
|
2013-12-29 18:08:49 +01:00
|
|
|
Error error;
|
2013-10-23 22:08:59 +02:00
|
|
|
if (!is.Check(error)) {
|
2013-09-27 22:31:24 +02:00
|
|
|
LogError(error);
|
2013-10-23 22:08:59 +02:00
|
|
|
is.Unlock();
|
2012-03-19 19:59:30 +01:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2013-10-23 22:08:59 +02:00
|
|
|
is.Unlock();
|
2012-03-19 19:59:30 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (argc != 2) {
|
2013-12-24 14:44:08 +01:00
|
|
|
fprintf(stderr, "Usage: run_input URI\n");
|
|
|
|
return EXIT_FAILURE;
|
2012-03-19 19:59:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* initialize GLib */
|
|
|
|
|
2013-04-17 01:53:10 +02:00
|
|
|
#if !GLIB_CHECK_VERSION(2,32,0)
|
2012-03-19 19:59:30 +01:00
|
|
|
g_thread_init(NULL);
|
2013-04-17 01:53:10 +02:00
|
|
|
#endif
|
|
|
|
|
2012-03-19 19:59:30 +01:00
|
|
|
/* initialize MPD */
|
|
|
|
|
|
|
|
config_global_init();
|
|
|
|
|
|
|
|
io_thread_init();
|
2013-09-03 11:28:47 +02:00
|
|
|
io_thread_start();
|
2012-03-19 19:59:30 +01:00
|
|
|
|
|
|
|
#ifdef ENABLE_ARCHIVE
|
|
|
|
archive_plugin_init_all();
|
|
|
|
#endif
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
|
|
|
if (!input_stream_global_init(error)) {
|
2013-09-27 22:31:24 +02:00
|
|
|
LogError(error);
|
2012-03-19 19:59:30 +01:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* open the stream and dump it */
|
|
|
|
|
2013-01-27 17:20:50 +01:00
|
|
|
Mutex mutex;
|
|
|
|
Cond cond;
|
2012-03-19 19:59:30 +01:00
|
|
|
|
2013-12-29 18:08:49 +01:00
|
|
|
InputStream *is = InputStream::OpenReady(argv[1], mutex, cond, error);
|
2012-03-19 19:59:30 +01:00
|
|
|
if (is != NULL) {
|
2013-10-23 22:08:59 +02:00
|
|
|
ret = dump_input_stream(*is);
|
2013-09-05 00:06:31 +02:00
|
|
|
is->Close();
|
2012-03-19 19:59:30 +01:00
|
|
|
} else {
|
2013-08-10 18:02:44 +02:00
|
|
|
if (error.IsDefined())
|
2013-09-27 22:31:24 +02:00
|
|
|
LogError(error);
|
2013-08-10 18:02:44 +02:00
|
|
|
else
|
2013-12-24 14:44:08 +01:00
|
|
|
fprintf(stderr, "input_stream::Open() failed\n");
|
|
|
|
ret = EXIT_FAILURE;
|
2012-03-19 19:59:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* deinitialize everything */
|
|
|
|
|
|
|
|
input_stream_global_finish();
|
|
|
|
|
|
|
|
#ifdef ENABLE_ARCHIVE
|
|
|
|
archive_plugin_deinit_all();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
io_thread_deinit();
|
|
|
|
|
|
|
|
config_global_finish();
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|