2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2012-03-19 19:59:30 +01:00
|
|
|
|
|
|
|
#include "config.h"
|
2022-02-14 16:36:55 +01:00
|
|
|
#include "ConfigGlue.hxx"
|
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: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 {
|
2022-02-14 16:36:55 +01:00
|
|
|
const ConfigData config;
|
|
|
|
|
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
|
2022-02-14 16:30:38 +01:00
|
|
|
const ScopeArchivePluginsInit archive_plugins_init{config};
|
2019-02-05 21:40:07 +01:00
|
|
|
#endif
|
|
|
|
|
2022-02-14 16:36:55 +01:00
|
|
|
const ScopeInputPluginsInit input_plugins_init{config, io_thread.GetEventLoop()};
|
2019-02-05 21:50:31 +01:00
|
|
|
|
2017-01-03 12:22:14 +01:00
|
|
|
public:
|
2022-02-14 16:36:55 +01:00
|
|
|
explicit GlobalInit(Path config_path)
|
|
|
|
:config(AutoLoadConfigFile(config_path))
|
2019-02-05 21:50:31 +01:00
|
|
|
{
|
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
|
|
|
|
2024-05-23 20:43:31 +02:00
|
|
|
const std::scoped_lock 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) {
|
2022-02-14 16:36:55 +01:00
|
|
|
fprintf(stderr, "Usage: dump_text_file URI\n");
|
2013-12-24 14:44:08 +01:00
|
|
|
return EXIT_FAILURE;
|
2012-03-19 19:59:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* initialize MPD */
|
|
|
|
|
2022-02-14 16:36:55 +01:00
|
|
|
const GlobalInit init{nullptr};
|
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
|
|
|
}
|