GM6000 Digital Heater Controller Branch: main
SDX-1330
ObjectDetector.h
Go to the documentation of this file.
1#ifndef Cpl_Json_ObjectDetector_h_
2#define Cpl_Json_ObjectDetector_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include <stdlib.h> // for size_t
16
17
18///
19namespace Cpl {
20///
21namespace Json {
22
23/** This helper class is used to determine when an entire Json object has
24 been read from an input source.
25
26 This class does not read or store the incoming data - it simply inspect
27 the provide data (one byte at time) and declares a JSON object when it
28 see as match trailing '}' for the leading '{'
29
30 Usage:
31 \code
32
33
34 Cpl::Io::File::Input fd("bob.txt");
35 ObjectDetector detector;
36
37 while( fd.eof() == false )
38 {
39 uint8_t buffer[256];
40 int bytesRead;
41 if ( fd.read( buffer, sizeof(buffer), bytesRead ) )
42 {
43 size_t startPosition;
44 size_t endPosition;
45
46 if ( detector.scan( buffer, bytesRead, startPosition, endPosition ) )
47 {
48 // JSON object found.
49 // The initial '{' is at 'startPosition'
50 // The final/closing '}' is at 'endPosition'
51 // DO Something...
52 }
53 }
54 }
55
56 \endcode
57
58
59 */
61{
62public:
64
65public:
66 /** Inspect 'numBytes' and returns true if a complete JSON object was
67 found. The pointers 'startOffset' and 'endOffset' return the byte
68 offset to the start and end of the found JSON object. The offset is
69 based on the number of number consumed since the object was created
70 or reset() was called.
71
72 NOTE: The class does NOT VALIDATE the JSON syntax. It ONLY finds
73 starting and trailing curly braces. It assumes the JSON
74 syntax and quoted character escaping semantics when searching for
75 the trailing curly brace.
76
77 The method will ALWAYS return true if called after detecting a JSON
78 object and set 'startOffset' and 'endOffset' to zero. Use the reset()
79 method to restart/reuse the detector instance.
80 */
81 bool scan( const void* inputStream,
82 size_t numBytesToScan,
83 size_t& startOffset,
84 size_t& endOffset );
85
86 /// Resets the detector to being looking for a new JSON object
87 void reset();
88
89protected:
90 /// Detector state
92 {
93 eNOT_STARTED,
94 ePLAIN,
95 eQUOTED,
96 eESCAPED,
97 eFOUND
98 };
99
100 /// Current offset
101 size_t m_offset;
102
103 /// Offset of the initial '{'
105
106 /// Number of '{' encountered
108
109 /// Quoted key/value state
111};
112
113}; // end namespaces
114};
115#endif // end header latch
This helper class is used to determine when an entire Json object has been read from an input source.
Definition ObjectDetector.h:61
size_t m_braceCount
Number of '{' encountered.
Definition ObjectDetector.h:107
State_T m_state
Quoted key/value state.
Definition ObjectDetector.h:110
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.
State_T
Detector state.
Definition ObjectDetector.h:92
size_t m_offset
Current offset.
Definition ObjectDetector.h:101
size_t m_startOffset
Offset of the initial '{'.
Definition ObjectDetector.h:104
void reset()
Resets the detector to being looking for a new JSON object.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20