dgram: send() can accept strings
[platform/upstream/nodejs.git] / lib / _stream_duplex.js
1 // Copyright Joyent, Inc. and other Node contributors.
2 //
3 // Permission is hereby granted, free of charge, to any person obtaining a
4 // copy of this software and associated documentation files (the
5 // "Software"), to deal in the Software without restriction, including
6 // without limitation the rights to use, copy, modify, merge, publish,
7 // distribute, sublicense, and/or sell copies of the Software, and to permit
8 // persons to whom the Software is furnished to do so, subject to the
9 // following conditions:
10 //
11 // The above copyright notice and this permission notice shall be included
12 // in all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
17 // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18 // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19 // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20 // USE OR OTHER DEALINGS IN THE SOFTWARE.
21
22 // a duplex stream is just a stream that is both readable and writable.
23 // Since JS doesn't have multiple prototypal inheritance, this class
24 // prototypally inherits from Readable, and then parasitically from
25 // Writable.
26
27 module.exports = Duplex;
28 var util = require('util');
29 var Readable = require('_stream_readable');
30 var Writable = require('_stream_writable');
31
32 util.inherits(Duplex, Readable);
33
34 Object.keys(Writable.prototype).forEach(function(method) {
35   if (!Duplex.prototype[method])
36     Duplex.prototype[method] = Writable.prototype[method];
37 });
38
39 function Duplex(options) {
40   if (!(this instanceof Duplex))
41     return new Duplex(options);
42
43   Readable.call(this, options);
44   Writable.call(this, options);
45
46   if (options && options.readable === false)
47     this.readable = false;
48
49   if (options && options.writable === false)
50     this.writable = false;
51
52   this.allowHalfOpen = true;
53   if (options && options.allowHalfOpen === false)
54     this.allowHalfOpen = false;
55
56   this.once('end', onend);
57 }
58
59 // the no-half-open enforcer
60 function onend() {
61   // if we allow half-open state, or if the writable side ended,
62   // then we're ok.
63   if (this.allowHalfOpen || this._writableState.ended)
64     return;
65
66   // no more data can be written.
67   // But allow more writes to happen in this tick.
68   process.nextTick(this.end.bind(this));
69 }