-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTokenizer.cpp
211 lines (169 loc) · 4.79 KB
/
Tokenizer.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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
////////////////////////////////////////
// Tokenizer.cpp
////////////////////////////////////////
#define _CRT_SECURE_NO_WARNINGS
#include "Tokenizer.h"
////////////////////////////////////////////////////////////////////////////////
Tokenizer::Tokenizer() {
File=0;
LineNum=0;
strcpy(FileName,"");
}
////////////////////////////////////////////////////////////////////////////////
Tokenizer::~Tokenizer() {
if(File) {
printf("ERROR: Tokenizer::~Tokenizer()- Closing file '%s'\n",FileName);
fclose((FILE*)File);
}
}
////////////////////////////////////////////////////////////////////////////////
bool Tokenizer::Open(const char *fname) {
File=(void*)fopen(fname,"r");
LineNum=1;
if(File==0) {
printf("ERROR: Tokenzier::Open()- Can't open file '%s'\n",fname);
return false;
}
strcpy(FileName,fname);
return true;
}
////////////////////////////////////////////////////////////////////////////////
bool Tokenizer::Close() {
if(File) fclose((FILE*)File);
else return false;
File=0;
return true;
}
////////////////////////////////////////////////////////////////////////////////
bool Tokenizer::Abort(char *error) {
printf("ERROR '%s' line %d: %s\n",FileName,LineNum,error);
Close();
return false;
}
////////////////////////////////////////////////////////////////////////////////
char Tokenizer::GetChar() {
char c=char(getc((FILE*)File));
if(c=='\n') LineNum++;
return c;
}
////////////////////////////////////////////////////////////////////////////////
char Tokenizer::CheckChar() {
int c=getc((FILE*)File);
ungetc(c,(FILE*)File);
return char(c);
}
////////////////////////////////////////////////////////////////////////////////
int Tokenizer::GetInt() {
SkipWhitespace();
int pos=0;
char temp[256];
// Get first character ('-' or digit)
char c=CheckChar();
if(c=='-') {
temp[pos++]=GetChar();
c=CheckChar();
}
if(!isdigit(c)) {
printf("ERROR: Tokenizer::GetInt()- Expecting int on line %d of '%s'\n",LineNum,FileName);
return 0;
}
temp[pos++]=GetChar();
// Get integer potion
while(isdigit(c=CheckChar())) temp[pos++]=GetChar();
// Finish
temp[pos++]='\0';
return atoi(temp);
}
////////////////////////////////////////////////////////////////////////////////
// BUG: can't parse ".2", "f", or "F"
// Uses: [-]I[.[I]][(e|E)[+|-]I]
// Should use: [+|-](I|I.|.I|I.I)[(e|E)[+|-]I][f|F]
float Tokenizer::GetFloat() {
SkipWhitespace();
int pos=0;
char temp[256];
// Get first character ('-' or digit)
char c=CheckChar();
if(c=='-') {
temp[pos++]=GetChar();
c=CheckChar();
}
if(!isdigit(c)) {
printf("ERROR: Tokenizer::GetFloat()- Expecting float on line %d of '%s' '%c'\n",LineNum,FileName,c);
return 0.0f;
}
temp[pos++]=GetChar();
// Get integer potion of mantissa
while(isdigit(c=CheckChar())) temp[pos++]=GetChar();
// Get fraction component
if(c=='.') {
temp[pos++]=GetChar();
while(isdigit(c=CheckChar())) temp[pos++]=GetChar();
}
// Get exponent
if(c=='e' || c=='E') {
temp[pos++]=GetChar();
c=CheckChar();
if(c=='+' || c=='-') {
temp[pos++]=GetChar();
c=CheckChar();
}
if(!isdigit(c)) {
printf("ERROR: Tokenizer::GetFloat()- Poorly formatted float exponent on line %d of '%s'\n",LineNum,FileName);
return 0.0f;
}
while(isdigit(c=CheckChar())) temp[pos++]=GetChar();
}
// Finish
temp[pos++]='\0';
return float(atof(temp));
}
////////////////////////////////////////////////////////////////////////////////
bool Tokenizer::GetToken(char *str) {
SkipWhitespace();
int pos=0;
char c=CheckChar();
while(c!=' ' && c!='\n' && c!='\t' && c!='\r' && !feof((FILE*)File)) {
str[pos++]=GetChar();
c=CheckChar();
}
str[pos]='\0';
return true;
}
////////////////////////////////////////////////////////////////////////////////
bool Tokenizer::FindToken(const char *tok) {
int pos=0;
while(tok[pos]!='\0') {
if(feof((FILE*)File)) return false;
char c=GetChar();
if(c==tok[pos]) pos++;
else pos=0;
}
return true;
}
////////////////////////////////////////////////////////////////////////////////
bool Tokenizer::SkipWhitespace() {
char c=CheckChar();
bool white=false;
while(isspace(c)) {
GetChar();
c=CheckChar();
white=true;
}
return white;
}
////////////////////////////////////////////////////////////////////////////////
bool Tokenizer::SkipLine() {
char c=GetChar();
while(c!='\n') {
if(feof((FILE*)File)) return false;
c=GetChar();
}
return true;
}
////////////////////////////////////////////////////////////////////////////////
bool Tokenizer::Reset() {
if(fseek((FILE*)File,0,SEEK_SET)) return false;
return true;
}
////////////////////////////////////////////////////////////////////////////////