nod/lib/FileIOFILE.cpp

275 lines
7.5 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
2015-07-22 19:01:28 +00:00
#if _WIN32
#define ftello _ftelli64
#define fseeko _fseeki64
#endif
2015-06-30 06:46:19 +00:00
/* Macros for min/max */
#define MIN(a,b) (((a)<(b))?(a):(b))
#define MAX(a,b) (((a)>(b))?(a):(b))
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
{
2016-01-25 05:55:31 +00:00
#if _WIN32
HANDLE fp = CreateFileW(m_path.c_str(), GENERIC_READ, FILE_SHARE_READ,
nullptr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, nullptr);
if (fp == INVALID_HANDLE_VALUE)
return false;
CloseHandle(fp);
return true;
2015-07-02 18:33:55 +00:00
#else
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;
2015-07-02 18:33:55 +00:00
#endif
2016-01-25 05:55:31 +00:00
}
uint64_t size()
{
#if _WIN32
HANDLE fp = CreateFileW(m_path.c_str(), GENERIC_READ, FILE_SHARE_READ,
nullptr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, nullptr);
if (fp == INVALID_HANDLE_VALUE)
return 0;
LARGE_INTEGER sz;
if (!GetFileSizeEx(fp, &sz))
{
CloseHandle(fp);
return 0;
}
CloseHandle(fp);
return sz.QuadPart;
#else
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;
2016-01-25 05:55:31 +00:00
#endif
2015-06-28 05:43:53 +00:00
}
2015-06-30 06:46:19 +00:00
struct WriteStream : public IFileIO::IWriteStream
{
uint8_t buf[0x7c00];
2016-01-25 05:55:31 +00:00
#if _WIN32
HANDLE fp;
#else
2016-01-21 06:30:37 +00:00
FILE* fp;
2016-01-25 05:55:31 +00:00
#endif
2015-07-02 18:33:55 +00:00
WriteStream(const SystemString& path)
2015-06-30 06:46:19 +00:00
{
2016-01-25 05:55:31 +00:00
#if _WIN32
fp = CreateFileW(path.c_str(), GENERIC_WRITE, FILE_SHARE_WRITE,
nullptr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, nullptr);
if (fp == INVALID_HANDLE_VALUE)
goto FailLoc;
2015-07-02 18:33:55 +00:00
#else
2015-06-30 06:46:19 +00:00
fp = fopen(path.c_str(), "wb");
if (!fp)
2016-01-25 05:55:31 +00:00
goto FailLoc;
#endif
return;
FailLoc:
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-25 05:55:31 +00:00
#if _WIN32
fp = CreateFileW(path.c_str(), GENERIC_WRITE, FILE_SHARE_WRITE,
nullptr, OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, nullptr);
if (fp == INVALID_HANDLE_VALUE)
goto FailLoc;
LARGE_INTEGER lioffset;
lioffset.QuadPart = offset;
SetFilePointerEx(fp, lioffset, nullptr, FILE_BEGIN);
2016-01-21 06:30:37 +00:00
#else
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
#endif
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()
{
2016-01-25 05:55:31 +00:00
#if _WIN32
CloseHandle(fp);
#else
2016-01-21 06:30:37 +00:00
fclose(fp);
2016-01-25 05:55:31 +00:00
#endif
2016-01-21 06:30:37 +00:00
}
uint64_t write(const void* buf, uint64_t length)
{
2016-01-25 05:55:31 +00:00
#if _WIN32
DWORD ret = 0;
WriteFile(fp, buf, length, &ret, nullptr);
return ret;
#else
2016-01-21 06:30:37 +00:00
return fwrite(buf, 1, length, fp);
2016-01-25 05:55:31 +00:00
#endif
2016-01-21 06:30:37 +00:00
}
uint64_t copyFromDisc(IPartReadStream& discio, uint64_t length)
2015-06-30 06:46:19 +00:00
{
uint64_t read = 0;
2015-06-30 06:46:19 +00:00
while (length)
{
uint64_t thisSz = MIN(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
{
2016-01-25 05:55:31 +00:00
#if _WIN32
HANDLE fp;
#else
2015-06-30 06:46:19 +00:00
FILE* fp;
2016-01-25 05:55:31 +00:00
#endif
2015-06-30 06:46:19 +00:00
uint8_t buf[0x7c00];
2015-07-02 18:33:55 +00:00
ReadStream(const SystemString& path)
2015-06-30 06:46:19 +00:00
{
2016-01-25 05:55:31 +00:00
#if _WIN32
fp = CreateFileW(path.c_str(), GENERIC_READ, FILE_SHARE_READ,
nullptr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, nullptr);
if (fp == INVALID_HANDLE_VALUE)
goto FailLoc;
2015-07-02 18:33:55 +00:00
#else
2015-06-30 06:46:19 +00:00
fp = fopen(path.c_str(), "rb");
if (!fp)
2016-01-25 05:55:31 +00:00
goto FailLoc;
#endif
return;
FailLoc:
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-25 05:55:31 +00:00
#if _WIN32
LARGE_INTEGER lioffset;
lioffset.QuadPart = offset;
SetFilePointerEx(fp, lioffset, nullptr, FILE_BEGIN);
#else
2016-01-23 23:36:58 +00:00
FSeek(fp, offset, SEEK_SET);
2016-01-25 05:55:31 +00:00
#endif
}
~ReadStream()
{
#if _WIN32
CloseHandle(fp);
#else
fclose(fp);
#endif
}
void seek(int64_t offset, int whence)
{
#if _WIN32
LARGE_INTEGER li;
li.QuadPart = offset;
SetFilePointerEx(fp, li, nullptr, whence);
#else
FSeek(fp, offset, whence);
#endif
2016-01-21 06:30:37 +00:00
}
uint64_t read(void* buf, uint64_t length)
2016-01-25 05:55:31 +00:00
{
#if _WIN32
DWORD ret = 0;
ReadFile(fp, buf, length, &ret, nullptr);
return ret;
#else
return fread(buf, 1, length, fp);
#endif
}
uint64_t copyToDisc(IPartWriteStream& discio, uint64_t length)
2015-06-30 06:46:19 +00:00
{
uint64_t written = 0;
2015-06-30 06:46:19 +00:00
while (length)
{
uint64_t thisSz = MIN(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
}