-
Notifications
You must be signed in to change notification settings - Fork 0
/
cradle.js
172 lines (145 loc) · 3.23 KB
/
cradle.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
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
'use strict';
const q = require('q');
const TAB = '\t';
const util = require('util');
let look;
exports.look = function() {
return look;
};
let programText = '',
inputConsumed = false;
function getChar() {
const stdin = process.stdin;
if (stdin.isTTY) {
// If STDIN is attached to a terminal,
// we can switch to raw mode and consume
// characters one at a time as follows.
//
// Otherwise, we'll stream everything to a
// buffer than then character by character
// iterate over the buffer.
const deferred = q.defer();
stdin.setRawMode(true);
stdin.resume();
stdin.once('data', function(c) {
if ( c.toString() === '\u0003' ) {
process.exit();
}
stdin.pause();
look = c.toString();
stdin.removeAllListeners('error');
return deferred.resolve();
});
stdin.once('error', function(err) {
return deferred.reject(err);
});
return deferred.promise;
} else {
var deferred = q.defer();
if (!inputConsumed) {
stdin.on('readable', function () {
let readData = stdin.read();
if (readData) {
programText += readData.toString();
}
});
stdin.on('end', function() {
inputConsumed = true;
if (!programText.length) {
process.exit();
}
look = programText[0];
programText = programText.slice(1);
deferred.resolve();
});
} else {
if (!programText.length) {
process.exit();
}
look = programText[0];
programText = programText.slice(1);
deferred.resolve();
}
return deferred.promise;
}
}
exports.getChar = getChar;
function error(err) {
console.log('\nError: ' + err + '.');
console.log(new Error().stack);
throw new Error(err);
}
exports.error = error;
function abort(err) {
error(err);
//process.exit(1);
}
exports.abort = abort;
function expected(s) {
abort(s + ' Expected');
}
exports.expected = expected;
function match(x) {
if (look === x) return getChar();
else expected(`''` + x + `''`);
}
exports.match = match;
function isAlpha(c) {
return !!c.match(/[a-zA-Z]/);
}
exports.isAlpha = isAlpha;
function isDigit(c) {
return !!c.match(/\d/);
}
exports.isDigit = isDigit;
function getName() {
if (!isAlpha(look)) expected('Name');
let result = look.toUpperCase();
return getChar().thenResolve(result);
}
exports.getName = getName;
function getNum() {
if (!isDigit(look)) expected('Integer');
let result = look;
return getChar().thenResolve(result);
}
exports.getNum = getNum;
function emit(s) {
process.stdout.write(TAB + s);
}
exports.emit = emit;
function asmHeader() {
// This next line came from the EASy68K boilerplate
// look up what it means
emitLn('ORG\t$1000');
label('START');
}
function label(s) {
process.stdout.write(s + ':\n');
}
function emitLn(s) {
emit(s);
process.stdout.write('\n');
}
exports.emitLn = emitLn;
function simHalt() {
emitLn('SIMHALT');
}
function asmFooter() {
emitLn('END\tSTART');
}
function init() {
asmHeader();
return getChar();
}
exports.init = init;
function finish() {
asmFooter();
}
exports.finish = finish;
/** skeletal main program */
function main() {
return init()
.then(() => {
});
}