-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fs: make
SyncWriteStream
inherit from Writable
Make the internal `SyncWriteStream` a proper `stream.Writable` subclass. This allows for quite a bit of simplification, since `SyncWriteStream` predates the streams2/streams3 implementations. Fixes: #8828 PR-URL: #8830 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]> (backport info) Refs: #9030
- Loading branch information
1 parent
5e6be7b
commit 688abac
Showing
2 changed files
with
57 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const spawn = require('child_process').spawn; | ||
const stream = require('stream'); | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
|
||
// require('internal/fs').SyncWriteStream is used as a stdio implementation | ||
// when stdout/stderr point to files. | ||
|
||
if (process.argv[2] === 'child') { | ||
// Note: Calling console.log() is part of this test as it exercises the | ||
// SyncWriteStream#_write() code path. | ||
console.log(JSON.stringify([process.stdout, process.stderr].map((stdio) => ({ | ||
instance: stdio instanceof stream.Writable, | ||
readable: stdio.readable, | ||
writable: stdio.writable, | ||
})))); | ||
|
||
return; | ||
} | ||
|
||
common.refreshTmpDir(); | ||
|
||
const filename = path.join(common.tmpDir, 'stdout'); | ||
const stdoutFd = fs.openSync(filename, 'w'); | ||
|
||
const proc = spawn(process.execPath, [__filename, 'child'], { | ||
stdio: ['inherit', stdoutFd, stdoutFd ] | ||
}); | ||
|
||
proc.on('close', common.mustCall(() => { | ||
fs.closeSync(stdoutFd); | ||
|
||
assert.deepStrictEqual(JSON.parse(fs.readFileSync(filename, 'utf8')), [ | ||
{ instance: true, readable: false, writable: true }, | ||
{ instance: true, readable: false, writable: true } | ||
]); | ||
})); |