Ho costruito un interprete C in C# qualche tempo fa e ora ho iniziato a convertirlo in Javascript. Tutto andava bene fino a quando ho capito che js non ha la funzione sleep. Il mio interprete usa un parser ricorsivo e si interrompe per l'input dell'utente mentre è annidato parecchie funzioni in profondità (in C# ho usato waithandle in un secondo thread). Ho guardato setInterval e setTimeout ma sono asincroni/non bloccanti; ovviamente un busywait è fuori discussione e ho visto un'implementazione di timed_queue che ho trovato su SO ma senza fortuna. Ho provato il parser sia nella finestra principale che in un webworker. Sto usando jQuery. Ho un'esperienza limitata con js e sto cercando idee da perseguire. Conosco poco sulla continuazione che passa stile, o rendimento e mi chiedo se potrebbero tenere la chiave. Qui è un po 'tagliato dal codice per mostrare alcuni dei controlscript. Tutte le idee per favore ...javascript loop anonimi in attesa dell'input dell'utente
var STATE = {
START: "START",
RUN: "RUN", //take continuous steps at waitTime delay
STEP: "STEP", //take 1 step
PAUSE: "PAUSE",//wait for next step command
STOP: "STOP",
ERROR: "ERROR"
}
var state = state.STOP;
function parsing_process() //long process we may want to pause or wait in
{
while(token !== end_of_file)//
{
//do lots of stuff - much of it recursive
//the call to getNextToken will be encountered a lot in the recursion
getNextToken();
if (state === STATE.STOP)
break;
}
}
function getNextToken()
{
//retrieve next token from lexer array
if (token === end_of_line)
{
//tell the gui to highlight the current line
if (state === STATE.STOP)
return;
if (state === STATE.STEP)//wait for next step
{
//mimick wait for user input by using annoying alert
alert("click me to continue")
}
if (state === STATE.RUN) {
//a delay here - set by a slider in the window
//a busy wait haults processing of the window
}
}
}
che ho ottenuto questo per lavorare in Firefox utilizzando task.js
<html>
<head>
<title>task.js examples: sleep</title>
<script type="application/javascript" src="task.js"></script>
</head>
<body>
Only works in FIREFOX
<button onclick="step()">Step</button>
<button onclick="run()">Run</button>
<button onclick="stop()">Stop</button>
<pre style="border: solid 1px black; width: 300px; height: 200px;" id="out">
</pre>
<script type="application/javascript;version=1.8">
function start() {
process();
}
function step() {
if (state === STATE.STOP)
start();
state = STATE.STEP;
}
function run() {
if (state === STATE.STOP)
start();
state = STATE.RUN;
}
function stop() {
state = STATE.STOP;
}
var STATE = {
START: "START",
RUN: "RUN", //take continuous steps at sleepTime delay
STEP: "STEP", //take 1 step
PAUSE: "PAUSE",//wait for next step command
STOP: "STOP",
ERROR: "ERROR"
}
var state = STATE.STOP;
var sleepTime = 500;
function process() {
var { spawn, choose, sleep } = task;
var out = document.getElementById("out");
var i=0;
out.innerHTML = "i="+i;
var sp = spawn(function() {
while(state !== STATE.STOP)
{
i++;
out.innerHTML = "i="+i;
if (state === STATE.RUN)
{
yield sleep(sleepTime);
}
if (state === STATE.STEP)
state = STATE.PAUSE;
while (state===STATE.PAUSE)
{
yield;
}
}
});
}
</script>
</body>
</html>
sarei grato se qualcuno che sapeva qualcosa di promesse potrebbe darmi qualche più indizi. La mia applicazione non è di tipo consumer, ma sarebbe bella se funzionasse più di Firefox
In che ambiente * stai correndo? L'assenza di una funzione 'sleep' è principalmente una cosa * ambientale *, non una cosa del linguaggio. –
Dovresti usare le promesse. – SLaks
Puoi spiegare come potrebbe essere utilizzato, ad esempio, qual è lo scopo? – Roberto