summaryrefslogtreecommitdiffhomepage
path: root/FoundationEx/src/reader/file.h
blob: 22810b6e7b3d3d098b44ec51a39bb0cd0521bac3 (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
/*  Starshatter: The Open Source Project
    Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
    Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
    Copyright (c) 1997-2006, Destroyer Studios LLC.
*/

#pragma once

#include <fstream>

#include <starshatter/foundation/reader.h>
#include <Text.h>


namespace starshatter
{
namespace foundation
{


struct FileReader : public BaseReader<char>
{
	FileReader() = default;
	FileReader(std::fstream src);
	FileReader(const FileReader& other) = delete;
	FileReader& operator=(const FileReader& other) = delete;
	FileReader(FileReader&& other) = default;
	FileReader& operator=(FileReader&& other) = default;
	~FileReader() override = default;

	bool valid() const override;
	Count available() const override;
	Count seek(Count pos) override;
	Count seek(Offset offset, Direction dir) override;
	Count read(char* dest) override;
	Count read(char* dest, Count bytes) override;
	Count peek(char* dest) const override;
	Count peek(char* dest, Count bytes) const override;
	Text more() override;

private:
	mutable std::fstream file = {};
	Count size = {};
	Count position = {};
};


}  // namespace foundation
}  // namespace starshatter