Commit Graph

150 Commits

Author SHA1 Message Date
Ryan
3b05cf260e Add "opening" readyState for the resolve period. 2009-06-16 15:50:52 +02:00
Ryan
7cce31d4e4 Add global print() function. 2009-06-15 16:57:10 +02:00
Ryan
870b5db46c Bugfix+Refactor: accessing HTTP connection remoteAddress 2009-06-15 15:29:32 +02:00
Ryan
dcf5e72036 Fiddle with remoteAddress 2009-06-15 14:35:02 +02:00
Ryan
6697cd0725 small superficial clean-ups 2009-06-13 16:47:09 +02:00
Ryan
916b9ca715 Add Request objects on the HTTP server can be interrupted. 2009-06-12 17:37:43 +02:00
Ryan
825d7a8be8 Remove unused HTTPConnection destructor 2009-06-12 17:30:37 +02:00
Ryan
3a0de007aa onBodyComplete was not getting called in HTTP server 2009-06-12 15:26:06 +02:00
Ryan
f657a6324a Fix comment/test for Mac getaddinfo() bug.
Note: the test case was broken because on Macintosh the client connects
synchronously. This is undesirable but ok for now.
2009-06-11 11:42:43 +02:00
Ryan
6bfcfa7d74 remove unnecessary pthread header 2009-06-10 19:05:54 +02:00
Ryan
080fa54a85 fix for issue 3; but now experiencing segfault on linux 2009-06-10 18:29:59 +02:00
Ryan
0d780fe6b8 Free pointer with delete, since created with new 2009-06-10 15:24:14 +02:00
Ryan
2641582399 Extra header to work with freebsd 2009-06-09 17:47:42 +02:00
Ryan
88c04e74c9 Add HTTP proxy test. Fix bug in http.Server.
was not properly inheriting http.Server from http.LowLevelServer.
2009-06-09 14:10:53 +02:00
Ryan
ddac43f4ba Allow for absolute paths to specify root module 2009-06-09 10:06:04 +02:00
Ryan
8c146dfa0b Don't use AI_NUMERICSERV. Doesn't work on mac. 2009-06-08 23:56:09 +02:00
Ryan
8b49cef10b Modify the tests to use onExit hook.
No need to rely on stdout output now.
onExit callbacks should print stack trace from onExit failure
2009-06-08 19:10:36 +02:00
Ryan
f6a7fe2657 Implement onExit() hook for modules.
onExit() is similar to the onLoad() callback. onExit() is called on each
module just before the process exits. This can be used to check state in
unit tests, but not to perform I/O. The process will forcibly exit as soon
as all of the onExit callbacks are made.
2009-06-08 16:17:33 +02:00
Ryan
b6fe4aec50 Module system refactor
There is one major API change in the refactor: filename extensions are now
required when requiring or including modules.

Added extra test to test-module-loading.js.
2009-06-08 15:34:15 +02:00
Ryan
887f056923 Do not assume transfer-encoding: chunked as default on requests.
If users do not send transfer-encoding or content-length headers, then I
will not add any additional. Content-Length: 0 is assumed if there aren't
other headers and chunked encoding is rare.
2009-06-06 23:57:15 +02:00
Ryan
5558bc4e6e Add connection.remoteAddress for server-side node.tcp.Connections. 2009-06-05 20:15:54 +02:00
Ryan
6e4e228665 Don't use AI_PASSIVE in getaddrinfo() for client connections. 2009-06-05 15:10:46 +02:00
Ryan
c226f81768 Fix HTTP client output bug. 2009-06-04 15:44:38 +02:00
Ryan
c457b829e2 If http.Client has an error, do not continue to reconnect. 2009-06-04 12:39:19 +02:00
Ryan
8cfdd326a8 Add "had_error" argument to the "onDisconnect" in node.tcp.Client
This is a boolean value which allows one to detect if the socket was closed
due to errors. There is not yet a way to look up the actual error code.
2009-06-04 12:33:19 +02:00
Ryan
8bf2a2fa55 Rename req.uri.queryKey to req.uri.params. More familar to rails users. 2009-06-01 20:59:33 +02:00
Ryan
ed283dc280 Fix bug: catting non-existent files 2009-06-01 12:56:28 +02:00
Ryan
aceb1987ed Remove complex string appending in http's send() method.
That seems to churn the garbage collector like mad.
Before: http://s3.amazonaws.com/four.livejournal/20090529/timeseries6.png
After:  http://s3.amazonaws.com/four.livejournal/20090529/timeseries11.png
Got a nice tight side profile for this benchmark now:
http://s3.amazonaws.com/four.livejournal/20090529/hist10.png
2009-05-29 17:05:03 +02:00
Ryan
247c9d2210 Remove unnecessary AdjustAmountOfExternalAllocatedMemory from node.http. 2009-05-29 13:58:52 +02:00
Ryan
34a6f10695 Fix ::exit() compile issues.
Thanks Matthias!
2009-05-28 14:47:16 +02:00
Ryan
11b2e5dcc4 Remove file access flags that arn't present in macintosh. 2009-05-26 20:35:42 +02:00
Ryan
b260a9108b Add errno constants. Move all constants to node.constants namespace. 2009-05-26 19:48:49 +02:00
Ryan
3bdd042a6e Rename fatal_exception to FatalException 2009-05-26 18:18:17 +02:00
Ryan
c4e53c7ceb Have connection.setEncoding use node::ParseEncoding 2009-05-26 18:14:32 +02:00
Ryan
e8f177aa2d Clean up outgoing encoding API. Generally: send(chunk, encoding). 2009-05-26 17:48:59 +02:00
Ryan
c326614c8d More docs. Add rmdir and unlink. 2009-05-26 12:11:31 +02:00
Ryan
a9f29cd18d File I/O documentation. Remove necessity of class="sh_javascript". 2009-05-26 11:39:40 +02:00
Ryan
2fe090b7f6 Add node.fs prefix to some constants. oops. 2009-05-26 03:37:18 +02:00
Ryan
d1b0ce6d37 Large refactor of file code.
All the c++ code is now reduced to simple wrappers. The node.fs.File object
is defined entirely in javascript now. As is the actionQueue methods.

This makes the boundaries much cleaner. There is still some thought that
needs to go into how exactly the API should behave but this simplification
is a first step.
2009-05-26 03:30:51 +02:00
Ryan
3eb4819db1 Add docs. Rename exit() to node.exit(). 2009-05-25 13:38:36 +02:00
Ryan
5c2389fada Remove error codes from file on_completion callbacks. Use file.onError.
The error codes still remain for the two general file system operations:
rename and stat.

Additionally I've removed the actionQueue for file system operations. They
are sent directly into the thread pool.
2009-05-25 13:17:35 +02:00
Ryan
58c13e5192 Namespace File stuff in node.fs 2009-05-21 12:49:41 +02:00
Ryan
6244f77822 Beginnings of file i/o docs. Finish up timers. 2009-05-21 12:33:57 +02:00
Ryan
cb3a11d72a Camel case status_code and http_version. 2009-05-20 16:06:08 +02:00
Ryan
81b39a04cd Add setBodyEncoding to http client responses. 2009-05-20 13:00:20 +02:00
Ryan
a1aecc9378 HTTP Server: Close 1.0 connections properly. 2009-05-20 10:28:10 +02:00
Ryan
0ef5c99973 Add http.ServerRequest.setBodyEncoding. Needs test still. 2009-05-20 10:17:07 +02:00
Ryan
1b54e3d87d Change encoding setter/getter to setEncoding function. 2009-05-20 10:02:02 +02:00
Ryan
82e773630b HTTP Client: add fix to allow TCP connection to reconnect. 2009-05-19 21:53:26 +02:00
Ryan
b445514898 Remove debugging statement. 2009-05-19 20:40:56 +02:00