mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-06-29 03:11:00 +02:00
54 lines
994 B
C++
54 lines
994 B
C++
// ArduinoJson - https://arduinojson.org
|
|
// Copyright © 2014-2023, Benoit BLANCHON
|
|
// MIT License
|
|
|
|
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
|
|
ARDUINOJSON_BEGIN_PRIVATE_NAMESPACE
|
|
|
|
template <>
|
|
class Writer<::String, void> {
|
|
static const size_t bufferCapacity = ARDUINOJSON_STRING_BUFFER_SIZE;
|
|
|
|
public:
|
|
explicit Writer(::String& str) : destination_(&str) {
|
|
size_ = 0;
|
|
}
|
|
|
|
~Writer() {
|
|
flush();
|
|
}
|
|
|
|
size_t write(uint8_t c) {
|
|
if (size_ + 1 >= bufferCapacity)
|
|
if (flush() != 0)
|
|
return 0;
|
|
buffer_[size_++] = static_cast<char>(c);
|
|
return 1;
|
|
}
|
|
|
|
size_t write(const uint8_t* s, size_t n) {
|
|
for (size_t i = 0; i < n; i++) {
|
|
write(s[i]);
|
|
}
|
|
return n;
|
|
}
|
|
|
|
size_t flush() {
|
|
ARDUINOJSON_ASSERT(size_ < bufferCapacity);
|
|
buffer_[size_] = 0;
|
|
if (destination_->concat(buffer_))
|
|
size_ = 0;
|
|
return size_;
|
|
}
|
|
|
|
private:
|
|
::String* destination_;
|
|
char buffer_[bufferCapacity];
|
|
size_t size_;
|
|
};
|
|
|
|
ARDUINOJSON_END_PRIVATE_NAMESPACE
|