2020-08-26 15:38:01 +08:00
|
|
|
#include <blah/streams/filestream.h>
|
2021-03-21 08:33:04 +08:00
|
|
|
#include <blah/core/common.h>
|
2021-01-01 05:43:23 +08:00
|
|
|
#include "../internal/platform_backend.h"
|
2020-08-26 15:38:01 +08:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
using namespace Blah;
|
|
|
|
|
|
|
|
FileStream::FileStream()
|
|
|
|
{
|
|
|
|
m_handle = nullptr;
|
|
|
|
m_mode = FileMode::None;
|
|
|
|
}
|
|
|
|
|
2021-03-21 17:08:28 +08:00
|
|
|
FileStream::FileStream(const FilePath& path, FileMode mode)
|
2020-08-26 15:38:01 +08:00
|
|
|
: m_mode(mode)
|
|
|
|
{
|
2020-12-24 08:16:09 +08:00
|
|
|
if (!PlatformBackend::file_open(path, &m_handle, mode))
|
2020-08-26 15:38:01 +08:00
|
|
|
m_handle = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
FileStream::FileStream(FileStream&& src) noexcept
|
|
|
|
{
|
|
|
|
m_handle = src.m_handle;
|
|
|
|
m_mode = src.m_mode;
|
|
|
|
src.m_handle = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
FileStream& FileStream::operator=(FileStream&& src) noexcept
|
|
|
|
{
|
|
|
|
m_handle = src.m_handle;
|
|
|
|
m_mode = src.m_mode;
|
|
|
|
src.m_handle = nullptr;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
FileStream::~FileStream()
|
|
|
|
{
|
|
|
|
if (m_handle != nullptr)
|
2020-12-24 08:16:09 +08:00
|
|
|
PlatformBackend::file_close(m_handle);
|
2020-08-26 15:38:01 +08:00
|
|
|
}
|
|
|
|
|
2021-03-21 08:33:04 +08:00
|
|
|
i64 FileStream::length() const
|
2020-08-26 15:38:01 +08:00
|
|
|
{
|
|
|
|
if (m_handle == nullptr)
|
|
|
|
return 0;
|
|
|
|
|
2020-12-24 08:16:09 +08:00
|
|
|
return PlatformBackend::file_length(m_handle);
|
2020-08-26 15:38:01 +08:00
|
|
|
}
|
|
|
|
|
2021-03-21 08:33:04 +08:00
|
|
|
i64 FileStream::position() const
|
2020-08-26 15:38:01 +08:00
|
|
|
{
|
|
|
|
if (m_handle == nullptr)
|
|
|
|
return 0;
|
|
|
|
|
2020-12-24 08:16:09 +08:00
|
|
|
return PlatformBackend::file_position(m_handle);
|
2020-08-26 15:38:01 +08:00
|
|
|
}
|
|
|
|
|
2021-03-21 08:33:04 +08:00
|
|
|
i64 FileStream::seek(i64 seek_to)
|
2020-08-26 15:38:01 +08:00
|
|
|
{
|
|
|
|
if (m_handle == nullptr)
|
|
|
|
return 0;
|
|
|
|
|
2020-12-24 08:16:09 +08:00
|
|
|
return PlatformBackend::file_seek(m_handle, seek_to);
|
2020-08-26 15:38:01 +08:00
|
|
|
}
|
|
|
|
|
2021-03-21 17:08:28 +08:00
|
|
|
bool FileStream::is_open() const
|
|
|
|
{
|
|
|
|
return m_handle != nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FileStream::is_readable() const
|
|
|
|
{
|
|
|
|
return m_handle != nullptr && (m_mode == FileMode::ReadWrite || m_mode == FileMode::Read);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FileStream::is_writable() const
|
|
|
|
{
|
|
|
|
return m_handle != nullptr && (m_mode == FileMode::ReadWrite || m_mode == FileMode::Write);
|
|
|
|
}
|
|
|
|
|
2021-03-21 08:33:04 +08:00
|
|
|
i64 FileStream::read_into(void* ptr, i64 length)
|
2020-08-26 15:38:01 +08:00
|
|
|
{
|
|
|
|
if (m_handle == nullptr)
|
|
|
|
{
|
|
|
|
BLAH_ERROR("Unable to read from Stream");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-12-24 08:16:09 +08:00
|
|
|
return PlatformBackend::file_read(m_handle, ptr, length);
|
2020-08-26 15:38:01 +08:00
|
|
|
}
|
|
|
|
|
2021-03-21 08:33:04 +08:00
|
|
|
i64 FileStream::write_from(const void* ptr, i64 length)
|
2020-08-26 15:38:01 +08:00
|
|
|
{
|
|
|
|
if (length <= 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (m_handle == nullptr)
|
|
|
|
{
|
|
|
|
BLAH_ERROR("Unable to write to Stream");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-12-24 08:16:09 +08:00
|
|
|
return PlatformBackend::file_write(m_handle, ptr, length);
|
2020-08-26 15:38:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void FileStream::close()
|
|
|
|
{
|
|
|
|
if (m_handle != nullptr)
|
2020-12-24 08:16:09 +08:00
|
|
|
PlatformBackend::file_close(m_handle);
|
2020-08-26 15:38:01 +08:00
|
|
|
m_handle = nullptr;
|
|
|
|
m_mode = FileMode::None;
|
|
|
|
}
|