GM6000 Digital Heater Controller Branch: main
SDX-1330
Basic.h
Go to the documentation of this file.
1#ifndef Cpl_Text_Tokenizer_Basic_h_
2#define Cpl_Text_Tokenizer_Basic_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
16
17///
18namespace Cpl {
19///
20namespace Text {
21///
22namespace Tokenizer {
23
24
25/** This concrete class performs basic tokenizing/parse functions on a
26 string. A token is a one or more characters separated by one or
27 more delimiter characters. The parsing is a destructive parsing in
28 that it modifies the original string. The tokenizing is done
29 one token at time i.e. when the next() method is called.
30 */
31class Basic
32{
33private:
34 /// Definition of whitespace
35 static const char* whiteSpace() { return " \t\n\r"; };
36
37private:
38 /// Pointer to the current token
39 char* m_ptr;
40
41 /// Pointer to the token delimiters
42 const char* m_delimiters;
43
44 /// Pointer to the start of the original string
45 char* m_base;
46
47 /// Number of tokens parsed to date
48 unsigned m_count;
49
50public:
51 /// Constructor. Uses whitespace for token delimiters
52 Basic( char* stringToParse );
53
54 /// Constructor. Uses the specified character set for token delimiters
55 Basic( char* stringToParse, const char* delimiterSet );
56
57public:
58 /** Returns a pointer to the next token. Returns 0 if no tokens exist,
59 or the string has already been completed tokenized. NOTE: This
60 method is also used to get the 'first' token.
61 */
62 const char* next() noexcept;
63
64 /** Returns a pointer to the portion of the string that has not
65 been tokenized, i.e. the first character AFTER the delimiter character
66 that marked the end of the current token to End-of-String.
67 */
68 inline const char* remaining() const noexcept { return m_ptr; }
69
70
71public:
72 /** This method returns the Nth token. Where N is the zero-based token
73 index, i.e. 0:=first token, 1:=second token, etc. If N is out-of-bound
74 then 0 is returned. Typically this method is called once the entire
75 string has been tokenized.
76 */
77 const char* getToken( unsigned n ) const noexcept;
78
79 /** Returns the number of tokens parsed to-date.
80 */
81 inline unsigned numTokens() const noexcept { return m_count; }
82
83};
84
85
86}; // end namespaces
87};
88};
89#endif // end header latch
This concrete class performs basic tokenizing/parse functions on a string.
Definition Basic.h:32
unsigned numTokens() const noexcept
Returns the number of tokens parsed to-date.
Definition Basic.h:81
Basic(char *stringToParse)
Constructor. Uses whitespace for token delimiters.
const char * getToken(unsigned n) const noexcept
This method returns the Nth token.
const char * next() noexcept
Returns a pointer to the next token.
Basic(char *stringToParse, const char *delimiterSet)
Constructor. Uses the specified character set for token delimiters.
const char * remaining() const noexcept
Returns a pointer to the portion of the string that has not been tokenized, i.e.
Definition Basic.h:68
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20