-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmdparser.h
60 lines (50 loc) · 1.01 KB
/
cmdparser.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#ifndef __cmdparser_H__
#define __cmdparser_H__
#include "cmdtoken.h"
#include "serialcmdstream.h"
// Define max readers :
// Serial port
// WiFi UDP
#define CMDPARSER_MAX_STREAMS 2
namespace Cmd
{
class Parser
{
public:
Parser();
bool process();
inline Stream* lastStream() const;
inline const Token& cmd() const;
inline const Token& arg() const;
inline void shiftArg();
inline void resetArg();
protected:
Token m_cmd;
Token m_arg;
Stream *m_streams[ CMDPARSER_MAX_STREAMS ];
Stream *m_lastStream;
#if defined( SERIAL_COMMANDS )
SerialStream m_serialStream;
#endif
private:
void findNextToken( Token &token, const char *start );
};
// ----- INLINE FUNCTIONS -----
Stream* Parser::lastStream() const {
return m_lastStream;
}
const Token& Parser::cmd() const {
return m_cmd;
}
const Token& Parser::arg() const {
return m_arg;
}
void Parser::shiftArg() {
findNextToken( m_arg, m_arg.end() );
}
void Parser::resetArg() {
memcpy( &m_arg, &m_cmd, sizeof( m_arg ) );
shiftArg();
}
}
#endif