![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This helper class is used to determine when an entire Json object has been read from an input source. More...
This helper class is used to determine when an entire Json object has been read from an input source.
This class does not read or store the incoming data - it simply inspect the provide data (one byte at time) and declares a JSON object when it see as match trailing '}' for the leading '{'
Usage:
#include <ObjectDetector.h>
Public Member Functions | |
bool | scan (const void *inputStream, size_t numBytesToScan, size_t &startOffset, size_t &endOffset) |
Inspect 'numBytes' and returns true if a complete JSON object was found. | |
void | reset () |
Resets the detector to being looking for a new JSON object. | |
Protected Types | |
enum | State_T { eNOT_STARTED , ePLAIN , eQUOTED , eESCAPED , eFOUND } |
Detector state. More... | |
Protected Attributes | |
size_t | m_offset |
Current offset. | |
size_t | m_startOffset |
Offset of the initial '{'. | |
size_t | m_braceCount |
Number of '{' encountered. | |
State_T | m_state |
Quoted key/value state. | |
|
protected |
Detector state.
void Cpl::Json::ObjectDetector::reset | ( | ) |
Resets the detector to being looking for a new JSON object.
bool Cpl::Json::ObjectDetector::scan | ( | const void * | inputStream, |
size_t | numBytesToScan, | ||
size_t & | startOffset, | ||
size_t & | endOffset | ||
) |
Inspect 'numBytes' and returns true if a complete JSON object was found.
The pointers 'startOffset' and 'endOffset' return the byte offset to the start and end of the found JSON object. The offset is based on the number of number consumed since the object was created or reset() was called.
NOTE: The class does NOT VALIDATE the JSON syntax. It ONLY finds starting and trailing curly braces. It assumes the JSON syntax and quoted character escaping semantics when searching for the trailing curly brace.
The method will ALWAYS return true if called after detecting a JSON object and set 'startOffset' and 'endOffset' to zero. Use the reset() method to restart/reuse the detector instance.
|
protected |
Number of '{' encountered.
|
protected |
Current offset.
|
protected |
Offset of the initial '{'.
|
protected |
Quoted key/value state.