-
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 destroy and _destroy methods.
Adds destroy() and _destroy() methods to Readable, Writable, Duplex and Transform. It also standardizes the behavior and the implementation of destroy(), which has been inconsistent in userland and core. This PR also updates all the subsystems of core to use the new destroy(). PR-URL: #12925 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Calvin Metcalf <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
- Loading branch information
Showing
18 changed files
with
964 additions
and
68 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
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,65 @@ | ||
'use strict'; | ||
|
||
// undocumented cb() API, needed for core, not for public API | ||
function destroy(err, cb) { | ||
const readableDestroyed = this._readableState && | ||
this._readableState.destroyed; | ||
const writableDestroyed = this._writableState && | ||
this._writableState.destroyed; | ||
|
||
if (readableDestroyed || writableDestroyed) { | ||
if (err && (!this._writableState || !this._writableState.errorEmitted)) { | ||
process.nextTick(emitErrorNT, this, err); | ||
} | ||
return; | ||
} | ||
|
||
// we set destroyed to true before firing error callbacks in order | ||
// to make it re-entrance safe in case destroy() is called within callbacks | ||
|
||
if (this._readableState) { | ||
this._readableState.destroyed = true; | ||
} | ||
|
||
// if this is a duplex stream mark the writable part as destroyed as well | ||
if (this._writableState) { | ||
this._writableState.destroyed = true; | ||
} | ||
|
||
this._destroy(err || null, (err) => { | ||
if (!cb && err) { | ||
process.nextTick(emitErrorNT, this, err); | ||
if (this._writableState) { | ||
this._writableState.errorEmitted = true; | ||
} | ||
} else if (cb) { | ||
cb(err); | ||
} | ||
}); | ||
} | ||
|
||
function undestroy() { | ||
if (this._readableState) { | ||
this._readableState.destroyed = false; | ||
this._readableState.reading = false; | ||
this._readableState.ended = false; | ||
this._readableState.endEmitted = false; | ||
} | ||
|
||
if (this._writableState) { | ||
this._writableState.destroyed = false; | ||
this._writableState.ended = false; | ||
this._writableState.ending = false; | ||
this._writableState.finished = false; | ||
this._writableState.errorEmitted = false; | ||
} | ||
} | ||
|
||
function emitErrorNT(self, err) { | ||
self.emit('error', err); | ||
} | ||
|
||
module.exports = { | ||
destroy, | ||
undestroy | ||
}; |
Oops, something went wrong.