mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			67 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright Benoit Blanchon 2014-2017
 | |
| // MIT License
 | |
| //
 | |
| // Arduino JSON library
 | |
| // https://bblanchon.github.io/ArduinoJson/
 | |
| // If you like this project, please add a star!
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #if ARDUINOJSON_ENABLE_STD_STRING || ARDUINOJSON_ENABLE_ARDUINO_STRING
 | |
| 
 | |
| #if ARDUINOJSON_ENABLE_ARDUINO_STRING
 | |
| #include <WString.h>
 | |
| #endif
 | |
| 
 | |
| #if ARDUINOJSON_ENABLE_STD_STRING
 | |
| #include <string>
 | |
| #endif
 | |
| 
 | |
| namespace ArduinoJson {
 | |
| namespace Internals {
 | |
| 
 | |
| template <typename TString>
 | |
| struct StdStringTraits {
 | |
|   template <typename Buffer>
 | |
|   static char* duplicate(const TString& str, Buffer* buffer) {
 | |
|     if (!str.c_str()) return NULL;  // <- Arduino string can return NULL
 | |
|     size_t size = str.length() + 1;
 | |
|     void* dup = buffer->alloc(size);
 | |
|     if (dup != NULL) memcpy(dup, str.c_str(), size);
 | |
|     return static_cast<char*>(dup);
 | |
|   }
 | |
| 
 | |
|   struct Reader : CharPointerTraits<char>::Reader {
 | |
|     Reader(const TString& str) : CharPointerTraits<char>::Reader(str.c_str()) {}
 | |
|   };
 | |
| 
 | |
|   static bool equals(const TString& str, const char* expected) {
 | |
|     return 0 == strcmp(str.c_str(), expected);
 | |
|   }
 | |
| 
 | |
|   static void append(TString& str, char c) {
 | |
|     str += c;
 | |
|   }
 | |
| 
 | |
|   static const bool has_append = true;
 | |
|   static const bool has_equals = true;
 | |
|   static const bool should_duplicate = true;
 | |
| };
 | |
| 
 | |
| #if ARDUINOJSON_ENABLE_ARDUINO_STRING
 | |
| template <>
 | |
| struct StringTraits<String, void> : StdStringTraits<String> {};
 | |
| template <>
 | |
| struct StringTraits<StringSumHelper, void> : StdStringTraits<StringSumHelper> {
 | |
| };
 | |
| #endif
 | |
| 
 | |
| #if ARDUINOJSON_ENABLE_STD_STRING
 | |
| template <>
 | |
| struct StringTraits<std::string, void> : StdStringTraits<std::string> {};
 | |
| #endif
 | |
| }
 | |
| }
 | |
| 
 | |
| #endif
 |