Skip to content

Instantly share code, notes, and snippets.

@dj-amadeous
Created June 3, 2018 21:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dj-amadeous/999c3ceccab8d62a1af40ceb2888a1e3 to your computer and use it in GitHub Desktop.
Save dj-amadeous/999c3ceccab8d62a1af40ceb2888a1e3 to your computer and use it in GitHub Desktop.
var fs = require('fs');
function cascade(callbacks, callback) {
// clone the array
var functions = callbacks.slice(0);
function processNext(err) {
if (err) {
return callback(err);
}
var args = Array.prototype.slice.call(arguments);
var func = functions.shift();
if (func) {
// remove first argument containing the error
args.shift();
} else {
func = callback;
}
args.push(processNext);
func.apply(this, args);
}
processNext.call(this);
}
function append_some_a_to_b(callback) {
var aFd, bFd,
buffer = new Buffer(10);
cascade([
function open_a(next) {
fs.open(__dirname + '/a.txt', 'r', next);
},
function read_from_a(fd, next) {
aFd = fd;
fs.read(aFd, buffer, 0, buffer.length, 0, next);
},
function close_a(bytesRead, buf, next) {
fs.close(aFd, next);
},
function open_b(next) {
fs.open(__dirname + '/b.txt', 'a', next);
},
function stat_b(fd, next) {
bFd = fd;
fs.fstat(bFd, next);
},
function write_b(bStats, next) {
fs.write(bFd, buffer, 0, buffer.length, bStats.size, next);
},
function close_b(bytesWritten, buf, next) {
fs.close(bFd, next);
}
], callback);
}
console.log('starting...');
append_some_a_to_b(function done(err) {
if (err) {
throw err;
}
console.log('done');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment