-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscriptPainelMT.js
314 lines (251 loc) · 11.3 KB
/
scriptPainelMT.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
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
async function buscarTodasMaquinas() {
try {
const response = await fetch(`${host}/api/maquina/findAll`);
if (!response.ok) {
const errorText = await response.text();
throw new Error(`HTTP error! status: ${response.status}, message: ${errorText}`);
}
const maquinas = await response.json();
// Exibir as máquinas no console
console.log('Lista de autômatos:', maquinas);
// Exibir as máquinas na página
exibirMaquinas(maquinas);
return maquinas;
} catch (error) {
console.error('Erro ao buscar autômatos:', error);
}
}
function exibirMaquinas(maquinas) {
const maquinas_list = document.getElementById('maq_list');
maquinas_list.innerHTML = ''; // Limpar todas as listas
maquinas.forEach(maquina => {
const maquina_container = document.createElement('div');
maquina_container.id = `${maquina.id}`;
maquina_container.className = 'element_maquina';
const rotulo_maquina = document.createElement('p');
rotulo_maquina.className = 'rotulo_maquina';
rotulo_maquina.innerHTML = `${maquina.nome}`;
const botao_teste = document.createElement('button');
botao_teste.textContent = 'Testar';
botao_teste.addEventListener('click', () => {
toggleTestarMaquina(maquina, maquina_container, botao_teste);
});
const botao_deletar_mt = document.createElement('button');
botao_deletar_mt.textContent = 'Deletar';
botao_deletar_mt.addEventListener('click', () => {
deletarMaquina(maquina);
});
const botao_detalhes_mt = document.createElement('button');
botao_detalhes_mt.textContent = 'Exibir Detalhes';
botao_detalhes_mt.addEventListener('click', () => {
toggleDetalhesMaquina(maquina, maquina_container, botao_detalhes_mt);
});
maquina_container.appendChild(rotulo_maquina);
maquina_container.appendChild(botao_teste);
maquina_container.appendChild(botao_detalhes_mt);
maquina_container.appendChild(botao_deletar_mt);
maquinas_list.appendChild(maquina_container);
});
function testarMaquina(id) {
const maquina_container = document.getElementById(`${id}`);
if (!maquina_container) {
console.error(`Elemento com ID maquina-${id} não encontrado.`);
return;
}
const input_container_mt = document.createElement('div');
input_container_mt.classList.add('input-container_mt');
const input_cadeia_mt = document.createElement('input');
input_cadeia_mt.setAttribute('type', 'text');
input_cadeia_mt.setAttribute('placeholder', 'Digite a cadeia aqui');
input_container_mt.appendChild(input_cadeia_mt);
const botao_enviar_mt = document.createElement('button');
botao_enviar_mt.textContent = 'Enviar';
botao_enviar_mt.addEventListener('click', () => {
const valorCadeia = input_cadeia_mt.value;
processarCadeia_MT(id, valorCadeia);
});
input_container_mt.appendChild(botao_enviar_mt);
maquina_container.appendChild(input_container_mt);
return maquina_container;
}
function toggleTestarMaquina(maquina, container, botao) {
const aba_teste_mt = container.querySelector('.input-container_mt');
const resposta = document.getElementById(`resposta-${maquina.id}`);
if (aba_teste_mt || resposta) {
botao.textContent = 'Testar';
if (aba_teste_mt) {
container.removeChild(aba_teste_mt);
}
if (resposta) {
container.removeChild(resposta);
}
}else {
const conteudo_anterior = container.querySelector('.input-container_mt');
const resposta_anterior = container.querySelector('.resposta');
if (conteudo_anterior) {
container.removeChild(conteudo_anterior);
}
if (resposta_anterior) {
container.removeChild(resposta_anterior);
}
testarMaquina(maquina.id);
botao.textContent = 'Ocultar Teste';
}
}
async function processarCadeia_MT(id, valorCadeia){
const execucao = {
"id":id,
"cadeia":valorCadeia
}
try {
const response = await fetch(`${host}/api/maquina/testarCadeia`, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(execucao)
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const jsonResponse = await response.json();
const secao_maquina = document.getElementById(`${id}`)
let resposta = document.getElementById(`resposta-${id}`);
if (!resposta) {
resposta = document.createElement('p');
resposta.id = `resposta-${id}`;
secao_maquina.appendChild(resposta);
}
if(jsonResponse.aceita){
resposta.className = 'aceita_cadeia';
resposta.textContent = 'Aceita';
}else{
resposta.className = 'rejeita_cadeia';
resposta.textContent = 'Rejeita: ' + jsonResponse.message;
}
secao_maquina.appendChild(resposta);
} catch (error) {
console.error('Erro ao executar autômato:', error);
}
}
function formatarTransicoesComoTabela_MT(transicoes, automato) {
const estados = Object.keys(transicoes);
const alfabeto = automato.alfabetoFita;
const estadosDeAceitacao = automato.estadosAceitacao;
const estadoInicial = automato.estadoInicial;
let tabela_html = '<table border="1" class="tabela_transicoes"><thead><tr><th>δ</th>';
alfabeto.forEach(simbolo => {
tabela_html += `<th>${simbolo}</th>`;
});
tabela_html += '</tr></thead><tbody>';
estados.forEach(estado => {
tabela_html += '<tr>';
if (estado === estadoInicial && estadosDeAceitacao.includes(estado)) {
tabela_html += `<td>*->${estado}</td>`;
} else if (estado === estadoInicial) {
tabela_html += `<td>->${estado}</td>`;
} else if (estadosDeAceitacao.includes(estado)) {
tabela_html += `<td>*${estado}</td>`;
} else {
tabela_html += `<td>${estado}</td>`;
}
alfabeto.forEach(simbolo => {
const transicao = transicoes[estado][simbolo];
if (transicao) {
tabela_html += `<td>${transicao.estadoDestino}, ${transicao.simboloEscrito}, ${transicao.movimento}</td>`;
} else {
tabela_html += '<td>-</td>';
}
});
tabela_html += '</tr>';
});
tabela_html += '</tbody></table>';
return tabela_html;
}
function toggleDetalhesMaquina(maquina, container, botao) {
const detalhes_container = container.querySelector('.detalhes');
if (detalhes_container) {
container.removeChild(detalhes_container);
botao.textContent = 'Exibir Detalhes';
} else {
const new_detalhes_container = document.createElement('div');
new_detalhes_container.classList.add('detalhes');
const detalhes_maquina = `
<div id="maquina-container-${maquina.id}"></div>
<pre><strong>Nome:</strong> ${maquina.nome}</pre>
<pre><string>Tipo:</strong> ${maquina.tipo}</pre>
<pre style="white-space: pre-wrap;"><strong>Estados <i>Q</i>:</strong> ${Object.keys(maquina.transicoes).join(', ')}</pre>
<pre><strong>Alfabeto Σ:</strong> ${maquina.alfabetoFita.join(', ')}</pre>
<pre><strong>Transições:</strong></pre>
<pre>${formatarTransicoesComoTabela_MT(maquina.transicoes, maquina)}</pre>
<pre><strong>Estado inicial:</strong> ${maquina.estadoInicial}</pre>
<pre style="white-space: pre-wrap;"><strong>Estados de aceitação:</strong> ${maquina.estadosAceitacao.join(', ')}</pre>
`;
new_detalhes_container.innerHTML = detalhes_maquina;
container.appendChild(new_detalhes_container);
botao.textContent = 'Ocultar Detalhes';
renderMaquinas(maquina);
}
}
async function renderMaquinas(maquina) {
const container = document.getElementById(`maquina-container-${maquina.id}`);
const maquinaContainer = document.createElement('div');
maquinaContainer.id = `maquina-${maquina.id}`;
maquinaContainer.className = 'maquina-container';
container.innerHTML = '';
container.appendChild(maquinaContainer);
const dotCode = `
digraph {
// Definir nós
${Object.keys(maquina.transicoes).map(estado => `${estado} [label="${estado}"];`).join('\n')}
// Definir estado inicial
initial [shape=plaintext, label=""];
initial -> ${maquina.estadoInicial};
// Definir estados de aceitação
${maquina.estadosAceitacao.map(estado => `${estado} [shape=doublecircle];`).join('\n')}
// Definir transições
${Object.keys(maquina.transicoes).map(origem => {
const transicoes = maquina.transicoes[origem];
return Object.keys(transicoes).map(simbolo => {
const transicao = transicoes[simbolo];
return `${origem} -> ${transicao.estadoDestino} [label="${simbolo} / ${transicao.simboloEscrito}, ${transicao.movimento}"];`;
}).join('\n');
}).join('\n')}
}
`;
// Renderizar o gráfico usando viz.js
const viz = new Viz();
viz.renderSVGElement(dotCode)
.then(svgElement => {
maquinaContainer.appendChild(svgElement);
})
.catch(error => {
// Tratar erros, se houver
console.error(`Erro ao renderizar o gráfico para a máquina ${maquina.id}:`, error);
});
}
async function deletarMaquina(maquina){
if(confirm('Tem certeza que deseja deletar este autômato?')){
await deletar(maquina);
}
}
async function deletar(maquina){
try {
const response = await fetch(`${host}/api/maquina/delete/${maquina.id}`, {
method: 'DELETE',
headers: {
'Content-Type': 'application/json'
}
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
await buscarTodasMaquinas();
} catch (error) {
console.error('Erro ao deletar a máquina:', error);
}
}
}
document.addEventListener('DOMContentLoaded', (event) => {
buscarTodasMaquinas();
});