summaryrefslogtreecommitdiff
path: root/include/lib/ArduinoJson/StringStorage
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2021-05-12 09:12:09 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2021-05-12 09:12:09 +0200
commit39895a677e5d370824e702cfe90ebc67737b8482 (patch)
treeff5b4cc9e373d33a795d50d9333e05549bd9f2b8 /include/lib/ArduinoJson/StringStorage
parent42e7fdf01c3a5701bb51e93ad6c650c3dbbc5450 (diff)
import ArduinoJson 6.18.0
Diffstat (limited to 'include/lib/ArduinoJson/StringStorage')
-rw-r--r--include/lib/ArduinoJson/StringStorage/StringCopier.hpp62
-rw-r--r--include/lib/ArduinoJson/StringStorage/StringMover.hpp42
-rw-r--r--include/lib/ArduinoJson/StringStorage/StringStorage.hpp23
3 files changed, 127 insertions, 0 deletions
diff --git a/include/lib/ArduinoJson/StringStorage/StringCopier.hpp b/include/lib/ArduinoJson/StringStorage/StringCopier.hpp
new file mode 100644
index 0000000..8b1104b
--- /dev/null
+++ b/include/lib/ArduinoJson/StringStorage/StringCopier.hpp
@@ -0,0 +1,62 @@
+// ArduinoJson - https://arduinojson.org
+// Copyright Benoit Blanchon 2014-2021
+// MIT License
+
+#pragma once
+
+#include <ArduinoJson/Memory/MemoryPool.hpp>
+
+namespace ARDUINOJSON_NAMESPACE {
+
+class StringCopier {
+ public:
+ StringCopier(MemoryPool& pool) : _pool(&pool) {}
+
+ void startString() {
+ _pool->getFreeZone(&_ptr, &_capacity);
+ _size = 0;
+ }
+
+ const char* save() {
+ ARDUINOJSON_ASSERT(_ptr);
+ return _pool->saveStringFromFreeZone(_size);
+ }
+
+ void append(const char* s) {
+ while (*s) append(*s++);
+ }
+
+ void append(const char* s, size_t n) {
+ while (n-- > 0) append(*s++);
+ }
+
+ void append(char c) {
+ if (!_ptr)
+ return;
+
+ if (_size >= _capacity) {
+ _ptr = 0;
+ _pool->markAsOverflowed();
+ return;
+ }
+
+ _ptr[_size++] = c;
+ }
+
+ bool isValid() {
+ return _ptr != 0;
+ }
+
+ const char* c_str() {
+ return _ptr;
+ }
+
+ typedef storage_policies::store_by_copy storage_policy;
+
+ private:
+ MemoryPool* _pool;
+ char* _ptr;
+ size_t _size;
+ size_t _capacity;
+};
+} // namespace ARDUINOJSON_NAMESPACE
diff --git a/include/lib/ArduinoJson/StringStorage/StringMover.hpp b/include/lib/ArduinoJson/StringStorage/StringMover.hpp
new file mode 100644
index 0000000..f727a7d
--- /dev/null
+++ b/include/lib/ArduinoJson/StringStorage/StringMover.hpp
@@ -0,0 +1,42 @@
+// ArduinoJson - https://arduinojson.org
+// Copyright Benoit Blanchon 2014-2021
+// MIT License
+
+#pragma once
+
+#include <ArduinoJson/Namespace.hpp>
+#include <ArduinoJson/Strings/StoragePolicy.hpp>
+
+namespace ARDUINOJSON_NAMESPACE {
+
+class StringMover {
+ public:
+ StringMover(char* ptr) : _writePtr(ptr) {}
+
+ void startString() {
+ _startPtr = _writePtr;
+ }
+
+ const char* save() const {
+ return _startPtr;
+ }
+
+ void append(char c) {
+ *_writePtr++ = c;
+ }
+
+ bool isValid() const {
+ return true;
+ }
+
+ const char* c_str() const {
+ return _startPtr;
+ }
+
+ typedef storage_policies::store_by_address storage_policy;
+
+ private:
+ char* _writePtr;
+ char* _startPtr;
+};
+} // namespace ARDUINOJSON_NAMESPACE
diff --git a/include/lib/ArduinoJson/StringStorage/StringStorage.hpp b/include/lib/ArduinoJson/StringStorage/StringStorage.hpp
new file mode 100644
index 0000000..36e6326
--- /dev/null
+++ b/include/lib/ArduinoJson/StringStorage/StringStorage.hpp
@@ -0,0 +1,23 @@
+// ArduinoJson - https://arduinojson.org
+// Copyright Benoit Blanchon 2014-2021
+// MIT License
+
+#pragma once
+
+#include <ArduinoJson/StringStorage/StringCopier.hpp>
+#include <ArduinoJson/StringStorage/StringMover.hpp>
+
+namespace ARDUINOJSON_NAMESPACE {
+
+template <typename TInput>
+StringCopier makeStringStorage(TInput&, MemoryPool& pool) {
+ return StringCopier(pool);
+}
+
+template <typename TChar>
+StringMover makeStringStorage(
+ TChar* input, MemoryPool&,
+ typename enable_if<!is_const<TChar>::value>::type* = 0) {
+ return StringMover(reinterpret_cast<char*>(input));
+}
+} // namespace ARDUINOJSON_NAMESPACE