1 // Copyright 2009 Ryan Dahl <ry@tinyclouds.org>
9 #include <limits.h> /* PATH_MAX */
13 #include <dlfcn.h> /* dlopen(), dlsym() */
14 #include <sys/types.h>
15 #include <unistd.h> /* setuid, getuid */
17 #include <node_buffer.h>
18 #include <node_io_watcher.h>
19 #include <node_net2.h>
20 #include <node_events.h>
23 #include <node_file.h>
24 #include <node_idle_watcher.h>
25 #include <node_http.h>
26 #include <node_http_parser.h>
27 #include <node_signal_watcher.h>
28 #include <node_stat_watcher.h>
29 #include <node_timer.h>
30 #include <node_child_process.h>
31 #include <node_constants.h>
32 #include <node_stdio.h>
33 #include <node_natives.h>
34 #include <node_version.h>
40 extern char **environ;
44 static Persistent<Object> process;
46 static Persistent<String> dev_symbol;
47 static Persistent<String> ino_symbol;
48 static Persistent<String> mode_symbol;
49 static Persistent<String> nlink_symbol;
50 static Persistent<String> uid_symbol;
51 static Persistent<String> gid_symbol;
52 static Persistent<String> rdev_symbol;
53 static Persistent<String> size_symbol;
54 static Persistent<String> blksize_symbol;
55 static Persistent<String> blocks_symbol;
56 static Persistent<String> atime_symbol;
57 static Persistent<String> mtime_symbol;
58 static Persistent<String> ctime_symbol;
60 static Persistent<String> rss_symbol;
61 static Persistent<String> vsize_symbol;
62 static Persistent<String> heap_total_symbol;
63 static Persistent<String> heap_used_symbol;
65 static Persistent<String> listeners_symbol;
66 static Persistent<String> uncaught_exception_symbol;
67 static Persistent<String> emit_symbol;
69 static int option_end_index = 0;
70 static bool use_debug_agent = false;
71 static bool debug_wait_connect = false;
72 static int debug_port=5858;
75 static ev_async eio_want_poll_notifier;
76 static ev_async eio_done_poll_notifier;
77 static ev_idle eio_poller;
79 static ev_timer gc_timer;
80 #define GC_INTERVAL 2.0
83 // Node calls this every GC_INTERVAL seconds in order to try and call the
84 // GC. This watcher is run with maximum priority, so ev_pending_count() == 0
85 // is an effective measure of idleness.
86 static void GCTimeout(EV_P_ ev_timer *watcher, int revents) {
87 assert(watcher == &gc_timer);
88 assert(revents == EV_TIMER);
89 if (ev_pending_count(EV_DEFAULT_UC) == 0) V8::IdleNotification();
93 static void DoPoll(EV_P_ ev_idle *watcher, int revents) {
94 assert(watcher == &eio_poller);
95 assert(revents == EV_IDLE);
97 //printf("eio_poller\n");
99 if (eio_poll() != -1) {
100 //printf("eio_poller stop\n");
101 ev_idle_stop(EV_DEFAULT_UC_ watcher);
106 // Called from the main thread.
107 static void WantPollNotifier(EV_P_ ev_async *watcher, int revents) {
108 assert(watcher == &eio_want_poll_notifier);
109 assert(revents == EV_ASYNC);
111 //printf("want poll notifier\n");
113 if (eio_poll() == -1) {
114 //printf("eio_poller start\n");
115 ev_idle_start(EV_DEFAULT_UC_ &eio_poller);
120 static void DonePollNotifier(EV_P_ ev_async *watcher, int revents) {
121 assert(watcher == &eio_done_poll_notifier);
122 assert(revents == EV_ASYNC);
124 //printf("done poll notifier\n");
126 if (eio_poll() != -1) {
127 //printf("eio_poller stop\n");
128 ev_idle_stop(EV_DEFAULT_UC_ &eio_poller);
133 // EIOWantPoll() is called from the EIO thread pool each time an EIO
134 // request (that is, one of the node.fs.* functions) has completed.
135 static void EIOWantPoll(void) {
136 // Signal the main thread that eio_poll need to be processed.
137 ev_async_send(EV_DEFAULT_UC_ &eio_want_poll_notifier);
141 static void EIODonePoll(void) {
142 // Signal the main thread that we should stop calling eio_poll().
143 // from the idle watcher.
144 ev_async_send(EV_DEFAULT_UC_ &eio_done_poll_notifier);
148 enum encoding ParseEncoding(Handle<Value> encoding_v, enum encoding _default) {
151 if (!encoding_v->IsString()) return _default;
153 String::Utf8Value encoding(encoding_v->ToString());
155 if (strcasecmp(*encoding, "utf8") == 0) {
157 } else if (strcasecmp(*encoding, "utf-8") == 0) {
159 } else if (strcasecmp(*encoding, "ascii") == 0) {
161 } else if (strcasecmp(*encoding, "binary") == 0) {
163 } else if (strcasecmp(*encoding, "raw") == 0) {
164 fprintf(stderr, "'raw' (array of integers) has been removed. "
167 } else if (strcasecmp(*encoding, "raws") == 0) {
168 fprintf(stderr, "'raws' encoding has been renamed to 'binary'. "
169 "Please update your code.\n");
176 Local<Value> Encode(const void *buf, size_t len, enum encoding encoding) {
179 if (!len) return scope.Close(String::Empty());
181 if (encoding == BINARY) {
182 const unsigned char *cbuf = static_cast<const unsigned char*>(buf);
183 uint16_t * twobytebuf = new uint16_t[len];
184 for (size_t i = 0; i < len; i++) {
185 // XXX is the following line platform independent?
186 twobytebuf[i] = cbuf[i];
188 Local<String> chunk = String::New(twobytebuf, len);
189 delete [] twobytebuf; // TODO use ExternalTwoByteString?
190 return scope.Close(chunk);
193 // utf8 or ascii encoding
194 Local<String> chunk = String::New((const char*)buf, len);
195 return scope.Close(chunk);
198 // Returns -1 if the handle was not valid for decoding
199 ssize_t DecodeBytes(v8::Handle<v8::Value> val, enum encoding encoding) {
202 if (val->IsArray()) {
203 fprintf(stderr, "'raw' encoding (array of integers) has been removed. "
209 Local<String> str = val->ToString();
211 if (encoding == UTF8) return str->Utf8Length();
213 return str->Length();
217 # define MIN(a, b) ((a) < (b) ? (a) : (b))
220 // Returns number of bytes written.
221 ssize_t DecodeWrite(char *buf, size_t buflen,
222 v8::Handle<v8::Value> val,
223 enum encoding encoding) {
227 // A lot of improvement can be made here. See:
228 // http://code.google.com/p/v8/issues/detail?id=270
229 // http://groups.google.com/group/v8-dev/browse_thread/thread/dba28a81d9215291/ece2b50a3b4022c
230 // http://groups.google.com/group/v8-users/browse_thread/thread/1f83b0ba1f0a611
232 if (val->IsArray()) {
233 fprintf(stderr, "'raw' encoding (array of integers) has been removed. "
239 Local<String> str = val->ToString();
241 if (encoding == UTF8) {
242 str->WriteUtf8(buf, buflen);
246 if (encoding == ASCII) {
247 str->WriteAscii(buf, 0, buflen);
251 // THIS IS AWFUL!!! FIXME
253 assert(encoding == BINARY);
255 uint16_t * twobytebuf = new uint16_t[buflen];
257 str->Write(twobytebuf, 0, buflen);
259 for (size_t i = 0; i < buflen; i++) {
260 unsigned char *b = reinterpret_cast<unsigned char*>(&twobytebuf[i]);
265 delete [] twobytebuf;
270 static Persistent<FunctionTemplate> stats_constructor_template;
272 Local<Object> BuildStatsObject(struct stat * s) {
275 if (dev_symbol.IsEmpty()) {
276 dev_symbol = NODE_PSYMBOL("dev");
277 ino_symbol = NODE_PSYMBOL("ino");
278 mode_symbol = NODE_PSYMBOL("mode");
279 nlink_symbol = NODE_PSYMBOL("nlink");
280 uid_symbol = NODE_PSYMBOL("uid");
281 gid_symbol = NODE_PSYMBOL("gid");
282 rdev_symbol = NODE_PSYMBOL("rdev");
283 size_symbol = NODE_PSYMBOL("size");
284 blksize_symbol = NODE_PSYMBOL("blksize");
285 blocks_symbol = NODE_PSYMBOL("blocks");
286 atime_symbol = NODE_PSYMBOL("atime");
287 mtime_symbol = NODE_PSYMBOL("mtime");
288 ctime_symbol = NODE_PSYMBOL("ctime");
291 Local<Object> stats =
292 stats_constructor_template->GetFunction()->NewInstance();
294 /* ID of device containing file */
295 stats->Set(dev_symbol, Integer::New(s->st_dev));
298 stats->Set(ino_symbol, Integer::New(s->st_ino));
301 stats->Set(mode_symbol, Integer::New(s->st_mode));
303 /* number of hard links */
304 stats->Set(nlink_symbol, Integer::New(s->st_nlink));
306 /* user ID of owner */
307 stats->Set(uid_symbol, Integer::New(s->st_uid));
309 /* group ID of owner */
310 stats->Set(gid_symbol, Integer::New(s->st_gid));
312 /* device ID (if special file) */
313 stats->Set(rdev_symbol, Integer::New(s->st_rdev));
315 /* total size, in bytes */
316 stats->Set(size_symbol, Integer::New(s->st_size));
318 /* blocksize for filesystem I/O */
319 stats->Set(blksize_symbol, Integer::New(s->st_blksize));
321 /* number of blocks allocated */
322 stats->Set(blocks_symbol, Integer::New(s->st_blocks));
324 /* time of last access */
325 stats->Set(atime_symbol, NODE_UNIXTIME_V8(s->st_atime));
327 /* time of last modification */
328 stats->Set(mtime_symbol, NODE_UNIXTIME_V8(s->st_mtime));
330 /* time of last status change */
331 stats->Set(ctime_symbol, NODE_UNIXTIME_V8(s->st_ctime));
333 return scope.Close(stats);
337 // Extracts a C str from a V8 Utf8Value.
338 const char* ToCString(const v8::String::Utf8Value& value) {
339 return *value ? *value : "<str conversion failed>";
342 static void ReportException(TryCatch &try_catch, bool show_line = false) {
343 Handle<Message> message = try_catch.Message();
345 Handle<Value> error = try_catch.Exception();
346 Handle<String> stack;
348 if (error->IsObject()) {
349 Handle<Object> obj = Handle<Object>::Cast(error);
350 Handle<Value> raw_stack = obj->Get(String::New("stack"));
351 if (raw_stack->IsString()) stack = Handle<String>::Cast(raw_stack);
354 if (show_line && !message.IsEmpty()) {
355 // Print (filename):(line number): (message).
356 String::Utf8Value filename(message->GetScriptResourceName());
357 const char* filename_string = ToCString(filename);
358 int linenum = message->GetLineNumber();
359 fprintf(stderr, "%s:%i\n", filename_string, linenum);
360 // Print line of source code.
361 String::Utf8Value sourceline(message->GetSourceLine());
362 const char* sourceline_string = ToCString(sourceline);
363 fprintf(stderr, "%s\n", sourceline_string);
364 // Print wavy underline (GetUnderline is deprecated).
365 int start = message->GetStartColumn();
366 for (int i = 0; i < start; i++) {
367 fprintf(stderr, " ");
369 int end = message->GetEndColumn();
370 for (int i = start; i < end; i++) {
371 fprintf(stderr, "^");
373 fprintf(stderr, "\n");
376 if (stack.IsEmpty()) {
377 message->PrintCurrentStackTrace(stderr);
379 String::Utf8Value trace(stack);
380 fprintf(stderr, "%s\n", *trace);
385 // Executes a str within the current v8 context.
386 Local<Value> ExecuteString(Local<String> source, Local<Value> filename) {
390 Local<Script> script = Script::Compile(source, filename);
391 if (script.IsEmpty()) {
392 ReportException(try_catch);
396 Local<Value> result = script->Run();
397 if (result.IsEmpty()) {
398 ReportException(try_catch);
402 return scope.Close(result);
405 static Handle<Value> ByteLength(const Arguments& args) {
408 if (args.Length() < 1 || !args[0]->IsString()) {
409 return ThrowException(Exception::Error(String::New("Bad argument.")));
412 Local<Integer> length = Integer::New(DecodeBytes(args[0], ParseEncoding(args[1], UTF8)));
414 return scope.Close(length);
417 static Handle<Value> Loop(const Arguments& args) {
419 assert(args.Length() == 0);
421 // TODO Probably don't need to start this each time.
422 // Avoids failing on test/mjsunit/test-eio-race3.js though
423 ev_idle_start(EV_DEFAULT_UC_ &eio_poller);
425 ev_loop(EV_DEFAULT_UC_ 0);
429 static Handle<Value> Unloop(const Arguments& args) {
430 fprintf(stderr, "Deprecation: Don't use process.unloop(). It will be removed soon.\n");
432 int how = EVUNLOOP_ONE;
433 if (args[0]->IsString()) {
434 String::Utf8Value how_s(args[0]->ToString());
435 if (0 == strcmp(*how_s, "all")) {
439 ev_unloop(EV_DEFAULT_ how);
443 static Handle<Value> Chdir(const Arguments& args) {
446 if (args.Length() != 1 || !args[0]->IsString()) {
447 return ThrowException(Exception::Error(String::New("Bad argument.")));
450 String::Utf8Value path(args[0]->ToString());
452 int r = chdir(*path);
455 return ThrowException(Exception::Error(String::New(strerror(errno))));
461 static Handle<Value> Cwd(const Arguments& args) {
463 assert(args.Length() == 0);
465 char output[PATH_MAX];
466 char *r = getcwd(output, PATH_MAX);
468 return ThrowException(Exception::Error(String::New(strerror(errno))));
470 Local<String> cwd = String::New(output);
472 return scope.Close(cwd);
475 static Handle<Value> Umask(const Arguments& args){
478 if(args.Length() < 1) {
482 else if(!args[0]->IsInt32()) {
483 return ThrowException(Exception::TypeError(
484 String::New("argument must be an integer.")));
487 old = umask((mode_t)args[0]->Uint32Value());
489 return scope.Close(Uint32::New(old));
493 static Handle<Value> GetUid(const Arguments& args) {
495 assert(args.Length() == 0);
497 return scope.Close(Integer::New(uid));
500 static Handle<Value> GetGid(const Arguments& args) {
502 assert(args.Length() == 0);
504 return scope.Close(Integer::New(gid));
508 static Handle<Value> SetGid(const Arguments& args) {
511 if (args.Length() < 1) {
512 return ThrowException(Exception::Error(
513 String::New("setgid requires 1 argument")));
516 Local<Integer> given_gid = args[0]->ToInteger();
517 int gid = given_gid->Int32Value();
519 if ((result = setgid(gid)) != 0) {
520 return ThrowException(Exception::Error(String::New(strerror(errno))));
525 static Handle<Value> SetUid(const Arguments& args) {
528 if (args.Length() < 1) {
529 return ThrowException(Exception::Error(
530 String::New("setuid requires 1 argument")));
533 Local<Integer> given_uid = args[0]->ToInteger();
534 int uid = given_uid->Int32Value();
536 if ((result = setuid(uid)) != 0) {
537 return ThrowException(Exception::Error(String::New(strerror(errno))));
543 NowGetter (Local<String> property, const AccessorInfo& info)
546 return scope.Close(Integer::New(ev_now(EV_DEFAULT_UC)));
550 v8::Handle<v8::Value> Exit(const v8::Arguments& args) {
554 exit(args[0]->IntegerValue());
559 #define HAVE_GETMEM 1
560 #include <unistd.h> /* getpagesize() */
562 #if (!defined(_LP64)) && (_FILE_OFFSET_BITS - 0 == 64)
563 #define PROCFS_FILE_OFFSET_BITS_HACK 1
564 #undef _FILE_OFFSET_BITS
566 #define PROCFS_FILE_OFFSET_BITS_HACK 0
571 #if (PROCFS_FILE_OFFSET_BITS_HACK - 0 == 1)
572 #define _FILE_OFFSET_BITS 64
575 int getmem(size_t *rss, size_t *vsize) {
576 pid_t pid = getpid();
578 size_t page_size = getpagesize();
580 sprintf(pidpath, "/proc/%d/psinfo", pid);
583 FILE *f = fopen(pidpath, "r");
586 if (fread(&psinfo, sizeof(psinfo_t), 1, f) != 1) {
593 *vsize = (size_t) psinfo.pr_size * page_size;
594 *rss = (size_t) psinfo.pr_rssize * 1024;
604 #define HAVE_GETMEM 1
606 #include <sys/param.h>
607 #include <sys/sysctl.h>
608 #include <sys/user.h>
612 int getmem(size_t *rss, size_t *vsize) {
614 struct kinfo_proc *kinfo = NULL;
617 size_t page_size = getpagesize();
621 kd = kvm_open(NULL, NULL, NULL, O_RDONLY, "kvm_open");
622 if (kd == NULL) goto error;
624 kinfo = kvm_getprocs(kd, KERN_PROC_PID, pid, &nprocs);
625 if (kinfo == NULL) goto error;
627 *rss = kinfo->ki_rssize * page_size;
628 *vsize = kinfo->ki_size;
635 if (kd) kvm_close(kd);
638 #endif // __FreeBSD__
642 #define HAVE_GETMEM 1
643 /* Researched by Tim Becker and Michael Knight
644 * http://blog.kuriositaet.de/?p=257
647 #include <mach/task.h>
648 #include <mach/mach_init.h>
650 int getmem(size_t *rss, size_t *vsize) {
651 struct task_basic_info t_info;
652 mach_msg_type_number_t t_info_count = TASK_BASIC_INFO_COUNT;
654 int r = task_info(mach_task_self(),
656 (task_info_t)&t_info,
659 if (r != KERN_SUCCESS) return -1;
661 *rss = t_info.resident_size;
662 *vsize = t_info.virtual_size;
669 # define HAVE_GETMEM 1
670 # include <sys/param.h> /* for MAXPATHLEN */
672 int getmem(size_t *rss, size_t *vsize) {
673 FILE *f = fopen("/proc/self/stat", "r");
678 char buffer[MAXPATHLEN];
679 size_t page_size = getpagesize();
682 if (fscanf(f, "%d ", &itmp) == 0) goto error;
684 if (fscanf (f, "%s ", &buffer[0]) == 0) goto error;
686 if (fscanf (f, "%c ", &ctmp) == 0) goto error;
688 if (fscanf (f, "%d ", &itmp) == 0) goto error;
690 if (fscanf (f, "%d ", &itmp) == 0) goto error;
692 if (fscanf (f, "%d ", &itmp) == 0) goto error;
694 if (fscanf (f, "%d ", &itmp) == 0) goto error;
695 /* TTY owner process group */
696 if (fscanf (f, "%d ", &itmp) == 0) goto error;
698 if (fscanf (f, "%u ", &itmp) == 0) goto error;
699 /* Minor faults (no memory page) */
700 if (fscanf (f, "%u ", &itmp) == 0) goto error;
701 /* Minor faults, children */
702 if (fscanf (f, "%u ", &itmp) == 0) goto error;
703 /* Major faults (memory page faults) */
704 if (fscanf (f, "%u ", &itmp) == 0) goto error;
705 /* Major faults, children */
706 if (fscanf (f, "%u ", &itmp) == 0) goto error;
708 if (fscanf (f, "%d ", &itmp) == 0) goto error;
710 if (fscanf (f, "%d ", &itmp) == 0) goto error;
711 /* utime, children */
712 if (fscanf (f, "%d ", &itmp) == 0) goto error;
713 /* stime, children */
714 if (fscanf (f, "%d ", &itmp) == 0) goto error;
715 /* jiffies remaining in current time slice */
716 if (fscanf (f, "%d ", &itmp) == 0) goto error;
718 if (fscanf (f, "%d ", &itmp) == 0) goto error;
719 /* jiffies until next timeout */
720 if (fscanf (f, "%u ", &itmp) == 0) goto error;
721 /* jiffies until next SIGALRM */
722 if (fscanf (f, "%u ", &itmp) == 0) goto error;
723 /* start time (jiffies since system boot) */
724 if (fscanf (f, "%d ", &itmp) == 0) goto error;
726 /* Virtual memory size */
727 if (fscanf (f, "%u ", &itmp) == 0) goto error;
728 *vsize = (size_t) itmp;
730 /* Resident set size */
731 if (fscanf (f, "%u ", &itmp) == 0) goto error;
732 *rss = (size_t) itmp * page_size;
735 if (fscanf (f, "%u ", &itmp) == 0) goto error;
737 if (fscanf (f, "%u ", &itmp) == 0) goto error;
739 if (fscanf (f, "%u ", &itmp) == 0) goto error;
741 if (fscanf (f, "%u ", &itmp) == 0) goto error;
753 v8::Handle<v8::Value> MemoryUsage(const v8::Arguments& args) {
755 assert(args.Length() == 0);
758 return ThrowException(Exception::Error(String::New("Not support on your platform. (Talk to Ryan.)")));
762 int r = getmem(&rss, &vsize);
765 return ThrowException(Exception::Error(String::New(strerror(errno))));
768 Local<Object> info = Object::New();
770 if (rss_symbol.IsEmpty()) {
771 rss_symbol = NODE_PSYMBOL("rss");
772 vsize_symbol = NODE_PSYMBOL("vsize");
773 heap_total_symbol = NODE_PSYMBOL("heapTotal");
774 heap_used_symbol = NODE_PSYMBOL("heapUsed");
777 info->Set(rss_symbol, Integer::NewFromUnsigned(rss));
778 info->Set(vsize_symbol, Integer::NewFromUnsigned(vsize));
781 HeapStatistics v8_heap_stats;
782 V8::GetHeapStatistics(&v8_heap_stats);
783 info->Set(heap_total_symbol,
784 Integer::NewFromUnsigned(v8_heap_stats.total_heap_size()));
785 info->Set(heap_used_symbol,
786 Integer::NewFromUnsigned(v8_heap_stats.used_heap_size()));
788 return scope.Close(info);
793 v8::Handle<v8::Value> Kill(const v8::Arguments& args) {
796 if (args.Length() < 1 || !args[0]->IsNumber()) {
797 return ThrowException(Exception::Error(String::New("Bad argument.")));
800 pid_t pid = args[0]->IntegerValue();
804 if (args.Length() >= 2) {
805 if (args[1]->IsNumber()) {
806 sig = args[1]->Int32Value();
807 } else if (args[1]->IsString()) {
808 Local<String> signame = args[1]->ToString();
810 Local<Value> sig_v = process->Get(signame);
811 if (!sig_v->IsNumber()) {
812 return ThrowException(Exception::Error(String::New("Unknown signal")));
814 sig = sig_v->Int32Value();
818 int r = kill(pid, sig);
821 return ThrowException(Exception::Error(String::New(strerror(errno))));
827 typedef void (*extInit)(Handle<Object> exports);
829 // DLOpen is node.dlopen(). Used to load 'module.node' dynamically shared
831 Handle<Value> DLOpen(const v8::Arguments& args) {
834 if (args.Length() < 2) return Undefined();
836 String::Utf8Value filename(args[0]->ToString()); // Cast
837 Local<Object> target = args[1]->ToObject(); // Cast
839 // Actually call dlopen().
840 // FIXME: This is a blocking function and should be called asynchronously!
841 // This function should be moved to file.cc and use libeio to make this
843 void *handle = dlopen(*filename, RTLD_LAZY);
846 if (handle == NULL) {
847 Local<Value> exception = Exception::Error(String::New(dlerror()));
848 return ThrowException(exception);
851 // Get the init() function from the dynamically shared object.
852 void *init_handle = dlsym(handle, "init");
853 // Error out if not found.
854 if (init_handle == NULL) {
855 Local<Value> exception =
856 Exception::Error(String::New("No 'init' symbol found in module."));
857 return ThrowException(exception);
859 extInit init = (extInit)(init_handle); // Cast
861 // Execute the C++ module
867 // evalcx(code, sandbox={})
868 // Executes code in a new context
869 Handle<Value> EvalCX(const Arguments& args) {
872 Local<String> code = args[0]->ToString();
873 Local<Object> sandbox = args.Length() > 1 ? args[1]->ToObject()
875 // Create the new context
876 Persistent<Context> context = Context::New();
878 // Copy objects from global context, to our brand new context
879 Handle<Array> keys = sandbox->GetPropertyNames();
882 for (i = 0; i < keys->Length(); i++) {
883 Handle<String> key = keys->Get(Integer::New(i))->ToString();
884 Handle<Value> value = sandbox->Get(key);
885 context->Global()->Set(key, value->ToObject()->Clone());
888 // Enter and compile script
894 Local<Script> script = Script::Compile(code, String::New("evalcx"));
895 Handle<Value> result;
897 if (script.IsEmpty()) {
898 result = ThrowException(try_catch.Exception());
900 result = script->Run();
901 if (result.IsEmpty()) {
902 result = ThrowException(try_catch.Exception());
906 // Clean up, clean up, everybody everywhere!
907 context->DetachGlobal();
911 return scope.Close(result);
914 Handle<Value> Compile(const Arguments& args) {
917 if (args.Length() < 2) {
918 return ThrowException(Exception::TypeError(
919 String::New("needs two arguments.")));
922 Local<String> source = args[0]->ToString();
923 Local<String> filename = args[1]->ToString();
927 Local<Script> script = Script::Compile(source, filename);
928 if (try_catch.HasCaught()) {
929 // Hack because I can't get a proper stacktrace on SyntaxError
930 ReportException(try_catch, true);
934 Local<Value> result = script->Run();
935 if (try_catch.HasCaught()) return try_catch.ReThrow();
937 return scope.Close(result);
940 static void OnFatalError(const char* location, const char* message) {
942 fprintf(stderr, "FATAL ERROR: %s %s\n", location, message);
944 fprintf(stderr, "FATAL ERROR: %s\n", message);
949 static int uncaught_exception_counter = 0;
951 void FatalException(TryCatch &try_catch) {
954 // Check if uncaught_exception_counter indicates a recursion
955 if (uncaught_exception_counter > 0) {
956 ReportException(try_catch);
960 if (listeners_symbol.IsEmpty()) {
961 listeners_symbol = NODE_PSYMBOL("listeners");
962 uncaught_exception_symbol = NODE_PSYMBOL("uncaughtException");
963 emit_symbol = NODE_PSYMBOL("emit");
966 Local<Value> listeners_v = process->Get(listeners_symbol);
967 assert(listeners_v->IsFunction());
969 Local<Function> listeners = Local<Function>::Cast(listeners_v);
971 Local<String> uncaught_exception_symbol_l = Local<String>::New(uncaught_exception_symbol);
972 Local<Value> argv[1] = { uncaught_exception_symbol_l };
973 Local<Value> ret = listeners->Call(process, 1, argv);
975 assert(ret->IsArray());
977 Local<Array> listener_array = Local<Array>::Cast(ret);
979 uint32_t length = listener_array->Length();
980 // Report and exit if process has no "uncaughtException" listener
982 ReportException(try_catch);
986 // Otherwise fire the process "uncaughtException" event
987 Local<Value> emit_v = process->Get(emit_symbol);
988 assert(emit_v->IsFunction());
990 Local<Function> emit = Local<Function>::Cast(emit_v);
992 Local<Value> error = try_catch.Exception();
993 Local<Value> event_argv[2] = { uncaught_exception_symbol_l, error };
995 uncaught_exception_counter++;
996 emit->Call(process, 2, event_argv);
997 // Decrement so we know if the next exception is a recursion or not
998 uncaught_exception_counter--;
1002 static ev_async debug_watcher;
1003 volatile static bool debugger_msg_pending = false;
1005 static void DebugMessageCallback(EV_P_ ev_async *watcher, int revents) {
1007 assert(watcher == &debug_watcher);
1008 assert(revents == EV_ASYNC);
1009 Debug::ProcessDebugMessages();
1012 static void DebugMessageDispatch(void) {
1013 // This function is called from V8's debug thread when a debug TCP client
1014 // has sent a message.
1016 // Send a signal to our main thread saying that it should enter V8 to
1017 // handle the message.
1018 debugger_msg_pending = true;
1019 ev_async_send(EV_DEFAULT_UC_ &debug_watcher);
1022 static Handle<Value> CheckBreak(const Arguments& args) {
1024 assert(args.Length() == 0);
1026 // TODO FIXME This function is a hack to wait until V8 is ready to accept
1027 // commands. There seems to be a bug in EnableAgent( _ , _ , true) which
1028 // makes it unusable here. Ideally we'd be able to bind EnableAgent and
1029 // get it to halt until Eclipse connects.
1031 if (!debug_wait_connect)
1034 printf("Waiting for remote debugger connection...\n");
1036 const int halfSecond = 50;
1037 const int tenMs=10000;
1038 debugger_msg_pending = false;
1040 if (debugger_msg_pending) {
1041 Debug::DebugBreak();
1042 Debug::ProcessDebugMessages();
1043 debugger_msg_pending = false;
1045 // wait for 500 msec of silence from remote debugger
1046 int cnt = halfSecond;
1048 debugger_msg_pending = false;
1050 if (debugger_msg_pending) {
1051 debugger_msg_pending = false;
1062 Persistent<Object> binding_cache;
1064 static Handle<Value> Binding(const Arguments& args) {
1067 Local<String> module = args[0]->ToString();
1068 String::Utf8Value module_v(module);
1070 if (binding_cache.IsEmpty()) {
1071 binding_cache = Persistent<Object>::New(Object::New());
1074 Local<Object> exports;
1076 // TODO DRY THIS UP!
1078 if (!strcmp(*module_v, "stdio")) {
1079 if (binding_cache->Has(module)) {
1080 exports = binding_cache->Get(module)->ToObject();
1082 exports = Object::New();
1083 Stdio::Initialize(exports);
1084 binding_cache->Set(module, exports);
1087 } else if (!strcmp(*module_v, "http")) {
1088 if (binding_cache->Has(module)) {
1089 exports = binding_cache->Get(module)->ToObject();
1091 // Warning: When calling requireBinding('http') from javascript then
1092 // be sure that you call requireBinding('tcp') before it.
1093 assert(binding_cache->Has(String::New("tcp")));
1094 exports = Object::New();
1095 HTTPServer::Initialize(exports);
1096 HTTPConnection::Initialize(exports);
1097 binding_cache->Set(module, exports);
1100 } else if (!strcmp(*module_v, "tcp")) {
1101 if (binding_cache->Has(module)) {
1102 exports = binding_cache->Get(module)->ToObject();
1104 exports = Object::New();
1105 Server::Initialize(exports);
1106 Connection::Initialize(exports);
1107 binding_cache->Set(module, exports);
1110 } else if (!strcmp(*module_v, "dns")) {
1111 if (binding_cache->Has(module)) {
1112 exports = binding_cache->Get(module)->ToObject();
1114 exports = Object::New();
1115 DNS::Initialize(exports);
1116 binding_cache->Set(module, exports);
1119 } else if (!strcmp(*module_v, "fs")) {
1120 if (binding_cache->Has(module)) {
1121 exports = binding_cache->Get(module)->ToObject();
1123 exports = Object::New();
1125 // Initialize the stats object
1126 Local<FunctionTemplate> stat_templ = FunctionTemplate::New();
1127 stats_constructor_template = Persistent<FunctionTemplate>::New(stat_templ);
1128 exports->Set(String::NewSymbol("Stats"),
1129 stats_constructor_template->GetFunction());
1130 StatWatcher::Initialize(exports);
1131 File::Initialize(exports);
1132 binding_cache->Set(module, exports);
1135 } else if (!strcmp(*module_v, "signal_watcher")) {
1136 if (binding_cache->Has(module)) {
1137 exports = binding_cache->Get(module)->ToObject();
1139 exports = Object::New();
1140 SignalWatcher::Initialize(exports);
1141 binding_cache->Set(module, exports);
1144 } else if (!strcmp(*module_v, "net")) {
1145 if (binding_cache->Has(module)) {
1146 exports = binding_cache->Get(module)->ToObject();
1148 exports = Object::New();
1150 binding_cache->Set(module, exports);
1153 } else if (!strcmp(*module_v, "http_parser")) {
1154 if (binding_cache->Has(module)) {
1155 exports = binding_cache->Get(module)->ToObject();
1157 exports = Object::New();
1158 InitHttpParser(exports);
1159 binding_cache->Set(module, exports);
1162 } else if (!strcmp(*module_v, "child_process")) {
1163 if (binding_cache->Has(module)) {
1164 exports = binding_cache->Get(module)->ToObject();
1166 exports = Object::New();
1167 ChildProcess::Initialize(exports);
1168 binding_cache->Set(module, exports);
1171 } else if (!strcmp(*module_v, "natives")) {
1172 if (binding_cache->Has(module)) {
1173 exports = binding_cache->Get(module)->ToObject();
1175 exports = Object::New();
1176 // Explicitly define native sources.
1177 // TODO DRY/automate this?
1178 exports->Set(String::New("assert"), String::New(native_assert));
1179 exports->Set(String::New("child_process"),String::New(native_child_process));
1180 exports->Set(String::New("dns"), String::New(native_dns));
1181 exports->Set(String::New("events"), String::New(native_events));
1182 exports->Set(String::New("file"), String::New(native_file));
1183 exports->Set(String::New("fs"), String::New(native_fs));
1184 exports->Set(String::New("http"), String::New(native_http));
1185 exports->Set(String::New("http2"), String::New(native_http2));
1186 exports->Set(String::New("ini"), String::New(native_ini));
1187 exports->Set(String::New("mjsunit"), String::New(native_mjsunit));
1188 exports->Set(String::New("multipart"), String::New(native_multipart));
1189 exports->Set(String::New("net"), String::New(native_net));
1190 exports->Set(String::New("posix"), String::New(native_posix));
1191 exports->Set(String::New("querystring"), String::New(native_querystring));
1192 exports->Set(String::New("repl"), String::New(native_repl));
1193 exports->Set(String::New("sys"), String::New(native_sys));
1194 exports->Set(String::New("tcp"), String::New(native_tcp));
1195 exports->Set(String::New("uri"), String::New(native_uri));
1196 exports->Set(String::New("url"), String::New(native_url));
1197 exports->Set(String::New("utils"), String::New(native_utils));
1198 binding_cache->Set(module, exports);
1203 return ThrowException(Exception::Error(String::New("No such module")));
1206 return scope.Close(exports);
1210 static void Load(int argc, char *argv[]) {
1213 Local<FunctionTemplate> process_template = FunctionTemplate::New();
1214 node::EventEmitter::Initialize(process_template);
1216 process_template->InstanceTemplate()->SetAccessor(String::NewSymbol("now"), NowGetter, NULL);
1218 process = Persistent<Object>::New(process_template->GetFunction()->NewInstance());
1220 // Add a reference to the global object
1221 Local<Object> global = Context::GetCurrent()->Global();
1222 process->Set(String::NewSymbol("global"), global);
1225 process->Set(String::NewSymbol("version"), String::New(NODE_VERSION));
1226 // process.installPrefix
1227 process->Set(String::NewSymbol("installPrefix"), String::New(NODE_PREFIX));
1230 #define xstr(s) str(s)
1232 process->Set(String::NewSymbol("platform"), String::New(xstr(PLATFORM)));
1236 Local<Array> arguments = Array::New(argc - option_end_index + 1);
1237 arguments->Set(Integer::New(0), String::New(argv[0]));
1238 for (j = 1, i = option_end_index + 1; i < argc; j++, i++) {
1239 Local<String> arg = String::New(argv[i]);
1240 arguments->Set(Integer::New(j), arg);
1243 process->Set(String::NewSymbol("ARGV"), arguments);
1244 process->Set(String::NewSymbol("argv"), arguments);
1246 // create process.env
1247 Local<Object> env = Object::New();
1248 for (i = 0; environ[i]; i++) {
1249 // skip entries without a '=' character
1250 for (j = 0; environ[i][j] && environ[i][j] != '='; j++) { ; }
1251 // create the v8 objects
1252 Local<String> field = String::New(environ[i], j);
1253 Local<String> value = Local<String>();
1254 if (environ[i][j] == '=') {
1255 value = String::New(environ[i]+j+1);
1258 env->Set(field, value);
1260 // assign process.ENV
1261 process->Set(String::NewSymbol("ENV"), env);
1262 process->Set(String::NewSymbol("env"), env);
1264 process->Set(String::NewSymbol("pid"), Integer::New(getpid()));
1266 // define various internal methods
1267 NODE_SET_METHOD(process, "loop", Loop);
1268 NODE_SET_METHOD(process, "unloop", Unloop);
1269 NODE_SET_METHOD(process, "evalcx", EvalCX);
1270 NODE_SET_METHOD(process, "compile", Compile);
1271 NODE_SET_METHOD(process, "_byteLength", ByteLength);
1272 NODE_SET_METHOD(process, "reallyExit", Exit);
1273 NODE_SET_METHOD(process, "chdir", Chdir);
1274 NODE_SET_METHOD(process, "cwd", Cwd);
1275 NODE_SET_METHOD(process, "getuid", GetUid);
1276 NODE_SET_METHOD(process, "setuid", SetUid);
1278 NODE_SET_METHOD(process, "setgid", SetGid);
1279 NODE_SET_METHOD(process, "getgid", GetGid);
1281 NODE_SET_METHOD(process, "umask", Umask);
1282 NODE_SET_METHOD(process, "dlopen", DLOpen);
1283 NODE_SET_METHOD(process, "kill", Kill);
1284 NODE_SET_METHOD(process, "memoryUsage", MemoryUsage);
1285 NODE_SET_METHOD(process, "checkBreak", CheckBreak);
1287 NODE_SET_METHOD(process, "binding", Binding);
1289 // Assign the EventEmitter. It was created in main().
1290 process->Set(String::NewSymbol("EventEmitter"),
1291 EventEmitter::constructor_template->GetFunction());
1295 // Initialize the C++ modules..................filename of module
1296 Buffer::Initialize(process); // buffer.cc
1297 IOWatcher::Initialize(process); // io_watcher.cc
1298 IdleWatcher::Initialize(process); // idle_watcher.cc
1299 Timer::Initialize(process); // timer.cc
1300 DefineConstants(process); // constants.cc
1302 // Compile, execute the src/node.js file. (Which was included as static C
1303 // string in node_natives.h. 'natve_node' is the string containing that
1306 // The node.js file returns a function 'f'
1312 Local<Value> f_value = ExecuteString(String::New(native_node),
1313 String::New("node.js"));
1315 if (try_catch.HasCaught()) {
1316 ReportException(try_catch);
1320 assert(f_value->IsFunction());
1321 Local<Function> f = Local<Function>::Cast(f_value);
1323 // Now we call 'f' with the 'process' variable that we've built up with
1324 // all our bindings. Inside node.js we'll take care of assigning things to
1327 // We start the process this way in order to be more modular. Developers
1328 // who do not like how 'src/node.js' setups the module system but do like
1329 // Node's I/O bindings may want to replace 'f' with their own function.
1331 Local<Value> args[1] = { Local<Value>::New(process) };
1333 f->Call(global, 1, args);
1336 if (try_catch.HasCaught()) {
1337 ReportException(try_catch);
1343 static void PrintHelp();
1345 static void ParseDebugOpt(const char* arg) {
1348 use_debug_agent = true;
1349 if (!strcmp (arg, "--debug-brk")) {
1350 debug_wait_connect = true;
1352 } else if (!strcmp(arg, "--debug")) {
1354 } else if (strstr(arg, "--debug-brk=") == arg) {
1355 debug_wait_connect = true;
1356 p = 1 + strchr(arg, '=');
1357 debug_port = atoi(p);
1358 } else if (strstr(arg, "--debug=") == arg) {
1359 p = 1 + strchr(arg, '=');
1360 debug_port = atoi(p);
1362 if (p && debug_port > 1024 && debug_port < 65536)
1365 fprintf(stderr, "Bad debug option.\n");
1366 if (p) fprintf(stderr, "Debug port must be in range 1025 to 65535.\n");
1372 static void PrintHelp() {
1373 printf("Usage: node [options] script.js [arguments] \n"
1375 " -v, --version print node's version\n"
1376 " --debug[=port] enable remote debugging via given TCP port\n"
1377 " without stopping the execution\n"
1378 " --debug-brk[=port] as above, but break in script.js and\n"
1379 " wait for remote debugger to connect\n"
1380 " --v8-options print v8 command line options\n"
1381 " --vars print various compiled-in variables\n"
1383 "Enviromental variables:\n"
1384 "NODE_PATH ':'-separated list of directories\n"
1385 " prefixed to the module search path,\n"
1387 "NODE_DEBUG Print additional debugging output.\n"
1389 "Documentation can be found at http://nodejs.org/api.html"
1390 " or with 'man node'\n");
1393 // Parse node command line arguments.
1394 static void ParseArgs(int *argc, char **argv) {
1395 // TODO use parse opts
1396 for (int i = 1; i < *argc; i++) {
1397 const char *arg = argv[i];
1398 if (strstr(arg, "--debug") == arg) {
1400 argv[i] = const_cast<char*>("");
1401 option_end_index = i;
1402 } else if (strcmp(arg, "--version") == 0 || strcmp(arg, "-v") == 0) {
1403 printf("%s\n", NODE_VERSION);
1405 } else if (strcmp(arg, "--vars") == 0) {
1406 printf("NODE_PREFIX: %s\n", NODE_PREFIX);
1407 printf("NODE_CFLAGS: %s\n", NODE_CFLAGS);
1409 } else if (strcmp(arg, "--help") == 0 || strcmp(arg, "-h") == 0) {
1412 } else if (strcmp(arg, "--v8-options") == 0) {
1413 argv[i] = const_cast<char*>("--help");
1414 option_end_index = i+1;
1415 } else if (argv[i][0] != '-') {
1416 option_end_index = i-1;
1425 int main(int argc, char *argv[]) {
1426 // Parse a few arguments which are specific to Node.
1427 node::ParseArgs(&argc, argv);
1428 // Parse the rest of the args (up to the 'option_end_index' (where '--' was
1429 // in the command line))
1430 V8::SetFlagsFromCommandLine(&node::option_end_index, argv, false);
1432 // Error out if we don't have a script argument.
1434 fprintf(stderr, "No script was specified.\n");
1439 // Ignore the SIGPIPE
1440 evcom_ignore_sigpipe();
1442 // Initialize the default ev loop.
1444 // TODO(Ryan) I'm experiencing abnormally high load using Solaris's
1445 // EVBACKEND_PORT. Temporarally forcing select() until I debug.
1446 ev_default_loop(EVBACKEND_SELECT);
1448 ev_default_loop(EVFLAG_AUTO);
1452 ev_timer_init(&node::gc_timer, node::GCTimeout, GC_INTERVAL, GC_INTERVAL);
1453 // Set the gc_timer to max priority so that it runs before all other
1454 // watchers. In this way it can check if the 'tick' has other pending
1455 // watchers by using ev_pending_count() - if it ran with lower priority
1456 // then the other watchers might run before it - not giving us good idea
1457 // of loop idleness.
1458 ev_set_priority(&node::gc_timer, EV_MAXPRI);
1459 ev_timer_start(EV_DEFAULT_UC_ &node::gc_timer);
1460 ev_unref(EV_DEFAULT_UC);
1463 // Setup the EIO thread pool
1464 { // It requires 3, yes 3, watchers.
1465 ev_idle_init(&node::eio_poller, node::DoPoll);
1467 ev_async_init(&node::eio_want_poll_notifier, node::WantPollNotifier);
1468 ev_async_start(EV_DEFAULT_UC_ &node::eio_want_poll_notifier);
1469 ev_unref(EV_DEFAULT_UC);
1471 ev_async_init(&node::eio_done_poll_notifier, node::DonePollNotifier);
1472 ev_async_start(EV_DEFAULT_UC_ &node::eio_done_poll_notifier);
1473 ev_unref(EV_DEFAULT_UC);
1475 eio_init(node::EIOWantPoll, node::EIODonePoll);
1476 // Don't handle more than 10 reqs on each eio_poll(). This is to avoid
1477 // race conditions. See test/mjsunit/test-eio-race.js
1478 eio_set_max_poll_reqs(10);
1482 HandleScope handle_scope;
1484 V8::SetFatalErrorHandler(node::OnFatalError);
1486 // If the --debug flag was specified then initialize the debug thread.
1487 if (node::use_debug_agent) {
1488 // Initialize the async watcher for receiving messages from the debug
1489 // thread and marshal it into the main thread. DebugMessageCallback()
1490 // is called from the main thread to execute a random bit of javascript
1491 // - which will give V8 control so it can handle whatever new message
1492 // had been received on the debug thread.
1493 ev_async_init(&node::debug_watcher, node::DebugMessageCallback);
1494 ev_set_priority(&node::debug_watcher, EV_MAXPRI);
1495 // Set the callback DebugMessageDispatch which is called from the debug
1497 Debug::SetDebugMessageDispatchHandler(node::DebugMessageDispatch);
1498 // Start the async watcher.
1499 ev_async_start(EV_DEFAULT_UC_ &node::debug_watcher);
1500 // unref it so that we exit the event loop despite it being active.
1501 ev_unref(EV_DEFAULT_UC);
1503 // Start the debug thread and it's associated TCP server on port 5858.
1504 bool r = Debug::EnableAgent("node " NODE_VERSION, node::debug_port);
1506 // Crappy check that everything went well. FIXME
1508 // Print out some information.
1509 printf("debugger listening on port %d\n", node::debug_port);
1512 // Create the one and only Context.
1513 Persistent<Context> context = Context::New();
1514 Context::Scope context_scope(context);
1516 // Create all the objects, load modules, do everything.
1517 // so your next reading stop should be node::Load()!
1518 node::Load(argc, argv);
1520 node::Stdio::Flush();