-
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.
stream: add FileHandle support to Read/WriteStream
Support creating a Read/WriteStream from a FileHandle instead of a raw file descriptor Add an EventEmitter to FileHandle with a single 'close' event. Fixes: #35240 PR-URL: #35922 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com>
- Loading branch information
1 parent
754b7a7
commit 6033d30
Showing
8 changed files
with
285 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
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
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,50 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const fs = require('fs'); | ||
const assert = require('assert'); | ||
const path = require('path'); | ||
const tmpdir = require('../common/tmpdir'); | ||
const file = path.join(tmpdir.path, 'read_stream_filehandle_worker.txt'); | ||
const input = 'hello world'; | ||
const { Worker, isMainThread, workerData } = require('worker_threads'); | ||
|
||
if (isMainThread || !workerData) { | ||
tmpdir.refresh(); | ||
fs.writeFileSync(file, input); | ||
|
||
fs.promises.open(file, 'r').then((handle) => { | ||
handle.on('close', common.mustNotCall()); | ||
new Worker(__filename, { | ||
workerData: { handle }, | ||
transferList: [handle] | ||
}); | ||
}); | ||
fs.promises.open(file, 'r').then((handle) => { | ||
fs.createReadStream(null, { fd: handle }); | ||
assert.throws(() => { | ||
new Worker(__filename, { | ||
workerData: { handle }, | ||
transferList: [handle] | ||
}); | ||
}, { | ||
code: 25, | ||
}); | ||
}); | ||
} else { | ||
let output = ''; | ||
|
||
const handle = workerData.handle; | ||
handle.on('close', common.mustCall()); | ||
const stream = fs.createReadStream(null, { fd: handle }); | ||
|
||
stream.on('data', common.mustCallAtLeast((data) => { | ||
output += data; | ||
})); | ||
|
||
stream.on('end', common.mustCall(() => { | ||
handle.close(); | ||
assert.strictEqual(output, input); | ||
})); | ||
|
||
stream.on('close', common.mustCall()); | ||
} |
Oops, something went wrong.