From 39895a677e5d370824e702cfe90ebc67737b8482 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Wed, 12 May 2021 09:12:09 +0200 Subject: import ArduinoJson 6.18.0 --- .../ArduinoJson/Strings/SizedRamStringAdapter.hpp | 55 ++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 include/lib/ArduinoJson/Strings/SizedRamStringAdapter.hpp (limited to 'include/lib/ArduinoJson/Strings/SizedRamStringAdapter.hpp') diff --git a/include/lib/ArduinoJson/Strings/SizedRamStringAdapter.hpp b/include/lib/ArduinoJson/Strings/SizedRamStringAdapter.hpp new file mode 100644 index 0000000..fe23408 --- /dev/null +++ b/include/lib/ArduinoJson/Strings/SizedRamStringAdapter.hpp @@ -0,0 +1,55 @@ +// ArduinoJson - https://arduinojson.org +// Copyright Benoit Blanchon 2014-2021 +// MIT License + +#pragma once + +#include +#include +#include + +#include // strcmp + +namespace ARDUINOJSON_NAMESPACE { + +class SizedRamStringAdapter { + public: + SizedRamStringAdapter(const char* str, size_t n) : _str(str), _size(n) {} + + int compare(const char* other) const { + return safe_strncmp(_str, other, _size); + } + + bool equals(const char* expected) const { + return compare(expected) == 0; + } + + bool isNull() const { + return !_str; + } + + void copyTo(char* p, size_t n) const { + memcpy(p, _str, n); + } + + size_t size() const { + return _size; + } + + const char* begin() const { + return _str; + } + + typedef storage_policies::store_by_copy storage_policy; + + private: + const char* _str; + size_t _size; +}; + +template +inline SizedRamStringAdapter adaptString(const TChar* str, size_t size) { + return SizedRamStringAdapter(reinterpret_cast(str), size); +} + +} // namespace ARDUINOJSON_NAMESPACE -- cgit v1.2.3