2021-03-29 17:14:01 +02:00
|
|
|
// ArduinoJson - https://arduinojson.org
|
2021-01-25 09:14:15 +01:00
|
|
|
// Copyright Benoit Blanchon 2014-2021
|
2019-10-25 11:39:04 +02:00
|
|
|
// MIT License
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
class CustomReader {
|
|
|
|
std::stringstream _stream;
|
|
|
|
|
|
|
|
public:
|
|
|
|
CustomReader(const char* input) : _stream(input) {}
|
|
|
|
|
|
|
|
int read() {
|
|
|
|
return _stream.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t readBytes(char* buffer, size_t length) {
|
|
|
|
_stream.read(buffer, static_cast<std::streamsize>(length));
|
|
|
|
return static_cast<size_t>(_stream.gcount());
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
CustomReader(const CustomReader&);
|
|
|
|
};
|