-
Notifications
You must be signed in to change notification settings - Fork 0
/
Utility.cs
320 lines (295 loc) · 8.21 KB
/
Utility.cs
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
namespace Lex
{
/*
* Class: Utility
*/
using System;
using System.Text;
public class Utility
{
#if DUMMY
/*
* Constants
*/
public const bool DEBUG = true;
public const bool SLOW_DEBUG = true;
public const bool DUMP_DEBUG = true;
/*public const bool DEBUG = false;
public const bool SLOW_DEBUG = false;
public const bool DUMP_DEBUG = false;*/
public const bool DESCENT_DEBUG = false;
public const bool OLD_DEBUG = false;
public const bool OLD_DUMP_DEBUG = false;
public const bool FOODEBUG = false;
public const bool DO_DEBUG = false;
#endif
/*
* Constants: Integer Bounds
*/
public const int INT_MAX = 2147483647;
/* UNDONE: What about other character values??? */
public const int MAX_SEVEN_BIT = 127;
public const int MAX_EIGHT_BIT = 256;
/*
* Function: enter
* Description: Debugging routine.
*/
public static void enter(String descent, char lexeme, int token)
{
StringBuilder sb = new StringBuilder();
sb.Append("Entering ");
sb.Append(descent);
sb.Append(" [lexeme: '");
if (lexeme < ' ')
{
lexeme += (char)64;
sb.Append("^");
}
sb.Append(lexeme);
sb.Append("'] [token: ");
sb.Append(token);
sb.Append("]");
Console.WriteLine(sb.ToString());
}
/*
* Function: leave
* Description: Debugging routine.
*/
public static void leave(String descent, char lexeme, int token)
{
StringBuilder sb = new StringBuilder();
sb.Append("Leaving ");
sb.Append(descent);
sb.Append(" [lexeme: '");
if (lexeme < ' ')
{
lexeme += (char)64;
sb.Append("^");
}
sb.Append(lexeme);
sb.Append("'] [token: ");
sb.Append(token);
sb.Append("]");
Console.WriteLine(sb.ToString());
}
/*
* Function: assert
* Description: Debugging routine.
*/
public static void assert(bool expr)
{
if (false == expr)
{
Console.WriteLine("Assertion Failed");
throw new ApplicationException("Assertion Failed.");
}
}
/*
* Function: doubleSize
*/
public static char[] doubleSize(char[] oldBuffer)
{
char[] newBuffer = new char[2 * oldBuffer.Length];
int elem;
for (elem = 0; elem < oldBuffer.Length; ++elem)
{
newBuffer[elem] = oldBuffer[elem];
}
return newBuffer;
}
/*
* Function: doubleSize
*/
public static byte[] doubleSize(byte[] oldBuffer)
{
byte[] newBuffer = new byte[2 * oldBuffer.Length];
int elem;
for (elem = 0; elem < oldBuffer.Length; elem++)
{
newBuffer[elem] = oldBuffer[elem];
}
return newBuffer;
}
/*
* Function: hex2bin
*/
public static char hex2bin(char c)
{
if ('0' <= c && '9' >= c)
{
return (char)(c - '0');
}
else if ('a' <= c && 'f' >= c)
{
return (char)(c - 'a' + 10);
}
else if ('A' <= c && 'F' >= c)
{
return (char)(c - 'A' + 10);
}
Error.impos("Bad hexidecimal digit" + Char.ToString(c));
return (char)0;
}
/*
* Function: ishexdigit
*/
public static bool ishexdigit(char c)
{
if (('0' <= c && '9' >= c)
|| ('a' <= c && 'f' >= c)
|| ('A' <= c && 'F' >= c))
{
return true;
}
return false;
}
/*
* Function: oct2bin
*/
public static char oct2bin(char c)
{
if ('0' <= c && '7' >= c)
{
return (char)(c - '0');
}
Error.impos("Bad octal digit " + Char.ToString(c));
return (char)0;
}
/*
* Function: isoctdigit
*/
public static bool isoctdigit(char c)
{
if ('0' <= c && '7' >= c)
{
return true;
}
return false;
}
/*
* Function: isspace
*/
public static bool IsSpace(char c)
{
if ('\b' == c
|| '\t' == c
|| '\n' == c
|| '\f' == c
|| '\r' == c
|| ' ' == c)
{
return true;
}
return false;
}
/*
* Function: IsNewline
*/
public static bool IsNewline(char c)
{
if ('\n' == c
|| '\r' == c)
{
return true;
}
return false;
}
/*
* Function: isalpha
*/
public static bool isalpha(char c)
{
if (('a' <= c && 'z' >= c)
|| ('A' <= c && 'Z' >= c))
{
return true;
}
return false;
}
/*
* Function: toupper
*/
public static char toupper(char c)
{
if (('a' <= c && 'z' >= c))
{
return (char)(c - 'a' + 'A');
}
return c;
}
/*
* Function: bytencmp
* Description: Compares up to n elements of
* byte array a[] against byte array b[].
* The first byte comparison is made between
* a[a_first] and b[b_first]. Comparisons continue
* until the null terminating byte '\0' is reached
* or until n bytes are compared.
* Return Value: Returns 0 if arrays are the
* same up to and including the null terminating byte
* or up to and including the first n bytes,
* whichever comes first.
*/
public static int bytencmp(byte[] a, int a_first, byte[] b, int b_first, int n)
{
int elem;
for (elem = 0; elem < n; ++elem)
{
/*System.out.print((char) a[a_first + elem]);
System.out.print((char) b[b_first + elem]);*/
if ('\0' == a[a_first + elem] && '\0' == b[b_first + elem])
{
/*Console.WriteLine("return 0");*/
return 0;
}
if (a[a_first + elem] < b[b_first + elem])
{
/*Console.WriteLine("return 1");*/
return 1;
}
else if (a[a_first + elem] > b[b_first + elem])
{
/*Console.WriteLine("return -1");*/
return -1;
}
}
/*Console.WriteLine("return 0");*/
return 0;
}
/*
* Function: charncmp
*/
public static int charncmp(char[] a, int a_first, char[] b, int b_first, int n)
{
int elem;
for (elem = 0; elem < n; ++elem)
{
if ('\0' == a[a_first + elem] && '\0' == b[b_first + elem])
{
return 0;
}
if (a[a_first + elem] < b[b_first + elem])
{
return 1;
}
else if (a[a_first + elem] > b[b_first + elem])
{
return -1;
}
}
return 0;
}
public static int Compare(char[] c, String s)
{
char[] x = s.ToCharArray();
for (int i = 0; i < x.Length; i++)
{
if (c[i] < x[i])
return 1;
if (c[i] > x[i])
return -1;
}
return 0;
}
}
}