Felix Geisendörfer
6c94b8e4e4
Implemented posix.catSync()
15 years ago
Ryan Dahl
cd41e30bcc
Return chunk & bytes read for posix.readSync()
15 years ago
Felix Geisendörfer
b02b54e003
Fix: Module cache did not propagate
This patch makes sure nested modules are available in their parents
cache. The module simplification broke this behavior.
See:
http://groups.google.com/group/nodejs/browse_thread/thread/e875132469547d2
b73f61a137
15 years ago
Ryan Dahl
3eaaaffadb
Ignore EAGAIN in stderr dumps.
(Going out of the way to be sync)
15 years ago
Ryan Dahl
88b9359284
Fix stderr flushing problem
15 years ago
Ryan Dahl
b6edae5671
Expose errno exception creation
15 years ago
Michael Carter
a38607605c
Add process.setuid(), getuid()
15 years ago
Ryan Dahl
6f92d8f3b0
Add handlescope and flush to process.reallyExit()
15 years ago
Ryan Dahl
ae1fc497bb
Fix stdout flush issue
http://github.com/ry/node/issues#issue/53
15 years ago
Ryan Dahl
76c1805c67
Add posix.truncate()
15 years ago
Ryan Dahl
77145ba229
Throw errors from server.listen()
15 years ago
Ryan Dahl
263813ae3e
Whitespace for node_net2.cc
15 years ago
Ryan Dahl
8fdb39a4ae
Add errno symbol to error messages
15 years ago
Felix Geisendörfer
b73f61a137
Simplified module system
createModule got removed as it was unnecessary and caused issues by
doing its own cache checks independent of loadModule. Internal modules
are now the only globally cached modules, all other modules are only
cached by inheriting their parent modules cache.
Credits: Module specific cache and a few other diffs by Blaine Cook
431662d25c
http://romeda.org/blog/2010/01/hot-code-loading-in-nodejs.html
http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/1994
15 years ago
Ryan Dahl
f3ad635576
Downcase process.ARGV/ENV to process.argv/env
15 years ago
Ryan Dahl
1660db6b87
Inline Buffer::HasInstance
15 years ago
Ryan Dahl
c723acc721
Remove some HandleScopes from HTTP
for a %2.5 improvement in hello world HTTP score.
15 years ago
Ryan Dahl
7c9919f810
Remove some unnecessary handlescopes
15 years ago
Ryan Dahl
987441283b
Callbacks from process.fs always start with error object
15 years ago
Ryan Dahl
4f56d8ae24
Rename Buffer.utf8Length to Buffer.utf8ByteLength
15 years ago
Ryan Dahl
fc025f878a
Remove __wrap__s
15 years ago
Ryan Dahl
9f5643f427
Reorganize the start-up process
- assign 'GLOBAL' (and now 'global') inside src/node.js
- position for eventually allowing replacements to src/node.js for people
like Kris Kowal who want the nice libev and libeio bindings but not
necessarily node's choices of modules or promises.
15 years ago
Jonas Pfenniger
7a755e04a9
Was using the old node object to get the int from the constant.
15 years ago
Ryan Dahl
785531691b
Add buffer.unpack
15 years ago
Ryan Dahl
b06dda1f5e
ObjectWrap fixed - buffers working!
Hot bug fix from net2 branch.
15 years ago
Ryan Dahl
b93b09a877
ObjectWrap fixed - buffers working!
15 years ago
Ryan Dahl
e82893d3f2
Clean up IOWatcher
15 years ago
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
Blaine Cook
cd6397cc45
Add support for MX, TXT, and SRV records in DNS module.
15 years ago
Felix Geisendörfer
c86c614cac
Bug Fix: Late promise promise callbacks firing
Late promise bindings would fire regardless of the outcome of the
promise.
Test case by: Jonas "zimbatm" Pfenniger <jonas@pfenniger.name>
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
Felix Geisendörfer
a76c7a89ce
Implemented __dirname
It seems that the current __filename module global is mainly used to
determine the directory the current module is in. To make that
easier, this patch adds support for a __dirname module global
directly.
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