-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathterminal.js
143 lines (125 loc) · 3.72 KB
/
terminal.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
/* eslint-env node */
// Ponto de partida para executar um programa do portugol direto
// Obtendo o código do programa a ser executado de um arquivo ou da entrada de dados
import { readFile } from 'fs/promises';
import { createInterface } from 'readline/promises';
import PortugolRuntime from "./src/compiler/vm/portugolrun.js";
// Obter o código do programa a ser executado
let programa = `
programa {
funcao inicio() {
escreva("Olá mundo no Portugol!\\n")
}
}
`;
let filePrograma = undefined;
let ajuda = false;
let escreverTempo = true;
let compilarJS = false;
let argumentos = process.argv.slice(2);
for(let i = 0; i < argumentos.length; i++) {
let key = argumentos[i];
switch(key) {
case "-f":
case "--file":
case "-p":
case "--programa":
filePrograma = argumentos[++i];
break;
case "-t":
case "--tempo":
escreverTempo = parseInt(argumentos[++i]) != 0;
break;
case "--js":
compilarJS = parseInt(argumentos[++i]) != 0;
break;
case "-h":
case "--help":
case "-a":
case "--ajuda":
ajuda = true;
break;
}
}
if(ajuda) {
console.log("node terminal.js [--programa <arquivo>] [--tempo <0|1>] [--js <0|1>] [--ajuda]");
console.log("programa: arquivo com o código a ser executado");
console.log("Se não for informado, o programa padrão será executado");
console.log("tempo: se deve ou não imprimir o tempo de execução");
console.log("js: se deve ou não compilar para JS");
console.log("ajuda: exibe esta mensagem");
process.exit(0);
}
if(filePrograma) {
programa = await readFile(new URL(filePrograma, import.meta.url),{encoding:"utf8"});
}
let run;
let saidaEscrita = "";
const escreverSaida = () => {
const saida = run.div_saida.value;
if(saidaEscrita.length == saida.length) return;
if(saida.length < saidaEscrita.length) {
// Para não pular linha
process.stdout.write(saida);
saidaEscrita = saida;
} else {
process.stdout.write(saida.substring(saidaEscrita.length, saida.length));
saidaEscrita = saida;
}
};
let readline;
if(!process.stdin.isTTY) {
readline = createInterface({
input: process.stdin
});
let lines = [];
let fakeReadLine = {
question: async (question) => {
let line = lines.shift();
escreverSaida();
//process.stdout.write(line+"\n");
return line;
},
close: () => {
lines = [];
}
};
// quando não é TTY tem que ler assim
// Para funcionar fazer piping do input
for await (const line of readline) {
lines.push(line);
}
readline = fakeReadLine;
} else {
readline = createInterface({
input: process.stdin,
output: process.stdout
});
}
try {
run = new PortugolRuntime({
value:"",
leia: async () => {
const valorLido = await readline.question("");
saidaEscrita += valorLido+"\n";
return valorLido+"\n";
}
});
run.escrever_tempo = escreverTempo;
run.escrever_erros = false;
// Sem gráficos
run.iniciarBibliotecas(false,false,false,false,false);
const compilado = run.compilar(programa,false,compilarJS);
if(!compilado.success) throw "Erro na compilação";
let saidaListener = setInterval(escreverSaida,100);
try {
let saida = await run.executar(programa,compilado,false);
// escreve a saida uma ultima vez, é como um flush()
escreverSaida();
console.log();
} finally {
clearInterval(saidaListener);
}
} finally {
readline.close();
}