I have this code originally in python.
SendSerialPortCommand("XXX")
time.delay(0.5)
SendSerialPortCommand("YYY")
I converted this code to node.js but the code looks much uglier.
SendSerialPortCommand("XXX");
setTimeout(function () {
SendSerialPortCommand("YYY");
}, 500);
Imagine if my python code looks like this.
SendSerialPortCommand("XXX")
time.delay(0.5)
SendSerialPortCommand("YYY")
time.delay(0.5)
SendSerialPortCommand("AAA")
time.delay(0.5)
SendSerialPortCommand("BBB")
The node.js code will look really ugly with setTimeout()
inside setTimeout()
.
How can the node.js code be improved in terms of readability? I don't care about violating asynchronous nature of javascript for this question. Important thing is readability.
I have this code originally in python.
SendSerialPortCommand("XXX")
time.delay(0.5)
SendSerialPortCommand("YYY")
I converted this code to node.js but the code looks much uglier.
SendSerialPortCommand("XXX");
setTimeout(function () {
SendSerialPortCommand("YYY");
}, 500);
Imagine if my python code looks like this.
SendSerialPortCommand("XXX")
time.delay(0.5)
SendSerialPortCommand("YYY")
time.delay(0.5)
SendSerialPortCommand("AAA")
time.delay(0.5)
SendSerialPortCommand("BBB")
The node.js code will look really ugly with setTimeout()
inside setTimeout()
.
How can the node.js code be improved in terms of readability? I don't care about violating asynchronous nature of javascript for this question. Important thing is readability.
Share Improve this question edited Mar 27, 2016 at 0:39 guagay_wk asked Mar 27, 2016 at 0:34 guagay_wkguagay_wk 28.1k64 gold badges200 silver badges309 bronze badges 1- 1 The nested timeouts is a variation of the asynchronous 'pyramid of doom'. One alternative approach is to use some form of streams: this includes promises. – user2864740 Commented Mar 27, 2016 at 1:15
4 Answers
Reset to default 51. One-liner solution:
Previously accepted solution just plicates the things, and not brings any readability or improvement. Do it like this then, just one-liners:
setTimeout(function(){ SendSerialPortCommand("XXX"); }, 500);
setTimeout(function(){ SendSerialPortCommand("YYY"); }, 1500);
setTimeout(function(){ SendSerialPortCommand("ZZZ"); }, 2000);
2. Simple configurable solution:
If you want to make it configurable, move options to the config above, and call in the loop, alike:
var schedulerData = [
{delay: 500, params: "XXX"},
{delay: 1500, params: "YYY"},
{delay: 2000, params: "ZZZ"}
];
for (var i in schedulerData) {
var doTimeout = function(param, delay) {
setTimeout(function(){ SendSerialPortCommand(param); }, delay );
};
doTimeout(schedulerData[i].params, schedulerData[i].delay);
}
Here's the JSFiddle, to play with.
3. Using node module node-fibers
If you want advanced solution through node.js to "show off", you may go node-fibers
way, and to create sleep function, alike in their manual.
var Fiber = require('fibers');
function sleep(ms) {
var fiber = Fiber.current;
setTimeout(function() {
fiber.run();
}, ms);
Fiber.yield();
}
Fiber(function() {
SendSerialPortCommand("XXX");
sleep(1000);
SendSerialPortCommand("YYY");
}).run();
console.log('still executing the main thread');
node-fibers
implemenation is being used in tons of other smaller libraries, alike WaitFor. More information could be found here.
4. Using Promise
& Deferred
Objects
You can create a Promise based timeout function. Joe described one of possible implementations. But I will provide small code snippet, for easier understanding on how it actually works, using Defferred
from jQuery:
function wait(ms) {
var deferred = $.Deferred();
setTimeout(deferred.resolve, ms);
// We just need to return the promise not the whole deferred.
return deferred.promise();
}
// Use it
wait(500).then(function () {
SendSerialPortCommand("XXX");
}).wait(500).then(function () {
SendSerialPortCommand("YYY");
});
If promises are not supported, you will need to get polyfills for ECMAScript, for example Promises from core-js
package or any other standalone ponent of Promises/A+ implementation.
Deffered, might be gotten as separate Deffered
package for NPM as well, the concept is nicely described here.
You could use promises:
function Delay(duration) {
return new Promise((resolve) => {
setTimeout(() => resolve(), duration);
});
}
function SendSerialPortCommand(mand) {
// Code that actually sends the mand goes here...
console.log(mand);
return Promise.resolve();
}
Promise.resolve()
.then(() => SendSerialPortCommand("XXX"))
.then(() => Delay(500))
.then(() => SendSerialPortCommand("YYY"))
.then(() => Delay(500))
.then(() => SendSerialPortCommand("AAA"))
.then(() => Delay(500))
.then(() => SendSerialPortCommand("BBB"));
Or, including the delay into the SendSerialPortCommand:
function SendSerialPortCommand(mand, duration) {
return new Promise((resolve) => {
setTimeout(() => {
// Code that actually sends the mand goes here...
resolve();
}, duration);
});
}
Promise.resolve()
.then(() => SendSerialPortCommand("XXX", 500))
.then(() => SendSerialPortCommand("YYY", 500))
.then(() => SendSerialPortCommand("AAA", 500))
.then(() => SendSerialPortCommand("BBB", 500));
Node 4+ is required for using arrow functions, but this can be done without them easily, if needed.
Take note of the timings in running the functions later.
var scheduler = (function(){
var timer;
function exec(call, delay){
//clearTimeout(timer);
timer = setTimeout(call, delay);
};
return exec;
})()
SendSerialPortCommand("XXX");
scheduler(function(){SendSerialPortCommand("YYY")}, 500);
scheduler(function(){SendSerialPortCommand("AAA")}, 1000);
scheduler(function(){SendSerialPortCommand("BBB")}, 1500);
Since you asked for alternative ways I'll write one as well.
var mandIterator = 0;
var portCommands = [
'YYY',
'AAA'
];
SendSerialPortCommand(portCommands[mandIterator++])
var yourInterval = setInterval(function(){
SendSerialPortCommand(portCommands[mandIterator++])
}, 500);
At any point you need to stop the execution of those mands you just call
clearInterval(yourInterval)
If you're still concerned with readability you could enclose the iterator inside the setInterval and wrap contents in a nice clean function. Good luck!
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745276471a4620071.html
评论列表(0条)