nod/lib/FileIOFILE.cpp

144 lines
4.4 KiB
C++
Raw Normal View History

2017-12-29 07:57:54 +00:00
#include <cstdio>
#include <cstdlib>
#include <cinttypes>
2016-03-04 23:04:30 +00:00
#include "nod/Util.hpp"
#include "nod/IFileIO.hpp"
2015-06-28 05:43:53 +00:00
2018-12-08 05:21:47 +00:00
namespace nod {
class FileIOFILE : public IFileIO {
SystemString m_path;
int64_t m_maxWriteSize;
2015-06-28 05:43:53 +00:00
public:
2018-12-08 05:21:47 +00:00
FileIOFILE(SystemStringView path, int64_t maxWriteSize) : m_path(path), m_maxWriteSize(maxWriteSize) {}
2015-06-30 06:46:19 +00:00
bool exists() override {
2018-12-08 05:21:47 +00:00
FILE* fp = Fopen(m_path.c_str(), _SYS_STR("rb"));
if (!fp)
return false;
fclose(fp);
return true;
}
2016-01-25 05:55:31 +00:00
uint64_t size() override {
2018-12-08 05:21:47 +00:00
FILE* fp = Fopen(m_path.c_str(), _SYS_STR("rb"));
if (!fp)
return 0;
FSeek(fp, 0, SEEK_END);
uint64_t result = FTell(fp);
fclose(fp);
return result;
}
2015-06-30 06:46:19 +00:00
2018-12-08 05:21:47 +00:00
struct WriteStream : public IFileIO::IWriteStream {
FILE* fp;
int64_t m_maxWriteSize;
WriteStream(SystemStringView path, int64_t maxWriteSize, bool& err) : m_maxWriteSize(maxWriteSize) {
fp = Fopen(path.data(), _SYS_STR("wb"));
if (!fp) {
2019-07-20 04:21:57 +00:00
LogModule.report(logvisor::Error, fmt(_SYS_STR("unable to open '{}' for writing")), path);
2018-12-08 05:21:47 +00:00
err = true;
}
2016-01-21 06:30:37 +00:00
}
2018-12-08 05:21:47 +00:00
WriteStream(SystemStringView path, uint64_t offset, int64_t maxWriteSize, bool& err)
: m_maxWriteSize(maxWriteSize) {
fp = Fopen(path.data(), _SYS_STR("ab"));
if (!fp)
goto FailLoc;
fclose(fp);
fp = Fopen(path.data(), _SYS_STR("r+b"));
if (!fp)
goto FailLoc;
FSeek(fp, offset, SEEK_SET);
return;
FailLoc:
2019-07-20 04:21:57 +00:00
LogModule.report(logvisor::Error, fmt(_SYS_STR("unable to open '{}' for writing")), path);
2018-12-08 05:21:47 +00:00
err = true;
2016-01-21 06:30:37 +00:00
}
~WriteStream() override { fclose(fp); }
uint64_t write(const void* buf, uint64_t length) override {
2018-12-08 05:21:47 +00:00
if (m_maxWriteSize >= 0) {
if (FTell(fp) + length > m_maxWriteSize) {
2019-07-20 04:21:57 +00:00
LogModule.report(logvisor::Error, fmt(_SYS_STR("write operation exceeds file's {}-byte limit")),
2018-12-08 05:21:47 +00:00
m_maxWriteSize);
return 0;
2015-06-30 06:46:19 +00:00
}
2018-12-08 05:21:47 +00:00
}
return fwrite(buf, 1, length, fp);
}
};
std::unique_ptr<IWriteStream> beginWriteStream() const override {
2018-12-08 05:21:47 +00:00
bool Err = false;
auto ret = std::unique_ptr<IWriteStream>(new WriteStream(m_path, m_maxWriteSize, Err));
if (Err)
return {};
return ret;
}
std::unique_ptr<IWriteStream> beginWriteStream(uint64_t offset) const override {
2018-12-08 05:21:47 +00:00
bool Err = false;
auto ret = std::unique_ptr<IWriteStream>(new WriteStream(m_path, offset, m_maxWriteSize, Err));
if (Err)
return {};
return ret;
}
struct ReadStream : public IFileIO::IReadStream {
FILE* fp;
ReadStream(SystemStringView path, bool& err) {
fp = Fopen(path.data(), _SYS_STR("rb"));
if (!fp) {
err = true;
2019-07-20 04:21:57 +00:00
LogModule.report(logvisor::Error, fmt(_SYS_STR("unable to open '{}' for reading")), path);
2018-12-08 05:21:47 +00:00
}
}
ReadStream(SystemStringView path, uint64_t offset, bool& err) : ReadStream(path, err) {
if (err)
return;
FSeek(fp, offset, SEEK_SET);
}
~ReadStream() override { fclose(fp); }
void seek(int64_t offset, int whence) override { FSeek(fp, offset, whence); }
uint64_t position() const override { return FTell(fp); }
uint64_t read(void* buf, uint64_t length) override { return fread(buf, 1, length, fp); }
uint64_t copyToDisc(IPartWriteStream& discio, uint64_t length) override {
2018-12-08 05:21:47 +00:00
uint64_t written = 0;
uint8_t buf[0x7c00];
while (length) {
uint64_t thisSz = nod::min(uint64_t(0x7c00), length);
if (read(buf, thisSz) != thisSz) {
2019-07-20 04:21:57 +00:00
LogModule.report(logvisor::Error, fmt("unable to read enough from file"));
2018-12-08 05:21:47 +00:00
return written;
2016-01-25 05:55:31 +00:00
}
2018-12-08 05:21:47 +00:00
if (discio.write(buf, thisSz) != thisSz) {
2019-07-20 04:21:57 +00:00
LogModule.report(logvisor::Error, fmt("unable to write enough to disc"));
2018-12-08 05:21:47 +00:00
return written;
2015-06-30 06:46:19 +00:00
}
2018-12-08 05:21:47 +00:00
length -= thisSz;
written += thisSz;
}
return written;
2016-01-21 06:30:37 +00:00
}
2018-12-08 05:21:47 +00:00
};
std::unique_ptr<IReadStream> beginReadStream() const override {
2018-12-08 05:21:47 +00:00
bool Err = false;
auto ret = std::unique_ptr<IReadStream>(new ReadStream(m_path, Err));
if (Err)
return {};
return ret;
}
std::unique_ptr<IReadStream> beginReadStream(uint64_t offset) const override {
2018-12-08 05:21:47 +00:00
bool Err = false;
auto ret = std::unique_ptr<IReadStream>(new ReadStream(m_path, offset, Err));
if (Err)
return {};
return ret;
}
2015-06-28 05:43:53 +00:00
};
2018-12-08 05:21:47 +00:00
std::unique_ptr<IFileIO> NewFileIO(SystemStringView path, int64_t maxWriteSize) {
return std::unique_ptr<IFileIO>(new FileIOFILE(path, maxWriteSize));
2016-01-21 06:30:37 +00:00
}
2018-12-08 05:21:47 +00:00
} // namespace nod