run_input.cxx 5.07 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2017 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 * 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.
 */

20
#include "config.h"
21
#include "TagSave.hxx"
22
#include "tag/Tag.hxx"
23
#include "config/ConfigGlobal.hxx"
Max Kellermann's avatar
Max Kellermann committed
24 25
#include "input/InputStream.hxx"
#include "input/Init.hxx"
26 27 28
#include "input/Registry.hxx"
#include "input/InputPlugin.hxx"
#include "input/RemoteTagScanner.hxx"
29
#include "input/ScanTags.hxx"
30
#include "event/Thread.hxx"
31
#include "thread/Cond.hxx"
32
#include "Log.hxx"
33
#include "LogBackend.hxx"
34
#include "fs/Path.hxx"
35 36
#include "fs/io/BufferedOutputStream.hxx"
#include "fs/io/StdioOutputStream.hxx"
37
#include "util/ConstBuffer.hxx"
38
#include "util/OptionDef.hxx"
39
#include "util/OptionParser.hxx"
40

41
#ifdef ENABLE_ARCHIVE
42
#include "archive/ArchiveList.hxx"
43 44
#endif

45 46
#include <stdexcept>

47
#include <unistd.h>
48
#include <stdlib.h>
49

50 51
struct CommandLine {
	const char *uri = nullptr;
52

53
	Path config_path = nullptr;
54 55

	bool verbose = false;
56 57

	bool scan = false;
58 59 60 61
};

enum Option {
	OPTION_CONFIG,
62
	OPTION_VERBOSE,
63
	OPTION_SCAN,
64 65 66 67
};

static constexpr OptionDef option_defs[] = {
	{"config", 0, true, "Load a MPD configuration file"},
68
	{"verbose", 'v', false, "Verbose logging"},
69
	{"scan", 0, false, "Scan tags instead of reading raw data"},
70 71 72 73 74 75 76
};

static CommandLine
ParseCommandLine(int argc, char **argv)
{
	CommandLine c;

77
	OptionParser option_parser(option_defs, argc, argv);
78
	while (auto o = option_parser.Next()) {
79 80 81 82
		switch (Option(o.index)) {
		case OPTION_CONFIG:
			c.config_path = Path::FromFS(o.value);
			break;
83 84 85 86

		case OPTION_VERBOSE:
			c.verbose = true;
			break;
87 88 89 90

		case OPTION_SCAN:
			c.scan = true;
			break;
91
		}
92 93 94 95
	}

	auto args = option_parser.GetRemaining();
	if (args.size != 1)
96
		throw std::runtime_error("Usage: run_input [--verbose] [--config=FILE] URI");
97 98 99 100 101

	c.uri = args.front();
	return c;
}

102
class GlobalInit {
103
	EventThread io_thread;
104 105

public:
106 107 108
	GlobalInit(Path config_path, bool verbose) {
		SetLogThreshold(verbose ? LogLevel::DEBUG : LogLevel::INFO);

109
		io_thread.Start();
110
		config_global_init();
111 112 113 114

		if (!config_path.IsNull())
			ReadConfigFile(config_path);

115 116 117
#ifdef ENABLE_ARCHIVE
		archive_plugin_init_all();
#endif
118
		input_stream_global_init(io_thread.GetEventLoop());
119 120 121 122 123 124 125 126 127 128 129
	}

	~GlobalInit() {
		input_stream_global_finish();
#ifdef ENABLE_ARCHIVE
		archive_plugin_deinit_all();
#endif
		config_global_finish();
	}
};

130 131 132 133 134 135 136 137 138
static void
tag_save(FILE *file, const Tag &tag)
{
	StdioOutputStream sos(file);
	BufferedOutputStream bos(sos);
	tag_save(bos, tag);
	bos.Flush();
}

139
static int
140
dump_input_stream(InputStream *is)
141
{
142
	const std::lock_guard<Mutex> protect(is->mutex);
143

144 145
	/* print meta data */

146 147
	if (is->HasMimeType())
		fprintf(stderr, "MIME type: %s\n", is->GetMimeType());
148 149 150

	/* read data and tags from the stream */

151
	while (!is->IsEOF()) {
152 153 154 155 156 157
		{
			auto tag = is->ReadTag();
			if (tag) {
				fprintf(stderr, "Received a tag:\n");
				tag_save(stderr, *tag);
			}
158 159
		}

160
		char buffer[4096];
161 162
		size_t num_read = is->Read(buffer, sizeof(buffer));
		if (num_read == 0)
163 164
			break;

165
		ssize_t num_written = write(1, buffer, num_read);
166 167 168 169
		if (num_written <= 0)
			break;
	}

170
	is->Check();
171

172 173 174
	return 0;
}

175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
class DumpRemoteTagHandler final : public RemoteTagHandler {
	Mutex mutex;
	Cond cond;

	Tag tag;
	std::exception_ptr error;

	bool done = false;

public:
	Tag Wait() {
		const std::lock_guard<Mutex> lock(mutex);
		while (!done)
			cond.wait(mutex);

		if (error)
			std::rethrow_exception(error);

		return std::move(tag);
	}

	/* virtual methods from RemoteTagHandler */
	void OnRemoteTag(Tag &&_tag) noexcept override {
		const std::lock_guard<Mutex> lock(mutex);
		tag = std::move(_tag);
		done = true;
		cond.broadcast();
	}

	void OnRemoteTagError(std::exception_ptr e) noexcept override {
		const std::lock_guard<Mutex> lock(mutex);
		error = std::move(e);
		done = true;
		cond.broadcast();
	}
};

static int
Scan(const char *uri)
{
	DumpRemoteTagHandler handler;

217 218 219 220
	auto scanner = InputScanTags(uri, handler);
	if (!scanner) {
		fprintf(stderr, "Unsupported URI\n");
		return EXIT_FAILURE;
221 222
	}

223 224 225
	scanner->Start();
	tag_save(stdout, handler.Wait());
	return EXIT_SUCCESS;
226 227
}

228
int main(int argc, char **argv)
229
try {
230
	const auto c = ParseCommandLine(argc, argv);
231 232 233

	/* initialize MPD */

234
	const GlobalInit init(c.config_path, c.verbose);
235

236 237 238
	if (c.scan)
		return Scan(c.uri);

239 240
	/* open the stream and dump it */

241
	Mutex mutex;
242
	auto is = InputStream::OpenReady(c.uri, mutex);
243
	return dump_input_stream(is.get());
244 245 246
} catch (const std::exception &e) {
	LogError(e);
	return EXIT_FAILURE;
247
}