mpd/src/lib/nfs/FileReader.cxx
Max Kellermann 84e8927b1b lib/nfs/FileReader: remove obsolete stat64 cast
Obsoleted (and broken) by commit 9947d3e67fb4f7ab388c4ae1593dad8bce0f3153
2024-05-13 12:33:03 +02:00

273 lines
5.0 KiB
C++

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
#include "FileReader.hxx"
#include "Glue.hxx"
#include "Base.hxx"
#include "Connection.hxx"
#include "event/Call.hxx"
#include "util/ASCII.hxx"
#include <nfsc/libnfs.h> // for struct nfs_stat_64
#include <cassert>
#include <cstring>
#include <stdexcept>
#include <utility>
#include <fcntl.h>
#include <sys/stat.h> // for S_ISREG()
NfsFileReader::NfsFileReader() noexcept
:defer_open(nfs_get_event_loop(), BIND_THIS_METHOD(OnDeferredOpen))
{
}
NfsFileReader::~NfsFileReader() noexcept
{
assert(state == State::INITIAL);
}
void
NfsFileReader::Close() noexcept
{
if (state == State::INITIAL)
return;
if (state == State::DEFER) {
state = State::INITIAL;
defer_open.Cancel();
return;
}
/* this cancels State::MOUNT */
connection->RemoveLease(*this);
CancelOrClose();
}
void
NfsFileReader::CancelOrClose() noexcept
{
assert(state != State::INITIAL &&
state != State::DEFER);
if (state == State::IDLE)
/* no async operation in progress: can close
immediately */
connection->Close(fh);
else if (state > State::OPEN)
/* one async operation in progress: cancel it and
defer the nfs_close_async() call */
connection->CancelAndClose(fh, *this);
else if (state > State::MOUNT)
/* we don't have a file handle yet - just cancel the
async operation */
connection->Cancel(*this);
state = State::INITIAL;
}
void
NfsFileReader::DeferClose() noexcept
{
BlockingCall(GetEventLoop(), [this](){ Close(); });
}
void
NfsFileReader::Open(const char *uri)
{
assert(state == State::INITIAL);
if (!StringStartsWithCaseASCII(uri, "nfs://"))
throw std::runtime_error("Malformed nfs:// URI");
uri += 6;
const char *slash = std::strchr(uri, '/');
if (slash == nullptr)
throw std::runtime_error("Malformed nfs:// URI");
server = std::string(uri, slash);
uri = slash;
const char *new_path = nfs_check_base(server.c_str(), uri);
if (new_path != nullptr) {
export_name = std::string(uri, new_path);
if (*new_path == 0)
new_path = "/";
path = new_path;
} else {
slash = std::strrchr(uri + 1, '/');
if (slash == nullptr || slash[1] == 0)
throw std::runtime_error("Malformed nfs:// URI");
export_name = std::string(uri, slash);
path = slash;
}
state = State::DEFER;
defer_open.Schedule();
}
void
NfsFileReader::Read(uint64_t offset, size_t size)
{
assert(state == State::IDLE);
connection->Read(fh, offset, size, *this);
state = State::READ;
}
void
NfsFileReader::CancelRead() noexcept
{
if (state == State::READ) {
connection->Cancel(*this);
state = State::IDLE;
}
}
void
NfsFileReader::OnNfsConnectionReady() noexcept
{
assert(state == State::MOUNT);
try {
connection->Open(path, O_RDONLY, *this);
} catch (...) {
OnNfsFileError(std::current_exception());
return;
}
state = State::OPEN;
}
void
NfsFileReader::OnNfsConnectionFailed(std::exception_ptr e) noexcept
{
assert(state == State::MOUNT);
state = State::INITIAL;
OnNfsFileError(std::move(e));
}
void
NfsFileReader::OnNfsConnectionDisconnected(std::exception_ptr e) noexcept
{
assert(state > State::MOUNT);
CancelOrClose();
OnNfsFileError(std::move(e));
}
inline void
NfsFileReader::OpenCallback(nfsfh *_fh) noexcept
{
assert(connection != nullptr);
assert(_fh != nullptr);
fh = _fh;
try {
connection->Stat(fh, *this);
} catch (...) {
OnNfsFileError(std::current_exception());
return;
}
state = State::STAT;
}
inline void
NfsFileReader::StatCallback(const struct nfs_stat_64 *st) noexcept
{
assert(connection != nullptr);
assert(fh != nullptr);
assert(st != nullptr);
if (!S_ISREG(st->nfs_mode)) {
OnNfsFileError(std::make_exception_ptr(std::runtime_error("Not a regular file")));
return;
}
OnNfsFileOpen(st->nfs_size);
}
void
NfsFileReader::OnNfsCallback(unsigned status, void *data) noexcept
{
switch (std::exchange(state, State::IDLE)) {
case State::INITIAL:
case State::DEFER:
case State::MOUNT:
case State::IDLE:
assert(false);
gcc_unreachable();
case State::OPEN:
OpenCallback((struct nfsfh *)data);
break;
case State::STAT:
StatCallback((const struct nfs_stat_64 *)data);
break;
case State::READ:
OnNfsFileRead({
static_cast<const std::byte *>(data),
static_cast<std::size_t>(status),
});
break;
}
}
void
NfsFileReader::OnNfsError(std::exception_ptr &&e) noexcept
{
switch (state) {
case State::INITIAL:
case State::DEFER:
case State::MOUNT:
case State::IDLE:
assert(false);
gcc_unreachable();
case State::OPEN:
connection->RemoveLease(*this);
state = State::INITIAL;
break;
case State::STAT:
connection->RemoveLease(*this);
connection->Close(fh);
state = State::INITIAL;
break;
case State::READ:
state = State::IDLE;
break;
}
OnNfsFileError(std::move(e));
}
void
NfsFileReader::OnDeferredOpen() noexcept
{
assert(state == State::DEFER);
try {
connection = &nfs_get_connection(server, export_name);
} catch (...) {
OnNfsFileError(std::current_exception());
return;
}
connection->AddLease(*this);
state = State::MOUNT;
}