// Copyright Benoit Blanchon 2014-2015 // MIT License // // Arduino JSON library // https://github.com/bblanchon/ArduinoJson #include "../../include/ArduinoJson/Internals/QuotedString.hpp" using namespace ArduinoJson::Internals; // How to escape special chars: // specialChars[2*i+1] => the special char // specialChars[2*i] => the char to use instead static const char specialChars[] = "\"\"\\\\b\bf\fn\nr\rt\t"; static inline char getSpecialChar(char c) { // Optimized for code size on a 8-bit AVR const char *p = specialChars; while (p[0] && p[1] != c) { p += 2; } return p[0]; } static inline size_t printCharTo(char c, Print &p) { char specialChar = getSpecialChar(c); return specialChar ? p.write('\\') + p.write(specialChar) : p.write(c); } size_t QuotedString::printTo(const char *s, Print &p) { if (!s) return p.print("null"); size_t n = p.write('\"'); while (*s) { n += printCharTo(*s++, p); } return n + p.write('\"'); } static char unescapeChar(char c) { // Optimized for code size on a 8-bit AVR const char *p = specialChars + 4; for (;;) { if (p[0] == '\0') return c; if (p[0] == c) return p[1]; p += 2; } } static inline bool isQuote(char c) { return c == '\"' || c == '\''; } char *QuotedString::extractFrom(char *input, char **endPtr) { char *startPtr = input + 1; // skip the quote char *readPtr = startPtr; char *writePtr = startPtr; char c; char firstChar = *input; char stopChar = firstChar; // closing quote is the same as opening quote if (!isQuote(firstChar)) goto ERROR_OPENING_QUOTE_MISSING; for (;;) { c = *readPtr++; if (c == '\0') goto ERROR_CLOSING_QUOTE_MISSING; if (c == stopChar) goto SUCCESS; if (c == '\\') { // replace char c = unescapeChar(*readPtr++); if (c == '\0') goto ERROR_ESCAPE_SEQUENCE_INTERRUPTED; } *writePtr++ = c; } SUCCESS: // end the string here *writePtr = '\0'; // update end ptr *endPtr = readPtr; // return pointer to unquoted string return startPtr; ERROR_OPENING_QUOTE_MISSING: ERROR_CLOSING_QUOTE_MISSING: ERROR_ESCAPE_SEQUENCE_INTERRUPTED: return NULL; }