Ryan Dahl
bf803f478b
Reimplment Buffers
15 years ago
Ryan Dahl
a668d07484
Clean up http_parser binding - add asserts
15 years ago
Ryan Dahl
c106c3740b
Use ObjectWrap again for IOWatchers.
I think the problem is in Buffers.
15 years ago
Ryan Dahl
b8c3d715fd
use efence again
15 years ago
Ryan Dahl
ccd632f278
Simplify ObjectWrap; make fewer Weak callbacks
15 years ago
Ryan Dahl
741e3fa91b
HTTP works somewhat on net2 now
However it's not working very well: Hitting a 'hello world' server with many
requests (ab -t 60 -c 10) will cause it to crash with the following error.
Obtained 3 stack frames.
./node(_Z11print_tracev+0x1c) [0x80d1b3c]
./node(_ZN4node6Parser7ExecuteERKN2v89ArgumentsE+0x69) [0x80d3759]
./node [0x811f44b]
TypeError: Already parsing a buffer
at Socket.<anonymous> (/home/ryan/projects/node/lib/http2.js:393:20)
at IOWatcher.callback (/home/ryan/projects/node/lib/net.js:81:12)
at node.js:985:9
at node.js:989:1
15 years ago
Ryan Dahl
dda1d681f7
Provide buffer in HTTPParser callbacks.
15 years ago
Ryan Dahl
bffa18befc
Expose buffer_root()
15 years ago
Ryan Dahl
42ee16978e
Implement new http-parser binding using Buffer
15 years ago
Ryan Dahl
2788064bc2
Make callback_symbols static so they don't conflict
15 years ago
Jonas Pfenniger
971f43d63b
FIX: Promise timeout should not addErrback
Because now, we expect the exception to be thrown if no errback
is given, we can't let timeout() add an errback silently.
15 years ago
Jonas Pfenniger
87d92f619a
FIX: EventEmitter call in Promise
15 years ago
Jonas Pfenniger
7f652b63a9
Factorized deprecation messages
15 years ago
Ryan Dahl
f88d39de74
getmem() for solaris
15 years ago
Felix Geisendörfer
b57d7d9b4e
Treat 'typeof Error' promise errors properly
Instead of JSON encoding them, just rethrow promise errors since that
produces much cleaner error messages.
15 years ago
Felix Geisendörfer
bfd3144861
Make unhandled Promise errors throw an exception
A promise will throw an exception unless an error handler is attached in the
same "tick" that the error is emitted. This is to avoid silent promise
failures.
15 years ago
Felix Geisendörfer
f64371fccb
Support late callback binding for Promises
Listeners attached with addCallback / addErrback will now be executed
right away if the promise has already fired.
15 years ago
Felix Geisendörfer
d9dc2e0709
Fixed misnamed Promise property
15 years ago
Felix Geisendörfer
f2274840a9
Removed Promise.cancel()
The current implementation was bad and nobody is using it. Has a chance
of getting re-implemented by somebody who has an actual need for it.
15 years ago
Micheil Smith
6e3d12f617
Allow optional params to setTimeout, setInterval
15 years ago
Ryan Dahl
8abeffa9ea
Add process.nextTick()
This is a replacement for the common hack:
setTimeout(cb, 0);
It's much more efficient.
15 years ago
Ryan Dahl
aeb7d6d168
Add process.IdleWatcher
With priorities. Will be used for process.nextLoop().
15 years ago
Joseph Pecoraro
fd183bdb07
Fixed typo in comments.
15 years ago
Ryan Dahl
70293a43c9
API: Move Promise and EventEmitter into 'events' module
15 years ago
Ryan Dahl
8e6dd52683
Hack to display more useful SyntaxError exceptions.
For some reason v8 doesn't include the frame with the syntax error in the
stack trace - so have to special case it.
15 years ago
Ryan Dahl
df59f06734
recvMsg shouldn't return array for efficiency.
15 years ago
Ryan Dahl
1b2c57907d
Lazy initialize symbols for HTTP.
15 years ago
Ben Williamson
bba23c0998
Fix issue #44 , eof on connect to http.
eof_symbol wasn't initialized until the first packet arrived.
In this case no packets arrive before the client closes the socket - eof.
15 years ago
Ryan Dahl
c9e21435c0
Upgrade http-parser
15 years ago
David Sklar
a876df6c71
Initial take on passing FDs between processes
15 years ago
isaacs
b21056d63a
Rename path.filename() to path.basename()
Also make normalizeArray a bit more proper wrt handling dots when keepBlanks
is enabled. Fix indentation.
15 years ago
Benjamin Thomas
73266cb486
Added extname function to path module that returns the extension.
15 years ago
Ryan Dahl
53413598b6
Fix another problem with the EIO interface
Should call eio_poll() when given a done_poll signal as well.
Bug report and test case by Kris Zyp <kriszyp@gmail.com>
15 years ago
Vanilla Hsu
d22952bfe0
getmem for freebsd
15 years ago
Ryan Dahl
b1e126f415
libeio bugfix part 4
Oops. Last commit broke a few tests. Should work now!
15 years ago
Ryan Dahl
f80cc69c23
libeio bugfix part 3
Finally (hopefully) fix the issue that Felix reported. It's only appearing
on macintosh (test/mjsunit/test-eio-race3.js)
The trick/hack is to call eio_poll() again before reentering the event loop.
Additionally this commit implements a more complex method of calling
eio_poll(), occasionally dropping to an ev_idle watcher.
See also:
3f39772834
http://lists.schmorp.de/pipermail/libev/2010q1/000855.html
http://groups.google.com/group/nodejs/browse_thread/thread/9f8db11c792a68bb/a89705f68971f53c
15 years ago
Ryan Dahl
3f39772834
libeio bugfix part 2
Reverts the change to deps/libeio/eio.c added in
04dd2d51be
It wasn't a bug, I was just using eio incorrectly.
See http://lists.schmorp.de/pipermail/libev/2010q1/000855.html
15 years ago
Charles Lehner
caf22c8e0a
Fixed clearTimeout to check if timer is a Timer
15 years ago
isaacs
7342fecaec
Improve path module slightly:
1. Provide a switch to tell it to not remove empty path parts when
normalizing.
2. Correct the handling of some edge cases when you have lots of dots and
empty bits, such as paths like "././/./..//." and so on.
15 years ago
Ryan Dahl
9553503be5
Bugfix: Don't segfault on unknown http method
Reported by Chakrit Wichian.
15 years ago
Ryan Dahl
8d0f756158
[net2] delete unix sockfile on server start and shutdown
15 years ago
Ryan Dahl
0d31e9875f
[net2] socket.setNoDelay
15 years ago
David Sklar
de9bfdea8e
[net2] toRead() for non-linux (SIOCINQ -> FIONREAD)
15 years ago
Ryan Dahl
2582560f91
[net2] Do hostname lookups in connect and listen
15 years ago
Ryan Dahl
8330316014
Fix errors in getaddrinfo
15 years ago
Ryan Dahl
07333a4ab0
[net2] Set FD_CLOEXEC on created socket fds.
15 years ago
Ryan Dahl
25700e65ee
[net2] Better EOF marking, rename events
15 years ago
Ryan Dahl
153b755936
Change IOWatcher constructor to have no arguments
15 years ago
Ryan Dahl
6e5abf4551
implement getaddrinfo
15 years ago
Ryan Dahl
0618f02f6f
Implement half-closed streams
15 years ago