blah/src/streams/filestream.cpp

111 lines
1.9 KiB
C++
Raw Normal View History

2020-08-26 15:38:01 +08:00
#include <blah/streams/filestream.h>
#include <blah/core/common.h>
#include "../internal/platform_backend.h"
2020-08-26 15:38:01 +08:00
#include <string.h>
using namespace Blah;
FileStream::FileStream()
{
m_handle = nullptr;
2021-04-05 16:07:16 +08:00
m_mode = FileMode::OpenRead;
2020-08-26 15:38:01 +08:00
}
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
}
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
}
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
}
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
{
2021-04-05 16:07:16 +08:00
return m_handle != nullptr && (m_mode != FileMode::CreateWrite);
2021-03-21 17:08:28 +08:00
}
bool FileStream::is_writable() const
{
2021-04-05 16:07:16 +08:00
return m_handle != nullptr && (m_mode != FileMode::OpenRead);
2021-03-21 17:08:28 +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
}
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;
}