2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2014-10-07 06:07:00 +02:00
|
|
|
|
2024-05-15 11:08:02 +02:00
|
|
|
#include "cmdline/OptionDef.hxx"
|
|
|
|
#include "cmdline/OptionParser.hxx"
|
2017-02-10 22:14:07 +01:00
|
|
|
#include "event/Thread.hxx"
|
2014-10-02 10:06:34 +02:00
|
|
|
#include "ConfigGlue.hxx"
|
|
|
|
#include "tag/Tag.hxx"
|
2014-10-07 06:07:00 +02:00
|
|
|
#include "storage/Registry.hxx"
|
|
|
|
#include "storage/StorageInterface.hxx"
|
|
|
|
#include "storage/FileInfo.hxx"
|
2014-10-02 10:06:34 +02:00
|
|
|
#include "input/Init.hxx"
|
|
|
|
#include "input/InputStream.hxx"
|
|
|
|
#include "input/CondHandler.hxx"
|
|
|
|
#include "fs/Path.hxx"
|
|
|
|
#include "fs/NarrowPath.hxx"
|
|
|
|
#include "event/Thread.hxx"
|
2018-02-24 22:33:30 +01:00
|
|
|
#include "net/Init.hxx"
|
2014-10-02 10:06:34 +02:00
|
|
|
#include "io/BufferedOutputStream.hxx"
|
|
|
|
#include "io/FileDescriptor.hxx"
|
|
|
|
#include "io/StdioOutputStream.hxx"
|
2019-05-08 15:47:58 +02:00
|
|
|
#include "time/ChronoUtil.hxx"
|
2024-05-13 10:36:15 +02:00
|
|
|
#include "time/ISO8601.hxx"
|
2018-07-17 21:56:43 +02:00
|
|
|
#include "util/PrintException.hxx"
|
2024-05-13 10:35:28 +02:00
|
|
|
#include "util/StringAPI.hxx"
|
2024-05-13 10:36:15 +02:00
|
|
|
#include "util/StringBuffer.hxx"
|
2024-05-15 11:08:02 +02:00
|
|
|
#include "Log.hxx"
|
|
|
|
#include "LogBackend.hxx"
|
2014-10-02 10:06:34 +02:00
|
|
|
#include "TagSave.hxx"
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#ifdef ENABLE_ARCHIVE
|
|
|
|
#include "archive/ArchiveList.hxx"
|
|
|
|
#endif
|
2014-10-07 06:07:00 +02:00
|
|
|
|
|
|
|
#include <memory>
|
2016-10-27 08:40:40 +02:00
|
|
|
#include <stdexcept>
|
2014-10-07 06:07:00 +02:00
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
2016-07-02 14:19:47 +02:00
|
|
|
#include <stdio.h>
|
2014-10-07 06:07:00 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
2024-05-15 11:08:02 +02:00
|
|
|
static constexpr auto usage_text = R"(Usage: run_storage [OPTIONS] COMMAND URI ...
|
|
|
|
|
|
|
|
Options:
|
|
|
|
--verbose
|
2024-05-15 11:10:08 +02:00
|
|
|
|
|
|
|
Available commands:
|
|
|
|
ls URI PATH
|
|
|
|
stat URI PATH
|
2014-10-02 10:06:34 +02:00
|
|
|
cat URI PATH
|
2024-05-15 11:10:08 +02:00
|
|
|
)";
|
|
|
|
|
2024-05-15 11:08:02 +02:00
|
|
|
struct CommandLine {
|
2014-10-02 10:06:34 +02:00
|
|
|
FromNarrowPath config_path;
|
|
|
|
|
2024-05-15 11:08:02 +02:00
|
|
|
bool verbose = false;
|
|
|
|
|
|
|
|
const char *command;
|
|
|
|
|
|
|
|
std::span<const char *const> args;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class Option {
|
2014-10-02 10:06:34 +02:00
|
|
|
CONFIG,
|
2024-05-15 11:08:02 +02:00
|
|
|
VERBOSE,
|
|
|
|
};
|
|
|
|
|
|
|
|
static constexpr OptionDef option_defs[] = {
|
2014-10-02 10:06:34 +02:00
|
|
|
{"config", 0, true, "Load a MPD configuration file"},
|
2024-05-15 11:08:02 +02:00
|
|
|
{"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)) {
|
2014-10-02 10:06:34 +02:00
|
|
|
case Option::CONFIG:
|
|
|
|
c.config_path = o.value;
|
|
|
|
break;
|
|
|
|
|
2024-05-15 11:08:02 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2024-05-15 10:12:39 +02:00
|
|
|
class GlobalInit {
|
2014-10-02 10:06:34 +02:00
|
|
|
const ConfigData config;
|
2024-05-15 10:12:39 +02:00
|
|
|
const ScopeNetInit net_init;
|
|
|
|
EventThread io_thread;
|
|
|
|
|
2014-10-02 10:06:34 +02:00
|
|
|
#ifdef ENABLE_ARCHIVE
|
|
|
|
const ScopeArchivePluginsInit archive_plugins_init{config};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
const ScopeInputPluginsInit input_plugins_init{config, io_thread.GetEventLoop()};
|
|
|
|
|
2024-05-15 10:12:39 +02:00
|
|
|
public:
|
2014-10-02 10:06:34 +02:00
|
|
|
GlobalInit(Path config_path)
|
|
|
|
:config(AutoLoadConfigFile(config_path))
|
|
|
|
{
|
2024-05-15 10:12:39 +02:00
|
|
|
io_thread.Start();
|
|
|
|
}
|
|
|
|
|
|
|
|
EventLoop &GetEventLoop() noexcept {
|
|
|
|
return io_thread.GetEventLoop();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-01-02 16:11:17 +01:00
|
|
|
static std::unique_ptr<Storage>
|
2017-02-10 22:14:07 +01:00
|
|
|
MakeStorage(EventLoop &event_loop, const char *uri)
|
2014-10-07 06:07:00 +02:00
|
|
|
{
|
2018-01-02 16:11:17 +01:00
|
|
|
auto storage = CreateStorageURI(event_loop, uri);
|
2016-10-27 08:40:40 +02:00
|
|
|
if (storage == nullptr)
|
|
|
|
throw std::runtime_error("Unrecognized storage URI");
|
2014-10-07 06:07:00 +02:00
|
|
|
|
|
|
|
return storage;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
Ls(Storage &storage, const char *path)
|
|
|
|
{
|
2016-10-27 08:40:40 +02:00
|
|
|
auto dir = storage.OpenDirectory(path);
|
2014-10-07 06:07:00 +02:00
|
|
|
|
|
|
|
const char *name;
|
|
|
|
while ((name = dir->Read()) != nullptr) {
|
2016-10-27 08:40:40 +02:00
|
|
|
const auto info = dir->GetInfo(false);
|
2014-10-07 06:07:00 +02:00
|
|
|
|
|
|
|
const char *type = "unk";
|
|
|
|
switch (info.type) {
|
2015-02-28 20:50:15 +01:00
|
|
|
case StorageFileInfo::Type::OTHER:
|
2014-10-07 06:07:00 +02:00
|
|
|
type = "oth";
|
|
|
|
break;
|
|
|
|
|
2015-02-28 20:50:15 +01:00
|
|
|
case StorageFileInfo::Type::REGULAR:
|
2014-10-07 06:07:00 +02:00
|
|
|
type = "reg";
|
|
|
|
break;
|
|
|
|
|
2015-02-28 20:50:15 +01:00
|
|
|
case StorageFileInfo::Type::DIRECTORY:
|
2014-10-07 06:07:00 +02:00
|
|
|
type = "dir";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2024-05-13 10:36:15 +02:00
|
|
|
StringBuffer<64> mtime_buffer;
|
2017-01-08 10:22:25 +01:00
|
|
|
const char *mtime = " ";
|
2017-02-11 22:47:05 +01:00
|
|
|
if (!IsNegative(info.mtime)) {
|
2024-05-13 10:36:15 +02:00
|
|
|
mtime_buffer = FormatISO8601(info.mtime);
|
2017-01-08 10:22:25 +01:00
|
|
|
mtime = mtime_buffer;
|
|
|
|
}
|
2014-10-07 06:07:00 +02:00
|
|
|
|
|
|
|
printf("%s %10llu %s %s\n",
|
|
|
|
type, (unsigned long long)info.size,
|
|
|
|
mtime, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2019-12-22 19:54:31 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2014-10-02 10:06:34 +02:00
|
|
|
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);
|
|
|
|
|
2024-05-23 20:43:31 +02:00
|
|
|
std::unique_lock lock{mutex};
|
2014-10-02 10:06:34 +02:00
|
|
|
WaitReady(*is, lock);
|
|
|
|
Cat(*is, lock, FileDescriptor{STDOUT_FILENO});
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2014-10-07 06:07:00 +02:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
2016-10-27 08:40:40 +02:00
|
|
|
try {
|
2024-05-15 11:08:02 +02:00
|
|
|
const auto c = ParseCommandLine(argc, argv);
|
2014-10-07 06:07:00 +02:00
|
|
|
|
2024-05-15 11:08:02 +02:00
|
|
|
SetLogThreshold(c.verbose ? LogLevel::DEBUG : LogLevel::INFO);
|
2014-10-02 10:06:34 +02:00
|
|
|
GlobalInit init{c.config_path};
|
2014-10-07 19:45:40 +02:00
|
|
|
|
2024-05-15 11:08:02 +02:00
|
|
|
if (StringIsEqual(c.command, "ls")) {
|
|
|
|
if (c.args.size() != 2) {
|
2024-05-15 11:10:08 +02:00
|
|
|
fputs(usage_text, stderr);
|
2014-10-07 06:07:00 +02:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2024-05-15 11:08:02 +02:00
|
|
|
const char *const storage_uri = c.args[0];
|
|
|
|
const char *const path = c.args[1];
|
2014-10-07 06:07:00 +02:00
|
|
|
|
2024-05-15 10:12:39 +02:00
|
|
|
auto storage = MakeStorage(init.GetEventLoop(),
|
2018-01-02 16:11:17 +01:00
|
|
|
storage_uri);
|
2014-10-07 06:07:00 +02:00
|
|
|
|
|
|
|
return Ls(*storage, path);
|
2024-05-15 11:08:02 +02:00
|
|
|
} else if (StringIsEqual(c.command, "stat")) {
|
|
|
|
if (c.args.size() != 2) {
|
2024-05-15 11:10:08 +02:00
|
|
|
fputs(usage_text, stderr);
|
2019-12-22 19:54:31 +01:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2024-05-15 11:08:02 +02:00
|
|
|
const char *const storage_uri = c.args[0];
|
|
|
|
const char *const path = c.args[1];
|
2019-12-22 19:54:31 +01:00
|
|
|
|
2024-05-15 10:12:39 +02:00
|
|
|
auto storage = MakeStorage(init.GetEventLoop(),
|
2019-12-22 19:54:31 +01:00
|
|
|
storage_uri);
|
|
|
|
|
|
|
|
return Stat(*storage, path);
|
2014-10-02 10:06:34 +02:00
|
|
|
} 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);
|
2014-10-07 06:07:00 +02:00
|
|
|
} else {
|
2024-05-15 11:10:08 +02:00
|
|
|
fprintf(stderr, "Unknown command\n\n%s", usage_text);
|
2014-10-07 06:07:00 +02:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
2016-10-27 08:40:40 +02:00
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
2018-07-17 21:56:43 +02:00
|
|
|
} catch (...) {
|
|
|
|
PrintException(std::current_exception());
|
2016-10-27 08:40:40 +02:00
|
|
|
return EXIT_FAILURE;
|
2014-10-07 06:07:00 +02:00
|
|
|
}
|