-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7fdb3b4
commit 3189008
Showing
270 changed files
with
1,949 additions
and
4,636 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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
'use strict' // Keep this file as an alias for the full stream module. | ||
'use strict' | ||
|
||
// Keep this file as an alias for the full stream module. | ||
module.exports = require('./stream').Duplex |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
'use strict' // Keep this file as an alias for the full stream module. | ||
'use strict' | ||
|
||
// Keep this file as an alias for the full stream module. | ||
module.exports = require('./stream').PassThrough |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
'use strict' // Keep this file as an alias for the full stream module. | ||
'use strict' | ||
|
||
// Keep this file as an alias for the full stream module. | ||
module.exports = require('./stream').Readable |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
'use strict' // Keep this file as an alias for the full stream module. | ||
'use strict' | ||
|
||
// Keep this file as an alias for the full stream module. | ||
module.exports = require('./stream').Transform |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
'use strict' // Keep this file as an alias for the full stream module. | ||
'use strict' | ||
|
||
// Keep this file as an alias for the full stream module. | ||
module.exports = require('./stream').Writable |
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 |
---|---|---|
@@ -1,52 +1,43 @@ | ||
'use strict' | ||
|
||
const { AbortError, codes } = require('../../ours/errors') | ||
|
||
const eos = require('./end-of-stream') | ||
const { ERR_INVALID_ARG_TYPE } = codes | ||
|
||
const { ERR_INVALID_ARG_TYPE } = codes // This method is inlined here for readable-stream | ||
// This method is inlined here for readable-stream | ||
// It also does not allow for signal to not exist on the stream | ||
// https://github.com/nodejs/node/pull/36061#discussion_r533718029 | ||
|
||
const validateAbortSignal = (signal, name) => { | ||
if (typeof signal !== 'object' || !('aborted' in signal)) { | ||
throw new ERR_INVALID_ARG_TYPE(name, 'AbortSignal', signal) | ||
} | ||
} | ||
|
||
function isNodeStream(obj) { | ||
return !!(obj && typeof obj.pipe === 'function') | ||
} | ||
|
||
module.exports.addAbortSignal = function addAbortSignal(signal, stream) { | ||
validateAbortSignal(signal, 'signal') | ||
|
||
if (!isNodeStream(stream)) { | ||
throw new ERR_INVALID_ARG_TYPE('stream', 'stream.Stream', stream) | ||
} | ||
|
||
return module.exports.addAbortSignalNoValidate(signal, stream) | ||
} | ||
|
||
module.exports.addAbortSignalNoValidate = function (signal, stream) { | ||
if (typeof signal !== 'object' || !('aborted' in signal)) { | ||
return stream | ||
} | ||
|
||
const onAbort = () => { | ||
stream.destroy( | ||
new AbortError(undefined, { | ||
cause: signal.reason | ||
}) | ||
) | ||
} | ||
|
||
if (signal.aborted) { | ||
onAbort() | ||
} else { | ||
signal.addEventListener('abort', onAbort) | ||
eos(stream, () => signal.removeEventListener('abort', onAbort)) | ||
} | ||
|
||
return stream | ||
} |
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
Oops, something went wrong.