blob: 43615776552015b327b450d96a04e3d19eb3d98f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#pragma once
#include "../../PreConfig.h"
#ifndef CRU_PLATFORM_UNIX
#error "This file can only be included on unix."
#endif
#include "../../io/Stream.h"
namespace cru::platform::unix {
class UnixFileStream : public io::Stream {
private:
static constexpr auto kLogTag = u"cru::platform::unix::UnixFileStream";
public:
UnixFileStream(const char* path, int oflag, mode_t mode = 0660);
UnixFileStream(int fd, bool can_seek, bool can_read, bool can_write,
bool auto_close);
CRU_DELETE_COPY(UnixFileStream)
CRU_DELETE_MOVE(UnixFileStream)
~UnixFileStream() override;
public:
bool CanSeek() override;
Index Seek(Index offset, SeekOrigin origin = SeekOrigin::Current) override;
bool CanRead() override;
Index Read(std::byte* buffer, Index offset, Index size) override;
using Stream::Read;
bool CanWrite() override;
Index Write(const std::byte* buffer, Index offset, Index size) override;
using Stream::Write;
void Close() override;
int GetFileDescriptor() const { return file_descriptor_; }
private:
void CheckClosed();
private:
int file_descriptor_; // -1 for no file descriptor
bool can_seek_;
bool can_read_;
bool can_write_;
bool auto_close_;
};
} // namespace cru::platform::unix
|