|
'use strict'; |
|
|
|
// |
|
// Change these to simulate errors |
|
// |
|
let forceReadError = false; |
|
let forceWriteError = false; |
|
let handleErrors = true; |
|
|
|
let FsStream = require('node:fs'); |
|
|
|
let rs = FsStream.createReadStream(__filename); |
|
if (forceReadError) { |
|
rs = FsStream.createReadStream('/doesntexist/.enoent'); |
|
} |
|
|
|
let ws = FsStream.createWriteStream(__filename + '.junk'); |
|
if (forceWriteError) { |
|
ws = FsStream.createWriteStream('/doesntexist/.junk'); |
|
} |
|
|
|
if (handleErrors) { |
|
rs.once('error', function () { |
|
// WritableStream must be closed manually on (read) error |
|
console.log('rs:error -> ws.end()'); |
|
ws.end(); |
|
}); |
|
} else { |
|
rs.once('error', function (err) { |
|
console.log('rs error (unhandled)', err); |
|
}); |
|
} |
|
|
|
|
|
rs.once('open', function () { |
|
console.log('rs open'); |
|
}); |
|
rs.once('ready', function () { |
|
console.log('rs ready'); |
|
}); |
|
rs.once('readable', function () { |
|
console.log('rs readable'); |
|
}); |
|
rs.once('close', function () { |
|
console.log('rs close'); |
|
}); |
|
rs.once('end', function () { |
|
console.log('rs end'); |
|
}); |
|
rs.once('finish', function () { |
|
console.log('rs finish'); |
|
}); |
|
|
|
///* |
|
rs.on('readable', function () { |
|
for (let chunk = rs.read(); chunk; chunk = rs.read()) { |
|
console.log('chunk', chunk.length); |
|
// process `chunk` |
|
} |
|
}); |
|
//*/ |
|
|
|
if (handleErrors) { |
|
ws.once('error', function () { |
|
// ReadableStream must be closed manually on (write) error |
|
console.log('ws:error -> rs.close()'); |
|
rs.close(); |
|
}); |
|
} else { |
|
ws.once('error', function (err) { |
|
console.log('ws error (unhandled)', err); |
|
}); |
|
} |
|
|
|
ws.once('drain', function () { |
|
console.log('ws drain'); |
|
}); |
|
ws.once('pipe', function () { |
|
console.log('ws pipe'); |
|
}); |
|
ws.once('unpipe', function () { |
|
console.log('ws unpipe'); |
|
}); |
|
ws.once('close', function () { |
|
console.log('ws close'); |
|
}); |
|
ws.once('end', function () { |
|
console.log('ws end'); |
|
}); |
|
ws.once('finish', function () { |
|
console.log('ws finish'); |
|
}); |
|
|
|
rs.pipe(ws); |