1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 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 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
|
// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
#include "cmdline/OptionDef.hxx"
#include "cmdline/OptionParser.hxx"
#include "event/Thread.hxx"
#include "ConfigGlue.hxx"
#include "tag/Tag.hxx"
#include "storage/Registry.hxx"
#include "storage/StorageInterface.hxx"
#include "storage/FileInfo.hxx"
#include "input/Init.hxx"
#include "input/InputStream.hxx"
#include "input/CondHandler.hxx"
#include "fs/Path.hxx"
#include "fs/NarrowPath.hxx"
#include "event/Thread.hxx"
#include "net/Init.hxx"
#include "io/BufferedOutputStream.hxx"
#include "io/FileDescriptor.hxx"
#include "io/StdioOutputStream.hxx"
#include "time/ChronoUtil.hxx"
#include "time/ISO8601.hxx"
#include "util/PrintException.hxx"
#include "util/StringAPI.hxx"
#include "util/StringBuffer.hxx"
#include "Log.hxx"
#include "LogBackend.hxx"
#include "TagSave.hxx"
#include "config.h"
#ifdef ENABLE_ARCHIVE
#include "archive/ArchiveList.hxx"
#endif
#include <memory>
#include <stdexcept>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
static constexpr auto usage_text = R"(Usage: run_storage [OPTIONS] COMMAND URI ...
Options:
--verbose
Available commands:
ls URI PATH
stat URI PATH
cat URI PATH
)";
struct CommandLine {
FromNarrowPath config_path;
bool verbose = false;
const char *command;
std::span<const char *const> args;
};
enum class Option {
CONFIG,
VERBOSE,
};
static constexpr OptionDef option_defs[] = {
{"config", 0, true, "Load a MPD configuration file"},
{"verbose", 'v', false, "Verbose logging"},
};
static CommandLine
ParseCommandLine(int argc, char **argv)
{
CommandLine c;
OptionParser option_parser(option_defs, argc, argv);
while (auto o = option_parser.Next()) {
switch (static_cast<Option>(o.index)) {
case Option::CONFIG:
c.config_path = o.value;
break;
case Option::VERBOSE:
c.verbose = true;
break;
}
}
auto args = option_parser.GetRemaining();
if (args.empty())
throw std::runtime_error{usage_text};
c.command = args.front();
c.args = args.subspan(1);
return c;
}
class GlobalInit {
const ConfigData config;
const ScopeNetInit net_init;
EventThread io_thread;
#ifdef ENABLE_ARCHIVE
const ScopeArchivePluginsInit archive_plugins_init{config};
#endif
const ScopeInputPluginsInit input_plugins_init{config, io_thread.GetEventLoop()};
public:
GlobalInit(Path config_path)
:config(AutoLoadConfigFile(config_path))
{
io_thread.Start();
}
EventLoop &GetEventLoop() noexcept {
return io_thread.GetEventLoop();
}
};
static std::unique_ptr<Storage>
MakeStorage(EventLoop &event_loop, const char *uri)
{
auto storage = CreateStorageURI(event_loop, uri);
if (storage == nullptr)
throw std::runtime_error("Unrecognized storage URI");
return storage;
}
static int
Ls(Storage &storage, const char *path)
{
auto dir = storage.OpenDirectory(path);
const char *name;
while ((name = dir->Read()) != nullptr) {
const auto info = dir->GetInfo(false);
const char *type = "unk";
switch (info.type) {
case StorageFileInfo::Type::OTHER:
type = "oth";
break;
case StorageFileInfo::Type::REGULAR:
type = "reg";
break;
case StorageFileInfo::Type::DIRECTORY:
type = "dir";
break;
}
StringBuffer<64> mtime_buffer;
const char *mtime = " ";
if (!IsNegative(info.mtime)) {
mtime_buffer = FormatISO8601(info.mtime);
mtime = mtime_buffer;
}
printf("%s %10llu %s %s\n",
type, (unsigned long long)info.size,
mtime, name);
}
return EXIT_SUCCESS;
}
static int
Stat(Storage &storage, const char *path)
{
const auto info = storage.GetInfo(path, false);
switch (info.type) {
case StorageFileInfo::Type::OTHER:
printf("other\n");
break;
case StorageFileInfo::Type::REGULAR:
printf("regular\n");
break;
case StorageFileInfo::Type::DIRECTORY:
printf("directory\n");
break;
}
printf("size: %llu\n", (unsigned long long)info.size);
return EXIT_SUCCESS;
}
static void
tag_save(FILE *file, const Tag &tag)
{
StdioOutputStream sos(file);
WithBufferedOutputStream(sos, [&](auto &bos){
tag_save(bos, tag);
});
}
static void
WaitReady(InputStream &is, std::unique_lock<Mutex> &lock)
{
CondInputStreamHandler handler;
is.SetHandler(&handler);
handler.cond.wait(lock, [&is]{
is.Update();
return is.IsReady();
});
is.Check();
}
static void
Cat(InputStream &is, std::unique_lock<Mutex> &lock, FileDescriptor out)
{
assert(is.IsReady());
out.SetBinaryMode();
if (is.HasMimeType())
fprintf(stderr, "MIME type: %s\n", is.GetMimeType());
/* read data and tags from the stream */
while (!is.IsEOF()) {
if (const auto tag = is.ReadTag()) {
fprintf(stderr, "Received a tag:\n");
tag_save(stderr, *tag);
}
std::byte buffer[16384];
const auto nbytes = is.Read(lock, buffer);
if (nbytes == 0)
break;
out.FullWrite({buffer, nbytes});
}
is.Check();
}
static int
Cat(Storage &storage, const char *path)
{
Mutex mutex;
auto is = storage.OpenFile(path, mutex);
assert(is);
std::unique_lock lock{mutex};
WaitReady(*is, lock);
Cat(*is, lock, FileDescriptor{STDOUT_FILENO});
return EXIT_SUCCESS;
}
int
main(int argc, char **argv)
try {
const auto c = ParseCommandLine(argc, argv);
SetLogThreshold(c.verbose ? LogLevel::DEBUG : LogLevel::INFO);
GlobalInit init{c.config_path};
if (StringIsEqual(c.command, "ls")) {
if (c.args.size() != 2) {
fputs(usage_text, stderr);
return EXIT_FAILURE;
}
const char *const storage_uri = c.args[0];
const char *const path = c.args[1];
auto storage = MakeStorage(init.GetEventLoop(),
storage_uri);
return Ls(*storage, path);
} else if (StringIsEqual(c.command, "stat")) {
if (c.args.size() != 2) {
fputs(usage_text, stderr);
return EXIT_FAILURE;
}
const char *const storage_uri = c.args[0];
const char *const path = c.args[1];
auto storage = MakeStorage(init.GetEventLoop(),
storage_uri);
return Stat(*storage, path);
} else if (StringIsEqual(c.command, "cat")) {
if (c.args.size() != 2) {
fputs(usage_text, stderr);
return EXIT_FAILURE;
}
const char *const storage_uri = c.args[0];
const char *const path = c.args[1];
auto storage = MakeStorage(init.GetEventLoop(),
storage_uri);
return Cat(*storage, path);
} else {
fprintf(stderr, "Unknown command\n\n%s", usage_text);
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
} catch (...) {
PrintException(std::current_exception());
return EXIT_FAILURE;
}
|