1 // Copyright 2009 Ryan Dahl <ry@tinyclouds.org>
7 #include <limits.h> /* PATH_MAX */
11 #include <dlfcn.h> /* dlopen(), dlsym() */
12 #include <sys/types.h>
13 #include <unistd.h> /* setuid, getuid */
15 #include <node_events.h>
18 #include <node_file.h>
19 #include <node_idle_watcher.h>
20 #include <node_http.h>
21 #include <node_signal_handler.h>
22 #include <node_stat.h>
23 #include <node_timer.h>
24 #include <node_child_process.h>
25 #include <node_constants.h>
26 #include <node_stdio.h>
27 #include <node_natives.h>
28 #include <node_version.h>
34 extern char **environ;
38 static Persistent<Object> process;
40 static Persistent<String> dev_symbol;
41 static Persistent<String> ino_symbol;
42 static Persistent<String> mode_symbol;
43 static Persistent<String> nlink_symbol;
44 static Persistent<String> uid_symbol;
45 static Persistent<String> gid_symbol;
46 static Persistent<String> rdev_symbol;
47 static Persistent<String> size_symbol;
48 static Persistent<String> blksize_symbol;
49 static Persistent<String> blocks_symbol;
50 static Persistent<String> atime_symbol;
51 static Persistent<String> mtime_symbol;
52 static Persistent<String> ctime_symbol;
54 static Persistent<String> rss_symbol;
55 static Persistent<String> vsize_symbol;
56 static Persistent<String> heap_total_symbol;
57 static Persistent<String> heap_used_symbol;
59 static Persistent<String> listeners_symbol;
60 static Persistent<String> uncaught_exception_symbol;
61 static Persistent<String> emit_symbol;
63 static int option_end_index = 0;
64 static bool use_debug_agent = false;
65 static bool debug_wait_connect = false;
66 static int debug_port=5858;
69 static ev_async eio_want_poll_notifier;
70 static ev_async eio_done_poll_notifier;
71 static ev_idle eio_poller;
73 static ev_timer gc_timer;
74 #define GC_INTERVAL 2.0
77 // Node calls this every GC_INTERVAL seconds in order to try and call the
78 // GC. This watcher is run with maximum priority, so ev_pending_count() == 0
79 // is an effective measure of idleness.
80 static void GCTimeout(EV_P_ ev_timer *watcher, int revents) {
81 assert(watcher == &gc_timer);
82 assert(revents == EV_TIMER);
83 if (ev_pending_count(EV_DEFAULT_UC) == 0) V8::IdleNotification();
87 static void DoPoll(EV_P_ ev_idle *watcher, int revents) {
88 assert(watcher == &eio_poller);
89 assert(revents == EV_IDLE);
91 //printf("eio_poller\n");
93 if (eio_poll() != -1) {
94 //printf("eio_poller stop\n");
95 ev_idle_stop(EV_DEFAULT_UC_ watcher);
100 // Called from the main thread.
101 static void WantPollNotifier(EV_P_ ev_async *watcher, int revents) {
102 assert(watcher == &eio_want_poll_notifier);
103 assert(revents == EV_ASYNC);
105 //printf("want poll notifier\n");
107 if (eio_poll() == -1) {
108 //printf("eio_poller start\n");
109 ev_idle_start(EV_DEFAULT_UC_ &eio_poller);
114 static void DonePollNotifier(EV_P_ ev_async *watcher, int revents) {
115 assert(watcher == &eio_done_poll_notifier);
116 assert(revents == EV_ASYNC);
118 //printf("done poll notifier\n");
120 if (eio_poll() != -1) {
121 //printf("eio_poller stop\n");
122 ev_idle_stop(EV_DEFAULT_UC_ &eio_poller);
127 // EIOWantPoll() is called from the EIO thread pool each time an EIO
128 // request (that is, one of the node.fs.* functions) has completed.
129 static void EIOWantPoll(void) {
130 // Signal the main thread that eio_poll need to be processed.
131 ev_async_send(EV_DEFAULT_UC_ &eio_want_poll_notifier);
135 static void EIODonePoll(void) {
136 // Signal the main thread that we should stop calling eio_poll().
137 // from the idle watcher.
138 ev_async_send(EV_DEFAULT_UC_ &eio_done_poll_notifier);
142 enum encoding ParseEncoding(Handle<Value> encoding_v, enum encoding _default) {
145 if (!encoding_v->IsString()) return _default;
147 String::Utf8Value encoding(encoding_v->ToString());
149 if (strcasecmp(*encoding, "utf8") == 0) {
151 } else if (strcasecmp(*encoding, "utf-8") == 0) {
153 } else if (strcasecmp(*encoding, "ascii") == 0) {
155 } else if (strcasecmp(*encoding, "binary") == 0) {
157 } else if (strcasecmp(*encoding, "raw") == 0) {
158 fprintf(stderr, "'raw' (array of integers) has been removed. "
161 } else if (strcasecmp(*encoding, "raws") == 0) {
162 fprintf(stderr, "'raws' encoding has been renamed to 'binary'. "
163 "Please update your code.\n");
170 Local<Value> Encode(const void *buf, size_t len, enum encoding encoding) {
173 if (!len) return scope.Close(String::Empty());
175 if (encoding == BINARY) {
176 const unsigned char *cbuf = static_cast<const unsigned char*>(buf);
177 uint16_t * twobytebuf = new uint16_t[len];
178 for (size_t i = 0; i < len; i++) {
179 // XXX is the following line platform independent?
180 twobytebuf[i] = cbuf[i];
182 Local<String> chunk = String::New(twobytebuf, len);
183 delete [] twobytebuf; // TODO use ExternalTwoByteString?
184 return scope.Close(chunk);
187 // utf8 or ascii encoding
188 Local<String> chunk = String::New((const char*)buf, len);
189 return scope.Close(chunk);
192 // Returns -1 if the handle was not valid for decoding
193 ssize_t DecodeBytes(v8::Handle<v8::Value> val, enum encoding encoding) {
196 if (val->IsArray()) {
197 fprintf(stderr, "'raw' encoding (array of integers) has been removed. "
203 Local<String> str = val->ToString();
205 if (encoding == UTF8) return str->Utf8Length();
207 return str->Length();
211 # define MIN(a, b) ((a) < (b) ? (a) : (b))
214 // Returns number of bytes written.
215 ssize_t DecodeWrite(char *buf, size_t buflen,
216 v8::Handle<v8::Value> val,
217 enum encoding encoding) {
221 // A lot of improvement can be made here. See:
222 // http://code.google.com/p/v8/issues/detail?id=270
223 // http://groups.google.com/group/v8-dev/browse_thread/thread/dba28a81d9215291/ece2b50a3b4022c
224 // http://groups.google.com/group/v8-users/browse_thread/thread/1f83b0ba1f0a611
226 if (val->IsArray()) {
227 fprintf(stderr, "'raw' encoding (array of integers) has been removed. "
233 Local<String> str = val->ToString();
235 if (encoding == UTF8) {
236 str->WriteUtf8(buf, buflen);
240 if (encoding == ASCII) {
241 str->WriteAscii(buf, 0, buflen);
245 // THIS IS AWFUL!!! FIXME
247 assert(encoding == BINARY);
249 uint16_t * twobytebuf = new uint16_t[buflen];
251 str->Write(twobytebuf, 0, buflen);
253 for (size_t i = 0; i < buflen; i++) {
254 unsigned char *b = reinterpret_cast<unsigned char*>(&twobytebuf[i]);
259 delete [] twobytebuf;
264 static Persistent<FunctionTemplate> stats_constructor_template;
266 Local<Object> BuildStatsObject(struct stat * s) {
269 if (dev_symbol.IsEmpty()) {
270 dev_symbol = NODE_PSYMBOL("dev");
271 ino_symbol = NODE_PSYMBOL("ino");
272 mode_symbol = NODE_PSYMBOL("mode");
273 nlink_symbol = NODE_PSYMBOL("nlink");
274 uid_symbol = NODE_PSYMBOL("uid");
275 gid_symbol = NODE_PSYMBOL("gid");
276 rdev_symbol = NODE_PSYMBOL("rdev");
277 size_symbol = NODE_PSYMBOL("size");
278 blksize_symbol = NODE_PSYMBOL("blksize");
279 blocks_symbol = NODE_PSYMBOL("blocks");
280 atime_symbol = NODE_PSYMBOL("atime");
281 mtime_symbol = NODE_PSYMBOL("mtime");
282 ctime_symbol = NODE_PSYMBOL("ctime");
285 Local<Object> stats =
286 stats_constructor_template->GetFunction()->NewInstance();
288 /* ID of device containing file */
289 stats->Set(dev_symbol, Integer::New(s->st_dev));
292 stats->Set(ino_symbol, Integer::New(s->st_ino));
295 stats->Set(mode_symbol, Integer::New(s->st_mode));
297 /* number of hard links */
298 stats->Set(nlink_symbol, Integer::New(s->st_nlink));
300 /* user ID of owner */
301 stats->Set(uid_symbol, Integer::New(s->st_uid));
303 /* group ID of owner */
304 stats->Set(gid_symbol, Integer::New(s->st_gid));
306 /* device ID (if special file) */
307 stats->Set(rdev_symbol, Integer::New(s->st_rdev));
309 /* total size, in bytes */
310 stats->Set(size_symbol, Integer::New(s->st_size));
312 /* blocksize for filesystem I/O */
313 stats->Set(blksize_symbol, Integer::New(s->st_blksize));
315 /* number of blocks allocated */
316 stats->Set(blocks_symbol, Integer::New(s->st_blocks));
318 /* time of last access */
319 stats->Set(atime_symbol, NODE_UNIXTIME_V8(s->st_atime));
321 /* time of last modification */
322 stats->Set(mtime_symbol, NODE_UNIXTIME_V8(s->st_mtime));
324 /* time of last status change */
325 stats->Set(ctime_symbol, NODE_UNIXTIME_V8(s->st_ctime));
327 return scope.Close(stats);
331 // Extracts a C str from a V8 Utf8Value.
332 const char* ToCString(const v8::String::Utf8Value& value) {
333 return *value ? *value : "<str conversion failed>";
336 static void ReportException(TryCatch &try_catch, bool show_line = false) {
337 Handle<Message> message = try_catch.Message();
339 Handle<Value> error = try_catch.Exception();
340 Handle<String> stack;
342 if (error->IsObject()) {
343 Handle<Object> obj = Handle<Object>::Cast(error);
344 Handle<Value> raw_stack = obj->Get(String::New("stack"));
345 if (raw_stack->IsString()) stack = Handle<String>::Cast(raw_stack);
348 if (show_line && !message.IsEmpty()) {
349 // Print (filename):(line number): (message).
350 String::Utf8Value filename(message->GetScriptResourceName());
351 const char* filename_string = ToCString(filename);
352 int linenum = message->GetLineNumber();
353 fprintf(stderr, "%s:%i\n", filename_string, linenum);
354 // Print line of source code.
355 String::Utf8Value sourceline(message->GetSourceLine());
356 const char* sourceline_string = ToCString(sourceline);
357 fprintf(stderr, "%s\n", sourceline_string);
358 // Print wavy underline (GetUnderline is deprecated).
359 int start = message->GetStartColumn();
360 for (int i = 0; i < start; i++) {
361 fprintf(stderr, " ");
363 int end = message->GetEndColumn();
364 for (int i = start; i < end; i++) {
365 fprintf(stderr, "^");
367 fprintf(stderr, "\n");
370 if (stack.IsEmpty()) {
371 message->PrintCurrentStackTrace(stderr);
373 String::Utf8Value trace(stack);
374 fprintf(stderr, "%s\n", *trace);
379 // Executes a str within the current v8 context.
380 Local<Value> ExecuteString(Local<String> source, Local<Value> filename) {
384 Local<Script> script = Script::Compile(source, filename);
385 if (script.IsEmpty()) {
386 ReportException(try_catch);
390 Local<Value> result = script->Run();
391 if (result.IsEmpty()) {
392 ReportException(try_catch);
396 return scope.Close(result);
399 static Handle<Value> ByteLength(const Arguments& args) {
402 if (args.Length() < 1 || !args[0]->IsString()) {
403 return ThrowException(Exception::Error(String::New("Bad argument.")));
406 Local<Integer> length = Integer::New(DecodeBytes(args[0], ParseEncoding(args[1], UTF8)));
408 return scope.Close(length);
411 static Handle<Value> Loop(const Arguments& args) {
414 // TODO Probably don't need to start this each time.
415 // Avoids failing on test/mjsunit/test-eio-race3.js though
416 ev_idle_start(EV_DEFAULT_UC_ &eio_poller);
418 ev_loop(EV_DEFAULT_UC_ 0);
422 static Handle<Value> Unloop(const Arguments& args) {
423 fprintf(stderr, "Node.js Depreciation: Don't use process.unloop(). It will be removed soon.\n");
425 int how = EVUNLOOP_ONE;
426 if (args[0]->IsString()) {
427 String::Utf8Value how_s(args[0]->ToString());
428 if (0 == strcmp(*how_s, "all")) {
432 ev_unloop(EV_DEFAULT_ how);
436 static Handle<Value> Chdir(const Arguments& args) {
439 if (args.Length() != 1 || !args[0]->IsString()) {
440 return ThrowException(Exception::Error(String::New("Bad argument.")));
443 String::Utf8Value path(args[0]->ToString());
445 int r = chdir(*path);
448 return ThrowException(Exception::Error(String::New(strerror(errno))));
454 static Handle<Value> Cwd(const Arguments& args) {
457 char output[PATH_MAX];
458 char *r = getcwd(output, PATH_MAX);
460 return ThrowException(Exception::Error(String::New(strerror(errno))));
462 Local<String> cwd = String::New(output);
464 return scope.Close(cwd);
467 static Handle<Value> Umask(const Arguments& args){
470 if(args.Length() < 1) {
474 else if(!args[0]->IsInt32()) {
475 return ThrowException(Exception::TypeError(
476 String::New("argument must be an integer.")));
479 old = umask((mode_t)args[0]->Uint32Value());
481 return scope.Close(Uint32::New(old));
485 static Handle<Value> GetUid(const Arguments& args) {
488 return scope.Close(Integer::New(uid));
491 static Handle<Value> GetGid(const Arguments& args) {
494 return scope.Close(Integer::New(gid));
498 static Handle<Value> SetGid(const Arguments& args) {
501 if (args.Length() < 1) {
502 return ThrowException(Exception::Error(
503 String::New("setgid requires 1 argument")));
506 Local<Integer> given_gid = args[0]->ToInteger();
507 int gid = given_gid->Int32Value();
509 if ((result = setgid(gid)) != 0) {
510 return ThrowException(Exception::Error(String::New(strerror(errno))));
515 static Handle<Value> SetUid(const Arguments& args) {
518 if (args.Length() < 1) {
519 return ThrowException(Exception::Error(
520 String::New("setuid requires 1 argument")));
523 Local<Integer> given_uid = args[0]->ToInteger();
524 int uid = given_uid->Int32Value();
526 if ((result = setuid(uid)) != 0) {
527 return ThrowException(Exception::Error(String::New(strerror(errno))));
533 v8::Handle<v8::Value> Exit(const v8::Arguments& args) {
537 exit(args[0]->IntegerValue());
542 #define HAVE_GETMEM 1
543 #include <unistd.h> /* getpagesize() */
545 #if (!defined(_LP64)) && (_FILE_OFFSET_BITS - 0 == 64)
546 #define PROCFS_FILE_OFFSET_BITS_HACK 1
547 #undef _FILE_OFFSET_BITS
549 #define PROCFS_FILE_OFFSET_BITS_HACK 0
554 #if (PROCFS_FILE_OFFSET_BITS_HACK - 0 == 1)
555 #define _FILE_OFFSET_BITS 64
558 int getmem(size_t *rss, size_t *vsize) {
559 pid_t pid = getpid();
561 size_t page_size = getpagesize();
563 sprintf(pidpath, "/proc/%d/psinfo", pid);
566 FILE *f = fopen(pidpath, "r");
569 if (fread(&psinfo, sizeof(psinfo_t), 1, f) != 1) {
576 *vsize = (size_t) psinfo.pr_size * page_size;
577 *rss = (size_t) psinfo.pr_rssize * 1024;
587 #define HAVE_GETMEM 1
589 #include <sys/param.h>
590 #include <sys/sysctl.h>
591 #include <sys/user.h>
595 int getmem(size_t *rss, size_t *vsize) {
597 struct kinfo_proc *kinfo = NULL;
600 size_t page_size = getpagesize();
604 kd = kvm_open(NULL, NULL, NULL, O_RDONLY, "kvm_open");
605 if (kd == NULL) goto error;
607 kinfo = kvm_getprocs(kd, KERN_PROC_PID, pid, &nprocs);
608 if (kinfo == NULL) goto error;
610 *rss = kinfo->ki_rssize * page_size;
611 *vsize = kinfo->ki_size;
618 if (kd) kvm_close(kd);
621 #endif // __FreeBSD__
625 #define HAVE_GETMEM 1
626 /* Researched by Tim Becker and Michael Knight
627 * http://blog.kuriositaet.de/?p=257
630 #include <mach/task.h>
631 #include <mach/mach_init.h>
633 int getmem(size_t *rss, size_t *vsize) {
634 struct task_basic_info t_info;
635 mach_msg_type_number_t t_info_count = TASK_BASIC_INFO_COUNT;
637 int r = task_info(mach_task_self(),
639 (task_info_t)&t_info,
642 if (r != KERN_SUCCESS) return -1;
644 *rss = t_info.resident_size;
645 *vsize = t_info.virtual_size;
652 # define HAVE_GETMEM 1
653 # include <sys/param.h> /* for MAXPATHLEN */
655 int getmem(size_t *rss, size_t *vsize) {
656 FILE *f = fopen("/proc/self/stat", "r");
661 char buffer[MAXPATHLEN];
662 size_t page_size = getpagesize();
665 if (fscanf(f, "%d ", &itmp) == 0) goto error;
667 if (fscanf (f, "%s ", &buffer[0]) == 0) goto error;
669 if (fscanf (f, "%c ", &ctmp) == 0) goto error;
671 if (fscanf (f, "%d ", &itmp) == 0) goto error;
673 if (fscanf (f, "%d ", &itmp) == 0) goto error;
675 if (fscanf (f, "%d ", &itmp) == 0) goto error;
677 if (fscanf (f, "%d ", &itmp) == 0) goto error;
678 /* TTY owner process group */
679 if (fscanf (f, "%d ", &itmp) == 0) goto error;
681 if (fscanf (f, "%u ", &itmp) == 0) goto error;
682 /* Minor faults (no memory page) */
683 if (fscanf (f, "%u ", &itmp) == 0) goto error;
684 /* Minor faults, children */
685 if (fscanf (f, "%u ", &itmp) == 0) goto error;
686 /* Major faults (memory page faults) */
687 if (fscanf (f, "%u ", &itmp) == 0) goto error;
688 /* Major faults, children */
689 if (fscanf (f, "%u ", &itmp) == 0) goto error;
691 if (fscanf (f, "%d ", &itmp) == 0) goto error;
693 if (fscanf (f, "%d ", &itmp) == 0) goto error;
694 /* utime, children */
695 if (fscanf (f, "%d ", &itmp) == 0) goto error;
696 /* stime, children */
697 if (fscanf (f, "%d ", &itmp) == 0) goto error;
698 /* jiffies remaining in current time slice */
699 if (fscanf (f, "%d ", &itmp) == 0) goto error;
701 if (fscanf (f, "%d ", &itmp) == 0) goto error;
702 /* jiffies until next timeout */
703 if (fscanf (f, "%u ", &itmp) == 0) goto error;
704 /* jiffies until next SIGALRM */
705 if (fscanf (f, "%u ", &itmp) == 0) goto error;
706 /* start time (jiffies since system boot) */
707 if (fscanf (f, "%d ", &itmp) == 0) goto error;
709 /* Virtual memory size */
710 if (fscanf (f, "%u ", &itmp) == 0) goto error;
711 *vsize = (size_t) itmp;
713 /* Resident set size */
714 if (fscanf (f, "%u ", &itmp) == 0) goto error;
715 *rss = (size_t) itmp * page_size;
718 if (fscanf (f, "%u ", &itmp) == 0) goto error;
720 if (fscanf (f, "%u ", &itmp) == 0) goto error;
722 if (fscanf (f, "%u ", &itmp) == 0) goto error;
724 if (fscanf (f, "%u ", &itmp) == 0) goto error;
736 v8::Handle<v8::Value> MemoryUsage(const v8::Arguments& args) {
740 return ThrowException(Exception::Error(String::New("Not support on your platform. (Talk to Ryan.)")));
744 int r = getmem(&rss, &vsize);
747 return ThrowException(Exception::Error(String::New(strerror(errno))));
750 Local<Object> info = Object::New();
752 if (rss_symbol.IsEmpty()) {
753 rss_symbol = NODE_PSYMBOL("rss");
754 vsize_symbol = NODE_PSYMBOL("vsize");
755 heap_total_symbol = NODE_PSYMBOL("heapTotal");
756 heap_used_symbol = NODE_PSYMBOL("heapUsed");
759 info->Set(rss_symbol, Integer::NewFromUnsigned(rss));
760 info->Set(vsize_symbol, Integer::NewFromUnsigned(vsize));
763 HeapStatistics v8_heap_stats;
764 V8::GetHeapStatistics(&v8_heap_stats);
765 info->Set(heap_total_symbol,
766 Integer::NewFromUnsigned(v8_heap_stats.total_heap_size()));
767 info->Set(heap_used_symbol,
768 Integer::NewFromUnsigned(v8_heap_stats.used_heap_size()));
770 return scope.Close(info);
775 v8::Handle<v8::Value> Kill(const v8::Arguments& args) {
778 if (args.Length() < 1 || !args[0]->IsNumber()) {
779 return ThrowException(Exception::Error(String::New("Bad argument.")));
782 pid_t pid = args[0]->IntegerValue();
786 if (args.Length() >= 2) {
787 if (args[1]->IsNumber()) {
788 sig = args[1]->Int32Value();
789 } else if (args[1]->IsString()) {
790 Local<String> signame = args[1]->ToString();
792 Local<Value> sig_v = process->Get(signame);
793 if (!sig_v->IsNumber()) {
794 return ThrowException(Exception::Error(String::New("Unknown signal")));
796 sig = sig_v->Int32Value();
800 int r = kill(pid, sig);
803 return ThrowException(Exception::Error(String::New(strerror(errno))));
809 typedef void (*extInit)(Handle<Object> exports);
811 // DLOpen is node.dlopen(). Used to load 'module.node' dynamically shared
813 Handle<Value> DLOpen(const v8::Arguments& args) {
816 if (args.Length() < 2) return Undefined();
818 String::Utf8Value filename(args[0]->ToString()); // Cast
819 Local<Object> target = args[1]->ToObject(); // Cast
821 // Actually call dlopen().
822 // FIXME: This is a blocking function and should be called asynchronously!
823 // This function should be moved to file.cc and use libeio to make this
825 void *handle = dlopen(*filename, RTLD_LAZY);
828 if (handle == NULL) {
829 Local<Value> exception = Exception::Error(String::New(dlerror()));
830 return ThrowException(exception);
833 // Get the init() function from the dynamically shared object.
834 void *init_handle = dlsym(handle, "init");
835 // Error out if not found.
836 if (init_handle == NULL) {
837 Local<Value> exception =
838 Exception::Error(String::New("No 'init' symbol found in module."));
839 return ThrowException(exception);
841 extInit init = (extInit)(init_handle); // Cast
843 // Execute the C++ module
849 Handle<Value> Compile(const Arguments& args) {
852 if (args.Length() < 2) {
853 return ThrowException(Exception::TypeError(
854 String::New("needs two arguments.")));
857 Local<String> source = args[0]->ToString();
858 Local<String> filename = args[1]->ToString();
862 Local<Script> script = Script::Compile(source, filename);
863 if (try_catch.HasCaught()) {
864 // Hack because I can't get a proper stacktrace on SyntaxError
865 ReportException(try_catch, true);
869 Local<Value> result = script->Run();
870 if (try_catch.HasCaught()) return try_catch.ReThrow();
872 return scope.Close(result);
875 static void OnFatalError(const char* location, const char* message) {
877 fprintf(stderr, "FATAL ERROR: %s %s\n", location, message);
879 fprintf(stderr, "FATAL ERROR: %s\n", message);
884 static int uncaught_exception_counter = 0;
886 void FatalException(TryCatch &try_catch) {
889 // Check if uncaught_exception_counter indicates a recursion
890 if (uncaught_exception_counter > 0) {
891 ReportException(try_catch);
895 if (listeners_symbol.IsEmpty()) {
896 listeners_symbol = NODE_PSYMBOL("listeners");
897 uncaught_exception_symbol = NODE_PSYMBOL("uncaughtException");
898 emit_symbol = NODE_PSYMBOL("emit");
901 Local<Value> listeners_v = process->Get(listeners_symbol);
902 assert(listeners_v->IsFunction());
904 Local<Function> listeners = Local<Function>::Cast(listeners_v);
906 Local<String> uncaught_exception_symbol_l = Local<String>::New(uncaught_exception_symbol);
907 Local<Value> argv[1] = { uncaught_exception_symbol_l };
908 Local<Value> ret = listeners->Call(process, 1, argv);
910 assert(ret->IsArray());
912 Local<Array> listener_array = Local<Array>::Cast(ret);
914 uint32_t length = listener_array->Length();
915 // Report and exit if process has no "uncaughtException" listener
917 ReportException(try_catch);
921 // Otherwise fire the process "uncaughtException" event
922 Local<Value> emit_v = process->Get(emit_symbol);
923 assert(emit_v->IsFunction());
925 Local<Function> emit = Local<Function>::Cast(emit_v);
927 Local<Value> error = try_catch.Exception();
928 Local<Value> event_argv[2] = { uncaught_exception_symbol_l, error };
930 uncaught_exception_counter++;
931 emit->Call(process, 2, event_argv);
932 // Decrement so we know if the next exception is a recursion or not
933 uncaught_exception_counter--;
937 static ev_async debug_watcher;
938 volatile static bool debugger_msg_pending = false;
940 static void DebugMessageCallback(EV_P_ ev_async *watcher, int revents) {
942 assert(watcher == &debug_watcher);
943 assert(revents == EV_ASYNC);
944 Debug::ProcessDebugMessages();
947 static void DebugMessageDispatch(void) {
948 // This function is called from V8's debug thread when a debug TCP client
949 // has sent a message.
951 // Send a signal to our main thread saying that it should enter V8 to
952 // handle the message.
953 debugger_msg_pending = true;
954 ev_async_send(EV_DEFAULT_UC_ &debug_watcher);
957 static Handle<Value> CheckBreak(const Arguments& args) {
960 // TODO FIXME This function is a hack to wait until V8 is ready to accept
961 // commands. There seems to be a bug in EnableAgent( _ , _ , true) which
962 // makes it unusable here. Ideally we'd be able to bind EnableAgent and
963 // get it to halt until Eclipse connects.
965 if (!debug_wait_connect)
968 printf("Waiting for remote debugger connection...\n");
970 const int halfSecond = 50;
971 const int tenMs=10000;
972 debugger_msg_pending = false;
974 if (debugger_msg_pending) {
976 Debug::ProcessDebugMessages();
977 debugger_msg_pending = false;
979 // wait for 500 msec of silence from remote debugger
980 int cnt = halfSecond;
982 debugger_msg_pending = false;
984 if (debugger_msg_pending) {
985 debugger_msg_pending = false;
997 static void Load(int argc, char *argv[]) {
1000 Local<FunctionTemplate> process_template = FunctionTemplate::New();
1001 node::EventEmitter::Initialize(process_template);
1003 process = Persistent<Object>::New(process_template->GetFunction()->NewInstance());
1005 // Add a reference to the global object
1006 Local<Object> global = Context::GetCurrent()->Global();
1007 process->Set(String::NewSymbol("global"), global);
1010 process->Set(String::NewSymbol("version"), String::New(NODE_VERSION));
1011 // process.installPrefix
1012 process->Set(String::NewSymbol("installPrefix"), String::New(NODE_PREFIX));
1015 #define xstr(s) str(s)
1017 process->Set(String::NewSymbol("platform"), String::New(xstr(PLATFORM)));
1021 Local<Array> arguments = Array::New(argc - option_end_index + 1);
1022 arguments->Set(Integer::New(0), String::New(argv[0]));
1023 for (j = 1, i = option_end_index + 1; i < argc; j++, i++) {
1024 Local<String> arg = String::New(argv[i]);
1025 arguments->Set(Integer::New(j), arg);
1028 process->Set(String::NewSymbol("ARGV"), arguments);
1029 process->Set(String::NewSymbol("argv"), arguments);
1031 // create process.env
1032 Local<Object> env = Object::New();
1033 for (i = 0; environ[i]; i++) {
1034 // skip entries without a '=' character
1035 for (j = 0; environ[i][j] && environ[i][j] != '='; j++) { ; }
1036 // create the v8 objects
1037 Local<String> field = String::New(environ[i], j);
1038 Local<String> value = Local<String>();
1039 if (environ[i][j] == '=') {
1040 value = String::New(environ[i]+j+1);
1043 env->Set(field, value);
1045 // assign process.ENV
1046 process->Set(String::NewSymbol("ENV"), env);
1047 process->Set(String::NewSymbol("env"), env);
1049 process->Set(String::NewSymbol("pid"), Integer::New(getpid()));
1051 // define various internal methods
1052 NODE_SET_METHOD(process, "loop", Loop);
1053 NODE_SET_METHOD(process, "unloop", Unloop);
1054 NODE_SET_METHOD(process, "compile", Compile);
1055 NODE_SET_METHOD(process, "_byteLength", ByteLength);
1056 NODE_SET_METHOD(process, "reallyExit", Exit);
1057 NODE_SET_METHOD(process, "chdir", Chdir);
1058 NODE_SET_METHOD(process, "cwd", Cwd);
1059 NODE_SET_METHOD(process, "getuid", GetUid);
1060 NODE_SET_METHOD(process, "setuid", SetUid);
1062 NODE_SET_METHOD(process, "setgid", SetGid);
1063 NODE_SET_METHOD(process, "getgid", GetGid);
1065 NODE_SET_METHOD(process, "umask", Umask);
1066 NODE_SET_METHOD(process, "dlopen", DLOpen);
1067 NODE_SET_METHOD(process, "kill", Kill);
1068 NODE_SET_METHOD(process, "memoryUsage", MemoryUsage);
1069 NODE_SET_METHOD(process, "checkBreak", CheckBreak);
1071 // Assign the EventEmitter. It was created in main().
1072 process->Set(String::NewSymbol("EventEmitter"),
1073 EventEmitter::constructor_template->GetFunction());
1075 // Initialize the stats object
1076 Local<FunctionTemplate> stat_templ = FunctionTemplate::New();
1077 stats_constructor_template = Persistent<FunctionTemplate>::New(stat_templ);
1078 process->Set(String::NewSymbol("Stats"),
1079 stats_constructor_template->GetFunction());
1082 // Initialize the C++ modules..................filename of module
1083 IdleWatcher::Initialize(process); // idle_watcher.cc
1084 Stdio::Initialize(process); // stdio.cc
1085 Timer::Initialize(process); // timer.cc
1086 SignalHandler::Initialize(process); // signal_handler.cc
1087 Stat::Initialize(process); // stat.cc
1088 ChildProcess::Initialize(process); // child_process.cc
1089 DefineConstants(process); // constants.cc
1091 Local<Object> dns = Object::New();
1092 process->Set(String::NewSymbol("dns"), dns);
1093 DNS::Initialize(dns); // dns.cc
1094 Local<Object> fs = Object::New();
1095 process->Set(String::NewSymbol("fs"), fs);
1096 File::Initialize(fs); // file.cc
1097 // Create node.tcp. Note this separate from lib/tcp.js which is the public
1099 Local<Object> tcp = Object::New();
1100 process->Set(String::New("tcp"), tcp);
1101 Server::Initialize(tcp); // tcp.cc
1102 Connection::Initialize(tcp); // tcp.cc
1103 // Create node.http. Note this separate from lib/http.js which is the
1105 Local<Object> http = Object::New();
1106 process->Set(String::New("http"), http);
1107 HTTPServer::Initialize(http); // http.cc
1108 HTTPConnection::Initialize(http); // http.cc
1112 // Compile, execute the src/node.js file. (Which was included as static C
1113 // string in node_natives.h. 'natve_node' is the string containing that
1116 // The node.js file returns a function 'f'
1122 Local<Value> f_value = ExecuteString(String::New(native_node),
1123 String::New("node.js"));
1125 if (try_catch.HasCaught()) {
1126 ReportException(try_catch);
1130 assert(f_value->IsFunction());
1131 Local<Function> f = Local<Function>::Cast(f_value);
1133 // Now we call 'f' with the 'process' variable that we've built up with
1134 // all our bindings. Inside node.js we'll take care of assigning things to
1137 // We start the process this way in order to be more modular. Developers
1138 // who do not like how 'src/node.js' setups the module system but do like
1139 // Node's I/O bindings may want to replace 'f' with their own function.
1141 Local<Value> args[1] = { Local<Value>::New(process) };
1143 f->Call(global, 1, args);
1146 if (try_catch.HasCaught()) {
1147 ReportException(try_catch);
1153 static void PrintHelp();
1155 static void ParseDebugOpt(const char* arg) {
1158 use_debug_agent = true;
1159 if (!strcmp (arg, "--debug-brk")) {
1160 debug_wait_connect = true;
1162 } else if (!strcmp(arg, "--debug")) {
1164 } else if (strstr(arg, "--debug-brk=") == arg) {
1165 debug_wait_connect = true;
1166 p = 1 + strchr(arg, '=');
1167 debug_port = atoi(p);
1168 } else if (strstr(arg, "--debug=") == arg) {
1169 p = 1 + strchr(arg, '=');
1170 debug_port = atoi(p);
1172 if (p && debug_port > 1024 && debug_port < 65536)
1175 fprintf(stderr, "Bad debug option.\n");
1176 if (p) fprintf(stderr, "Debug port must be in range 1025 to 65535.\n");
1182 static void PrintHelp() {
1183 printf("Usage: node [options] script.js [arguments] \n"
1185 " -v, --version print node's version\n"
1186 " --debug[=port] enable remote debugging via given TCP port\n"
1187 " without stopping the execution\n"
1188 " --debug-brk[=port] as above, but break in script.js and\n"
1189 " wait for remote debugger to connect\n"
1190 " --v8-options print v8 command line options\n"
1191 " --vars print various compiled-in variables\n"
1193 "Enviromental variables:\n"
1194 "NODE_PATH ':'-separated list of directories\n"
1195 " prefixed to the module search path,\n"
1197 "NODE_DEBUG Print additional debugging output.\n"
1199 "Documentation can be found at http://nodejs.org/api.html"
1200 " or with 'man node'\n");
1203 // Parse node command line arguments.
1204 static void ParseArgs(int *argc, char **argv) {
1205 // TODO use parse opts
1206 for (int i = 1; i < *argc; i++) {
1207 const char *arg = argv[i];
1208 if (strstr(arg, "--debug") == arg) {
1210 argv[i] = const_cast<char*>("");
1211 option_end_index = i;
1212 } else if (strcmp(arg, "--version") == 0 || strcmp(arg, "-v") == 0) {
1213 printf("%s\n", NODE_VERSION);
1215 } else if (strcmp(arg, "--vars") == 0) {
1216 printf("NODE_PREFIX: %s\n", NODE_PREFIX);
1217 printf("NODE_LIBRARIES_PREFIX: %s/%s\n", NODE_PREFIX, "lib/node/libraries");
1218 printf("NODE_CFLAGS: %s\n", NODE_CFLAGS);
1220 } else if (strcmp(arg, "--help") == 0 || strcmp(arg, "-h") == 0) {
1223 } else if (strcmp(arg, "--v8-options") == 0) {
1224 argv[i] = const_cast<char*>("--help");
1225 option_end_index = i+1;
1226 } else if (argv[i][0] != '-') {
1227 option_end_index = i-1;
1236 int main(int argc, char *argv[]) {
1237 // Parse a few arguments which are specific to Node.
1238 node::ParseArgs(&argc, argv);
1239 // Parse the rest of the args (up to the 'option_end_index' (where '--' was
1240 // in the command line))
1241 V8::SetFlagsFromCommandLine(&node::option_end_index, argv, false);
1243 // Error out if we don't have a script argument.
1245 fprintf(stderr, "No script was specified.\n");
1250 // Ignore the SIGPIPE
1251 evcom_ignore_sigpipe();
1253 // Initialize the default ev loop.
1255 // TODO(Ryan) I'm experiencing abnormally high load using Solaris's
1256 // EVBACKEND_PORT. Temporarally forcing select() until I debug.
1257 ev_default_loop(EVBACKEND_SELECT);
1259 ev_default_loop(EVFLAG_AUTO);
1263 ev_timer_init(&node::gc_timer, node::GCTimeout, GC_INTERVAL, GC_INTERVAL);
1264 // Set the gc_timer to max priority so that it runs before all other
1265 // watchers. In this way it can check if the 'tick' has other pending
1266 // watchers by using ev_pending_count() - if it ran with lower priority
1267 // then the other watchers might run before it - not giving us good idea
1268 // of loop idleness.
1269 ev_set_priority(&node::gc_timer, EV_MAXPRI);
1270 ev_timer_start(EV_DEFAULT_UC_ &node::gc_timer);
1271 ev_unref(EV_DEFAULT_UC);
1274 // Setup the EIO thread pool
1275 { // It requires 3, yes 3, watchers.
1276 ev_idle_init(&node::eio_poller, node::DoPoll);
1278 ev_async_init(&node::eio_want_poll_notifier, node::WantPollNotifier);
1279 ev_async_start(EV_DEFAULT_UC_ &node::eio_want_poll_notifier);
1280 ev_unref(EV_DEFAULT_UC);
1282 ev_async_init(&node::eio_done_poll_notifier, node::DonePollNotifier);
1283 ev_async_start(EV_DEFAULT_UC_ &node::eio_done_poll_notifier);
1284 ev_unref(EV_DEFAULT_UC);
1286 eio_init(node::EIOWantPoll, node::EIODonePoll);
1287 // Don't handle more than 10 reqs on each eio_poll(). This is to avoid
1288 // race conditions. See test/mjsunit/test-eio-race.js
1289 eio_set_max_poll_reqs(10);
1293 HandleScope handle_scope;
1295 V8::SetFatalErrorHandler(node::OnFatalError);
1297 // If the --debug flag was specified then initialize the debug thread.
1298 if (node::use_debug_agent) {
1299 // Initialize the async watcher for receiving messages from the debug
1300 // thread and marshal it into the main thread. DebugMessageCallback()
1301 // is called from the main thread to execute a random bit of javascript
1302 // - which will give V8 control so it can handle whatever new message
1303 // had been received on the debug thread.
1304 ev_async_init(&node::debug_watcher, node::DebugMessageCallback);
1305 ev_set_priority(&node::debug_watcher, EV_MAXPRI);
1306 // Set the callback DebugMessageDispatch which is called from the debug
1308 Debug::SetDebugMessageDispatchHandler(node::DebugMessageDispatch);
1309 // Start the async watcher.
1310 ev_async_start(EV_DEFAULT_UC_ &node::debug_watcher);
1311 // unref it so that we exit the event loop despite it being active.
1312 ev_unref(EV_DEFAULT_UC);
1314 // Start the debug thread and it's associated TCP server on port 5858.
1315 bool r = Debug::EnableAgent("node " NODE_VERSION, node::debug_port);
1317 // Crappy check that everything went well. FIXME
1319 // Print out some information.
1320 printf("debugger listening on port %d\n", node::debug_port);
1323 // Create the one and only Context.
1324 Persistent<Context> context = Context::New();
1325 Context::Scope context_scope(context);
1327 // Create all the objects, load modules, do everything.
1328 // so your next reading stop should be node::Load()!
1329 node::Load(argc, argv);
1331 node::Stdio::Flush();