2021-03-29 17:14:01 +02:00
|
|
|
// ArduinoJson - https://arduinojson.org
|
2024-01-03 08:47:06 +01:00
|
|
|
// Copyright © 2014-2024, Benoit BLANCHON
|
2019-10-25 11:39:04 +02:00
|
|
|
// MIT License
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
class CustomReader {
|
2023-04-21 18:53:16 +02:00
|
|
|
std::stringstream stream_;
|
2019-10-25 11:39:04 +02:00
|
|
|
|
|
|
|
public:
|
2023-04-21 18:53:16 +02:00
|
|
|
CustomReader(const char* input) : stream_(input) {}
|
2023-02-17 10:58:02 +01:00
|
|
|
CustomReader(const CustomReader&) = delete;
|
2019-10-25 11:39:04 +02:00
|
|
|
|
|
|
|
int read() {
|
2023-04-21 18:53:16 +02:00
|
|
|
return stream_.get();
|
2019-10-25 11:39:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t readBytes(char* buffer, size_t length) {
|
2023-04-21 18:53:16 +02:00
|
|
|
stream_.read(buffer, static_cast<std::streamsize>(length));
|
|
|
|
return static_cast<size_t>(stream_.gcount());
|
2019-10-25 11:39:04 +02:00
|
|
|
}
|
|
|
|
};
|