-
Notifications
You must be signed in to change notification settings - Fork 0
/
CommentAutomaton.cpp
76 lines (63 loc) · 1.5 KB
/
CommentAutomaton.cpp
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#include "CommentAutomaton.h"
#include <iostream>
#include <sstream>
using namespace std;
void CommentAutomaton::S0(const std::string& input) {
multilineInc = 0;
if (input[inputRead] == '#') {
inputRead++;
S1(input);
}
}
void CommentAutomaton::S1(const std::string& input) {
if (input[inputRead] != '|') {
inputRead++;
S2(input);
} else if (input[inputRead] == '|') {
multiline = true;
inputRead++;
S3(input);
}
}
void CommentAutomaton::S2(const std::string& input) {
if (input[inputRead] != '\n') {
inputRead++;
S2(input);
} else {
return;
}
}
void CommentAutomaton::S3(const std::string& input) {
int size = input.size();
if (inputRead >= size) {
terminateFlag = true;
return;
} else if (input[inputRead] != '|') {
if (input[inputRead] == '\n') {
multilineInc++;
}
inputRead++;
S3(input);
} else if (input[inputRead] == '|') {
inputRead++;
S4(input);
} else if (input[inputRead] == '\n') {
multilineInc++;
inputRead++;
}
}
void CommentAutomaton::S4(const std::string& input) {
if (input[inputRead] == '#') {
inputRead++;
return;
} else if (input[inputRead] == '|') {
inputRead++;
S3(input);
} else {
if (input[inputRead] == '\n') {
S3(input);
}
terminateFlag = true;
return;
}
}