-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtext-reader.js
138 lines (122 loc) · 3.29 KB
/
text-reader.js
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
export class TextReader {
constructor(text) {
this.text = text;
this.index = 0;
}
setText(text) {
this.text = text;
this.index = 0;
}
appendText(text) {
this.text += text;
}
readLine() {
let char = "";
let line = "";
do {
char = this.readChar();
line += char;
} while (char != "\n" && this.canReadMore());
return line;
}
peekLine() {
let char = "";
let line = "";
do {
char = this.readChar();
line += char;
} while (char != "\n" && this.canReadMore());
return line;
}
readChar() {
let char = this.text[this.index];
this.index++;
return char;
}
peekChar() {
let char = this.text[this.index];
return char;
}
validate(text) {
for (var i = 0; i < text.length; i++) {
if (text[i] != this.text[this.index + i]) {
return false;
}
}
this.index += text.length;
return true;
}
peekValidate(text) {
for (var i = 0; i < text.length; i++) {
if (text[i] != this.text[this.index + i]) {
return false;
}
}
return true;
}
readUntil(...args) {
let result = this.peekUntil(...args);
this.index += result.result.length;
return result;
}
peekUntil(...args) {
let buffer = "";
let i = this.index;
while(i < this.text.length){
var match = this.findMatch(this.text, i, args);
if(match.result){
return { result : buffer, match : match.valueMatched };
}else{
buffer += this.text.charAt(i);
}
i++;
}
return { result : buffer };
}
findMatch(text, index, stringsToMatch){
let foundMatch = false;
for(let i = 0; i < stringsToMatch.length; i++){
let potentialMatch = true;
let str = stringsToMatch[i];
for(let j = 0; j < str.length; j++){
if(text.charAt(index + j) != str.charAt(j)){
potentialMatch = false;
break;
}
}
if(potentialMatch){
return { result : true, valueMatched : str };
}
}
return { result : false };
}
readToEnd() {
let rest = this.text.slice(this.index, this.text.lenght);
this.index = this.text.length;
return rest;
}
peekToEnd() {
return this.text.slice(this.index, this.text.lenght);
}
readWhiteSpace() {
let nextChar = this.peekChar();
let outText = "";
while (this.isWhiteSpace(nextChar)) {
outText += this.readChar();
nextChar = this.peekChar();
}
return outText;
}
isWhiteSpace(char) {
const whitespace = [
String.fromCharCode(13), //carriage return
String.fromCharCode(10), //new line
String.fromCharCode(32), //space
String.fromCharCode(9) //tab
];
return whitespace.indexOf(char) != -1;
}
canReadMore() {
return this.index != this.text.length;
}
}