forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a utility for adding simple, streams-API based duplex pairs. PR-URL: nodejs#16269 Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: James M Snell <jasnell@gmail.com>
- Loading branch information
Showing
2 changed files
with
54 additions
and
0 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,45 @@ | ||
/* eslint-disable required-modules */ | ||
'use strict'; | ||
const { Duplex } = require('stream'); | ||
const assert = require('assert'); | ||
|
||
const kCallback = Symbol('Callback'); | ||
const kOtherSide = Symbol('Other'); | ||
|
||
class DuplexSocket extends Duplex { | ||
constructor() { | ||
super(); | ||
this[kCallback] = null; | ||
this[kOtherSide] = null; | ||
} | ||
|
||
_read() { | ||
const callback = this[kCallback]; | ||
if (callback) { | ||
this[kCallback] = null; | ||
callback(); | ||
} | ||
} | ||
|
||
_write(chunk, encoding, callback) { | ||
assert.notStrictEqual(this[kOtherSide], null); | ||
assert.strictEqual(this[kOtherSide][kCallback], null); | ||
this[kOtherSide][kCallback] = callback; | ||
this[kOtherSide].push(chunk); | ||
} | ||
|
||
_final(callback) { | ||
this[kOtherSide].on('end', callback); | ||
this[kOtherSide].push(null); | ||
} | ||
} | ||
|
||
function makeDuplexPair() { | ||
const clientSide = new DuplexSocket(); | ||
const serverSide = new DuplexSocket(); | ||
clientSide[kOtherSide] = serverSide; | ||
serverSide[kOtherSide] = clientSide; | ||
return { clientSide, serverSide }; | ||
} | ||
|
||
module.exports = makeDuplexPair; |