nod/lib/FileIOFILE.cpp

176 lines
4.9 KiB
C++
Raw Normal View History

2015-06-30 06:46:19 +00:00
#include <stdio.h>
#include <stdlib.h>
2015-07-02 18:33:55 +00:00
#include "NOD/Util.hpp"
#include "NOD/IFileIO.hpp"
2015-06-28 05:43:53 +00:00
namespace NOD
{
class FileIOFILE : public IFileIO
{
2015-07-02 18:33:55 +00:00
SystemString m_path;
2015-06-28 05:43:53 +00:00
public:
2015-07-02 18:33:55 +00:00
FileIOFILE(const SystemString& path)
2015-06-30 06:46:19 +00:00
: m_path(path) {}
2016-01-21 06:30:37 +00:00
FileIOFILE(const SystemChar* path)
: m_path(path) {}
2015-06-30 06:46:19 +00:00
2016-01-25 05:55:31 +00:00
bool exists()
2015-06-28 05:43:53 +00:00
{
2015-06-30 06:46:19 +00:00
FILE* fp = fopen(m_path.c_str(), "rb");
2016-01-25 05:55:31 +00:00
if (!fp)
return false;
fclose(fp);
return true;
}
uint64_t size()
{
FILE* fp = fopen(m_path.c_str(), "rb");
2015-06-30 06:46:19 +00:00
if (!fp)
return 0;
2016-01-25 05:55:31 +00:00
FSeek(fp, 0, SEEK_END);
uint64_t result = ftello(fp);
2015-06-30 06:46:19 +00:00
fclose(fp);
return result;
2015-06-28 05:43:53 +00:00
}
2015-06-30 06:46:19 +00:00
struct WriteStream : public IFileIO::IWriteStream
{
2016-01-21 06:30:37 +00:00
FILE* fp;
2015-07-02 18:33:55 +00:00
WriteStream(const SystemString& path)
2015-06-30 06:46:19 +00:00
{
fp = fopen(path.c_str(), "wb");
if (!fp)
2016-01-25 20:21:10 +00:00
LogModule.report(LogVisor::FatalError, _S("unable to open '%s' for writing"), path.c_str());
2015-06-30 06:46:19 +00:00
}
WriteStream(const SystemString& path, uint64_t offset)
2016-01-21 06:30:37 +00:00
{
2016-01-22 23:45:58 +00:00
fp = fopen(path.c_str(), "ab");
2016-01-25 05:55:31 +00:00
if (!fp)
goto FailLoc;
2016-01-22 23:45:58 +00:00
fclose(fp);
2016-01-21 06:30:37 +00:00
fp = fopen(path.c_str(), "r+b");
if (!fp)
2016-01-25 05:55:31 +00:00
goto FailLoc;
2016-01-23 23:36:58 +00:00
FSeek(fp, offset, SEEK_SET);
2016-01-25 05:55:31 +00:00
return;
FailLoc:
LogModule.report(LogVisor::FatalError, _S("unable to open '%s' for writing"), path.c_str());
2016-01-21 06:30:37 +00:00
}
~WriteStream()
{
fclose(fp);
}
uint64_t write(const void* buf, uint64_t length)
{
return fwrite(buf, 1, length, fp);
}
uint64_t copyFromDisc(IPartReadStream& discio, uint64_t length)
2015-06-30 06:46:19 +00:00
{
uint64_t read = 0;
2016-01-26 02:01:55 +00:00
uint8_t buf[0x7c00];
2015-06-30 06:46:19 +00:00
while (length)
{
2016-01-25 20:21:10 +00:00
uint64_t thisSz = NOD::min(uint64_t(0x7c00), length);
uint64_t readSz = discio.read(buf, thisSz);
2015-06-30 06:46:19 +00:00
if (thisSz != readSz)
2015-07-26 02:44:44 +00:00
{
2016-01-25 05:55:31 +00:00
LogModule.report(LogVisor::FatalError, "unable to read enough from disc");
2015-07-26 02:44:44 +00:00
return read;
}
2016-01-25 05:55:31 +00:00
if (write(buf, readSz) != readSz)
2015-07-26 02:44:44 +00:00
{
2016-01-25 05:55:31 +00:00
LogModule.report(LogVisor::FatalError, "unable to write in file");
2015-07-26 02:44:44 +00:00
return read;
}
2015-06-30 06:46:19 +00:00
length -= thisSz;
read += thisSz;
}
return read;
}
};
std::unique_ptr<IWriteStream> beginWriteStream() const
2016-01-21 06:30:37 +00:00
{
return std::unique_ptr<IWriteStream>(new WriteStream(m_path));
}
std::unique_ptr<IWriteStream> beginWriteStream(uint64_t offset) const
2016-01-21 06:30:37 +00:00
{
return std::unique_ptr<IWriteStream>(new WriteStream(m_path, offset));
}
2015-06-30 06:46:19 +00:00
struct ReadStream : public IFileIO::IReadStream
{
FILE* fp;
2015-07-02 18:33:55 +00:00
ReadStream(const SystemString& path)
2015-06-30 06:46:19 +00:00
{
fp = fopen(path.c_str(), "rb");
if (!fp)
2016-01-25 20:21:10 +00:00
LogModule.report(LogVisor::FatalError, _S("unable to open '%s' for reading"), path.c_str());
2015-06-30 06:46:19 +00:00
}
ReadStream(const SystemString& path, uint64_t offset)
2016-01-21 06:30:37 +00:00
: ReadStream(path)
{
2016-01-23 23:36:58 +00:00
FSeek(fp, offset, SEEK_SET);
2016-01-25 05:55:31 +00:00
}
~ReadStream()
{
fclose(fp);
}
void seek(int64_t offset, int whence)
{
FSeek(fp, offset, whence);
2016-01-21 06:30:37 +00:00
}
2016-01-26 02:01:55 +00:00
int64_t position()
{
return FTell(fp);
}
uint64_t read(void* buf, uint64_t length)
2016-01-25 05:55:31 +00:00
{
return fread(buf, 1, length, fp);
}
uint64_t copyToDisc(IPartWriteStream& discio, uint64_t length)
2015-06-30 06:46:19 +00:00
{
uint64_t written = 0;
2016-01-26 02:01:55 +00:00
uint8_t buf[0x7c00];
2015-06-30 06:46:19 +00:00
while (length)
{
2016-01-25 20:21:10 +00:00
uint64_t thisSz = NOD::min(uint64_t(0x7c00), length);
2016-01-25 05:55:31 +00:00
if (read(buf, thisSz) != thisSz)
2015-07-26 02:44:44 +00:00
{
2016-01-25 05:55:31 +00:00
LogModule.report(LogVisor::FatalError, "unable to read enough from file");
2015-07-26 02:44:44 +00:00
return written;
}
2015-06-30 06:46:19 +00:00
if (discio.write(buf, thisSz) != thisSz)
2015-07-26 02:44:44 +00:00
{
2016-01-25 05:55:31 +00:00
LogModule.report(LogVisor::FatalError, "unable to write enough to disc");
2015-07-26 02:44:44 +00:00
return written;
}
2015-06-30 06:46:19 +00:00
length -= thisSz;
written += thisSz;
}
return written;
}
};
std::unique_ptr<IReadStream> beginReadStream() const
2016-01-21 06:30:37 +00:00
{
return std::unique_ptr<IReadStream>(new ReadStream(m_path));
}
std::unique_ptr<IReadStream> beginReadStream(uint64_t offset) const
2016-01-21 06:30:37 +00:00
{
return std::unique_ptr<IReadStream>(new ReadStream(m_path, offset));
}
2015-06-28 05:43:53 +00:00
};
2015-07-02 18:33:55 +00:00
std::unique_ptr<IFileIO> NewFileIO(const SystemString& path)
2015-06-30 06:46:19 +00:00
{
return std::unique_ptr<IFileIO>(new FileIOFILE(path));
}
2016-01-21 06:30:37 +00:00
std::unique_ptr<IFileIO> NewFileIO(const SystemChar* path)
{
return std::unique_ptr<IFileIO>(new FileIOFILE(path));
}
2015-06-28 05:43:53 +00:00
}