|
@@ -284,17 +284,6 @@ void findSeparator(const char *buffer, size_t size, size_t &i, const char expect
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-bool extractValue(const char *buffer, size_t size, size_t &i, const char expectedEndByte, microjson::JsonProperty &property) {
|
|
|
|
- if (size == 0) {
|
|
|
|
- i = SIZE_MAX;
|
|
|
|
- return false;
|
|
|
|
- }
|
|
|
|
- lookForValue(buffer, size, i, property);
|
|
|
|
- findSeparator(buffer, size, i, expectedEndByte);
|
|
|
|
-
|
|
|
|
- return property.checkValue();
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
using Extractor = bool(*)(const char *, size_t, size_t &, const char, microjson::JsonProperty &);
|
|
using Extractor = bool(*)(const char *, size_t, size_t &, const char, microjson::JsonProperty &);
|
|
|
|
|
|
template<typename R,
|
|
template<typename R,
|
|
@@ -351,6 +340,17 @@ void appendValue(const char* buffer, microjson::JsonArray &values, const microjs
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+bool microjson::extractValue(const char *buffer, size_t size, size_t &i, const char expectedEndByte, microjson::JsonProperty &property) {
|
|
|
|
+ if (size == 0) {
|
|
|
|
+ i = SIZE_MAX;
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ lookForValue(buffer, size, i, property);
|
|
|
|
+ findSeparator(buffer, size, i, expectedEndByte);
|
|
|
|
+
|
|
|
|
+ return property.checkValue();
|
|
|
|
+}
|
|
|
|
+
|
|
bool microjson::extractProperty(const char *buffer, size_t size, size_t &i, const char expectedEndByte, microjson::JsonProperty &property) {
|
|
bool microjson::extractProperty(const char *buffer, size_t size, size_t &i, const char expectedEndByte, microjson::JsonProperty &property) {
|
|
if (size == 0) {
|
|
if (size == 0) {
|
|
i = SIZE_MAX;
|
|
i = SIZE_MAX;
|