2012-03-19 19:59:30 +01:00
|
|
|
/*
|
2021-01-01 19:54:25 +01:00
|
|
|
* Copyright 2003-2021 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"
|
2017-02-10 22:14:07 +01:00
|
|
|
#include "event/Thread.hxx"
|
2014-01-24 16:18:21 +01:00
|
|
|
#include "input/Init.hxx"
|
|
|
|
#include "input/InputStream.hxx"
|
|
|
|
#include "input/TextInputStream.hxx"
|
2018-07-17 21:49:27 +02:00
|
|
|
#include "config/Data.hxx"
|
2018-07-17 21:56:43 +02:00
|
|
|
#include "util/PrintException.hxx"
|
2013-01-10 10:15:09 +01:00
|
|
|
|
2012-03-19 19:59:30 +01:00
|
|
|
#ifdef ENABLE_ARCHIVE
|
2014-01-24 00:09:37 +01:00
|
|
|
#include "archive/ArchiveList.hxx"
|
2012-03-19 19:59:30 +01:00
|
|
|
#endif
|
|
|
|
|
2016-09-05 12:05:54 +02:00
|
|
|
#include <stdexcept>
|
|
|
|
|
2012-03-19 19:59:30 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
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
|
|
|
|
2019-02-05 21:40:07 +01:00
|
|
|
#ifdef ENABLE_ARCHIVE
|
|
|
|
const ScopeArchivePluginsInit archive_plugins_init;
|
|
|
|
#endif
|
|
|
|
|
2019-02-05 21:50:31 +01:00
|
|
|
const ScopeInputPluginsInit input_plugins_init;
|
|
|
|
|
2017-01-03 12:22:14 +01:00
|
|
|
public:
|
2019-02-05 21:50:31 +01:00
|
|
|
GlobalInit()
|
|
|
|
:input_plugins_init(ConfigData(), io_thread.GetEventLoop())
|
|
|
|
{
|
2017-02-10 22:14:07 +01:00
|
|
|
io_thread.Start();
|
2017-01-03 12:22:14 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-03-19 19:59:30 +01:00
|
|
|
static void
|
2013-05-12 16:02:27 +02:00
|
|
|
dump_text_file(TextInputStream &is)
|
2012-03-19 19:59:30 +01:00
|
|
|
{
|
2014-08-07 00:06:02 +02:00
|
|
|
const char *line;
|
|
|
|
while ((line = is.ReadLine()) != nullptr)
|
|
|
|
printf("'%s'\n", line);
|
2012-03-19 19:59:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2016-02-21 12:53:47 +01:00
|
|
|
dump_input_stream(InputStreamPtr &&is)
|
2012-03-19 19:59:30 +01:00
|
|
|
{
|
2013-05-12 16:02:27 +02:00
|
|
|
{
|
2016-02-21 12:53:47 +01:00
|
|
|
TextInputStream tis(std::move(is));
|
2013-05-12 16:02:27 +02:00
|
|
|
dump_text_file(tis);
|
|
|
|
}
|
2012-03-19 19:59:30 +01:00
|
|
|
|
2017-01-03 07:11:57 +01:00
|
|
|
const std::lock_guard<Mutex> protect(is->mutex);
|
2013-09-05 00:06:31 +02:00
|
|
|
|
2016-09-09 18:47:42 +02:00
|
|
|
is->Check();
|
2012-03-19 19:59:30 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
2016-09-05 12:05:54 +02:00
|
|
|
try {
|
2012-03-19 19:59:30 +01:00
|
|
|
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 MPD */
|
|
|
|
|
2017-01-03 12:22:14 +01:00
|
|
|
const GlobalInit init;
|
2012-03-19 19:59:30 +01:00
|
|
|
|
|
|
|
/* open the stream and dump it */
|
|
|
|
|
2017-01-03 12:22:14 +01:00
|
|
|
Mutex mutex;
|
2012-03-19 19:59:30 +01:00
|
|
|
|
2018-06-22 19:37:18 +02:00
|
|
|
auto is = InputStream::OpenReady(argv[1], mutex);
|
2017-01-03 12:22:14 +01:00
|
|
|
return dump_input_stream(std::move(is));
|
2018-07-17 21:56:43 +02:00
|
|
|
} catch (...) {
|
|
|
|
PrintException(std::current_exception());
|
2016-09-05 12:05:54 +02:00
|
|
|
return EXIT_FAILURE;
|
2012-03-19 19:59:30 +01:00
|
|
|
}
|