This repository was archived by the owner on Sep 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathStringStream.h
More file actions
57 lines (42 loc) · 1.45 KB
/
StringStream.h
File metadata and controls
57 lines (42 loc) · 1.45 KB
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
53
54
55
/*
This file is part of duckOS.
duckOS is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
duckOS is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with duckOS. If not, see <https://www.gnu.org/licenses/>.
Copyright (c) Byteduck 2016-2021. All rights reserved.
*/
#pragma once
#include <string>
#include <utility>
#include "Stream.h"
namespace Duck {
class StringInputStream: public InputStream {
public:
explicit StringInputStream(std::string string): m_string(std::move(string)) {}
//InputStream
size_t read(void* buffer, size_t n) override;
Result seek(long offset, Whence whence) override;
[[nodiscard]] bool eof() const override { return m_eof; }
private:
std::string m_string;
size_t m_offset = 0;
bool m_eof = false;
};
class StringOutputStream: public OutputStream {
public:
const std::string& string() { return m_string; }
//OutputStream
size_t write(const void* buffer, size_t n) override;
Result seek(long seek, Whence whence) override;
private:
std::string m_string;
size_t m_offset = 0;
};
}