isaacs
530585b2d1
stream: Use push() for readable.wrap()
2013-01-10 13:49:53 -08:00
isaacs
a993f740f0
stream: Add readable.push(chunk) method
2013-01-10 13:49:53 -08:00
Shigeki Ohtsu
1211946a8c
stream: fix typo
...
Also: Revert "stream: Override addListener as well as on"
This reverts commit 18c985919d
.
2013-01-08 23:13:02 -08:00
isaacs
18c985919d
stream: Override addListener as well as on
...
For the compatibility switch.
2013-01-08 14:27:01 -08:00
Fedor Indutny
45941811dc
streams: set listener first, emit 'data' later
...
When switching into compatibility mode by setting `data` event listener,
`_read()` method will be called immediately. If method implementation
invokes callback in the same tick - all emitted `data` events will be
discarded, because `data` listener wasn't set yet.
2013-01-08 22:13:09 +04:00
isaacs
3e6f737eaf
stream: Clean up more effectively in pipe()
2013-01-07 08:36:49 -08:00
Ryunosuke SATO
fde338bf83
stream: speed up instantiation of readable stream
...
- Stream.apply -> Stream.call
2012-12-27 17:46:34 -08:00
Andreas Madsen
d68ee22dda
stream: do only fake drain when unpiped stream is the source
...
If the destination had multiply read streams piped to it,
they would all decrease the awaitDrain state and thereby
start the flow
2012-12-26 14:56:02 -08:00
Andreas Madsen
5daa701aba
stream: fix event handler leak in readstream pipe and unpipe
...
After a stream was unpiped there would stil be residual event handlers
2012-12-26 14:56:02 -08:00
isaacs
f9caf7020c
streams: Speed up by doing less work in the state ctors
2012-12-21 00:07:34 +00:00
isaacs
854171dc6f
streams2: Remove extraneous bufferSize setting
2012-12-14 10:52:29 -08:00
isaacs
04541cf7bc
streams2: Emit pause/resume events
2012-12-14 10:52:29 -08:00
isaacs
8fe7b0c910
streams2: Support a Readable hwm of 0
...
Necessary for proper stdin functioning
2012-12-14 10:52:29 -08:00
isaacs
8f428f3b0d
streams2: Call read(0) on resume()
...
Otherwise (especially with stdin) you sometimes end up in cases
where the high water mark is zero, and the current buffer is at 0,
and it doesn't need a readable event, so it never calls _read().
2012-12-14 10:52:28 -08:00
isaacs
fc7d8d59f7
lint
2012-12-14 10:52:28 -08:00
isaacs
dbcacc5afe
streams2: NextTick the emit('readable') in resume()
...
Otherwise resume() will cause data to be emitted before it can be handled.
2012-12-14 10:52:28 -08:00
isaacs
99021b7a4f
streams2: pause() should be immediate
2012-12-14 10:52:28 -08:00
isaacs
42981e2aad
streams2: Switch to old-mode immediately, not nextTick
...
This fixes the CONNECT/Upgrade HTTP functionality, which was not getting
sliced properly, because readable wasn't emitted on this tick.
Conflicts:
test/simple/test-http-connect.js
2012-12-14 10:52:28 -08:00
isaacs
83704f1279
streams2: Set readable=false on end
2012-12-14 10:52:27 -08:00
isaacs
d58f2654bc
streams2: Unpipe on dest.emit('close')
2012-12-13 17:00:34 -08:00
isaacs
49ea653363
streams2: Remove pipe if the dest emits error
2012-12-13 17:00:34 -08:00
isaacs
ac5a185edf
streams2: Handle pipeChunkSize properly
2012-12-13 17:00:33 -08:00
isaacs
53fa66d9f7
streams2: Set 'readable' flag on Readable streams
2012-12-13 17:00:33 -08:00
isaacs
4b4ff2dff1
streams2: Refactor out .once() usage from Readable.pipe()
2012-12-13 17:00:33 -08:00
isaacs
38e2b0053a
streams2: Get rid of .once() usage in Readable.pipe
...
Significant performance impact
2012-12-13 17:00:33 -08:00
isaacs
b15e19a232
streams2: Remove function.bind() usage
...
It's too slow, unfortunately.
2012-12-13 17:00:32 -08:00
isaacs
2ff499c022
streams2: Do multipipe without always using forEach
...
The Array.forEach call is too expensive.
2012-12-13 17:00:32 -08:00
isaacs
286c54439a
streams2: Only emit 'readable' when needed
2012-12-13 17:00:31 -08:00
isaacs
62dd04027b
streams2: Set Readable lwm to 0 by default
2012-12-13 17:00:31 -08:00
isaacs
f20fd22abd
streams2: Add high water mark for Readable
...
Also, organize the numeric settings a bit on the ReadableState class
2012-12-13 17:00:30 -08:00
isaacs
63ac07b32b
streams2: Export Readable/Writable State classes
2012-12-13 17:00:30 -08:00
isaacs
286aa04910
streams2: Abstract out onread function
2012-12-13 17:00:29 -08:00
isaacs
f624ccb475
streams2: Use StringDecoder.end
2012-12-13 17:00:29 -08:00
isaacs
cf0b4ba410
streams2: flow() is not always bound to src
2012-12-13 17:00:28 -08:00
isaacs
545f512619
streams2: ctor guards on Stream classes
2012-12-13 17:00:26 -08:00
isaacs
8acb416ad0
streams2: Handle immediate synthetic transforms properly
2012-12-13 17:00:26 -08:00
isaacs
02f017d24f
streams2: Allow 0 as a lowWaterMark value
2012-12-13 17:00:25 -08:00
isaacs
3b59fd70f4
streams2: Make Transform streams pull-style
...
That is, the transform is triggered by a _read, not by a _write.
This way, backpressure works properly.
2012-12-13 17:00:24 -08:00
isaacs
9b5abe5bfe
streams2: setEncoding and abstract out endReadable
2012-12-13 17:00:24 -08:00
isaacs
51a52c43a2
streams2: Set flowing=true when flowing
2012-12-13 17:00:24 -08:00
isaacs
420e07c577
streams2: The new stream base classes
2012-12-13 17:00:23 -08:00