Fix gcc warnings in node.cc
[platform/upstream/nodejs.git] / src / node.cc
1 // Copyright 2009 Ryan Dahl <ry@tinyclouds.org>
2 #include <node.h>
3
4 #include <stdio.h>
5 #include <stdlib.h>
6 #include <string.h>
7 #include <limits.h> /* PATH_MAX */
8 #include <assert.h>
9 #include <unistd.h>
10 #include <errno.h>
11 #include <dlfcn.h> /* dlopen(), dlsym() */
12 #include <sys/types.h>
13 #include <unistd.h> /* setuid, getuid */
14
15 #include <node_events.h>
16 #include <node_dns.h>
17 #include <node_net.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>
29
30 #include <v8-debug.h>
31
32 using namespace v8;
33
34 extern char **environ;
35
36 namespace node {
37
38 static Persistent<Object> process;
39
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;
53
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;
58
59 static Persistent<String> listeners_symbol;
60 static Persistent<String> uncaught_exception_symbol;
61 static Persistent<String> emit_symbol;
62
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;
67
68
69 static ev_async eio_want_poll_notifier;
70 static ev_async eio_done_poll_notifier;
71 static ev_idle  eio_poller;
72
73 static ev_timer  gc_timer;
74 #define GC_INTERVAL 2.0
75
76
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();
84 }
85
86
87 static void DoPoll(EV_P_ ev_idle *watcher, int revents) {
88   assert(watcher == &eio_poller);
89   assert(revents == EV_IDLE);
90
91   //printf("eio_poller\n");
92
93   if (eio_poll() != -1) {
94     //printf("eio_poller stop\n");
95     ev_idle_stop(EV_DEFAULT_UC_ watcher);
96   }
97 }
98
99
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);
104
105   //printf("want poll notifier\n");
106
107   if (eio_poll() == -1) {
108     //printf("eio_poller start\n");
109     ev_idle_start(EV_DEFAULT_UC_ &eio_poller);
110   }
111 }
112
113
114 static void DonePollNotifier(EV_P_ ev_async *watcher, int revents) {
115   assert(watcher == &eio_done_poll_notifier);
116   assert(revents == EV_ASYNC);
117
118   //printf("done poll notifier\n");
119
120   if (eio_poll() != -1) {
121     //printf("eio_poller stop\n");
122     ev_idle_stop(EV_DEFAULT_UC_ &eio_poller);
123   }
124 }
125
126
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);
132 }
133
134
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);
139 }
140
141
142 enum encoding ParseEncoding(Handle<Value> encoding_v, enum encoding _default) {
143   HandleScope scope;
144
145   if (!encoding_v->IsString()) return _default;
146
147   String::Utf8Value encoding(encoding_v->ToString());
148
149   if (strcasecmp(*encoding, "utf8") == 0) {
150     return UTF8;
151   } else if (strcasecmp(*encoding, "utf-8") == 0) {
152     return UTF8;
153   } else if (strcasecmp(*encoding, "ascii") == 0) {
154     return ASCII;
155   } else if (strcasecmp(*encoding, "binary") == 0) {
156     return BINARY;
157   } else if (strcasecmp(*encoding, "raw") == 0) {
158     fprintf(stderr, "'raw' (array of integers) has been removed. "
159                     "Use 'binary'.\n");
160     return BINARY;
161   } else if (strcasecmp(*encoding, "raws") == 0) {
162     fprintf(stderr, "'raws' encoding has been renamed to 'binary'. "
163                     "Please update your code.\n");
164     return BINARY;
165   } else {
166     return _default;
167   }
168 }
169
170 Local<Value> Encode(const void *buf, size_t len, enum encoding encoding) {
171   HandleScope scope;
172
173   if (!len) return scope.Close(String::Empty());
174
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];
181     }
182     Local<String> chunk = String::New(twobytebuf, len);
183     delete [] twobytebuf; // TODO use ExternalTwoByteString?
184     return scope.Close(chunk);
185   }
186
187   // utf8 or ascii encoding
188   Local<String> chunk = String::New((const char*)buf, len);
189   return scope.Close(chunk);
190 }
191
192 // Returns -1 if the handle was not valid for decoding
193 ssize_t DecodeBytes(v8::Handle<v8::Value> val, enum encoding encoding) {
194   HandleScope scope;
195
196   if (val->IsArray()) {
197     fprintf(stderr, "'raw' encoding (array of integers) has been removed. "
198                     "Use 'binary'.\n");
199     assert(0);
200     return -1;
201   }
202
203   Local<String> str = val->ToString();
204
205   if (encoding == UTF8) return str->Utf8Length();
206
207   return str->Length();
208 }
209
210 #ifndef MIN
211 # define MIN(a, b) ((a) < (b) ? (a) : (b))
212 #endif
213
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) {
218   HandleScope scope;
219
220   // XXX
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
225
226   if (val->IsArray()) {
227     fprintf(stderr, "'raw' encoding (array of integers) has been removed. "
228                     "Use 'binary'.\n");
229     assert(0);
230     return -1;
231   }
232
233   Local<String> str = val->ToString();
234
235   if (encoding == UTF8) {
236     str->WriteUtf8(buf, buflen);
237     return buflen;
238   }
239
240   if (encoding == ASCII) {
241     str->WriteAscii(buf, 0, buflen);
242     return buflen;
243   }
244
245   // THIS IS AWFUL!!! FIXME
246
247   assert(encoding == BINARY);
248
249   uint16_t * twobytebuf = new uint16_t[buflen];
250
251   str->Write(twobytebuf, 0, buflen);
252
253   for (size_t i = 0; i < buflen; i++) {
254     unsigned char *b = reinterpret_cast<unsigned char*>(&twobytebuf[i]);
255     assert(b[1] == 0);
256     buf[i] = b[0];
257   }
258
259   delete [] twobytebuf;
260
261   return buflen;
262 }
263
264 static Persistent<FunctionTemplate> stats_constructor_template;
265
266 Local<Object> BuildStatsObject(struct stat * s) {
267   HandleScope scope;
268
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");
283   }
284
285   Local<Object> stats =
286     stats_constructor_template->GetFunction()->NewInstance();
287
288   /* ID of device containing file */
289   stats->Set(dev_symbol, Integer::New(s->st_dev));
290
291   /* inode number */
292   stats->Set(ino_symbol, Integer::New(s->st_ino));
293
294   /* protection */
295   stats->Set(mode_symbol, Integer::New(s->st_mode));
296
297   /* number of hard links */
298   stats->Set(nlink_symbol, Integer::New(s->st_nlink));
299
300   /* user ID of owner */
301   stats->Set(uid_symbol, Integer::New(s->st_uid));
302
303   /* group ID of owner */
304   stats->Set(gid_symbol, Integer::New(s->st_gid));
305
306   /* device ID (if special file) */
307   stats->Set(rdev_symbol, Integer::New(s->st_rdev));
308
309   /* total size, in bytes */
310   stats->Set(size_symbol, Integer::New(s->st_size));
311
312   /* blocksize for filesystem I/O */
313   stats->Set(blksize_symbol, Integer::New(s->st_blksize));
314
315   /* number of blocks allocated */
316   stats->Set(blocks_symbol, Integer::New(s->st_blocks));
317
318   /* time of last access */
319   stats->Set(atime_symbol, NODE_UNIXTIME_V8(s->st_atime));
320
321   /* time of last modification */
322   stats->Set(mtime_symbol, NODE_UNIXTIME_V8(s->st_mtime));
323
324   /* time of last status change */
325   stats->Set(ctime_symbol, NODE_UNIXTIME_V8(s->st_ctime));
326
327   return scope.Close(stats);
328 }
329
330
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>";
334 }
335
336 static void ReportException(TryCatch &try_catch, bool show_line = false) {
337   Handle<Message> message = try_catch.Message();
338
339   Handle<Value> error = try_catch.Exception();
340   Handle<String> stack;
341
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);
346   }
347
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, " ");
362     }
363     int end = message->GetEndColumn();
364     for (int i = start; i < end; i++) {
365       fprintf(stderr, "^");
366     }
367     fprintf(stderr, "\n");
368   }
369
370   if (stack.IsEmpty()) {
371     message->PrintCurrentStackTrace(stderr);
372   } else {
373     String::Utf8Value trace(stack);
374     fprintf(stderr, "%s\n", *trace);
375   }
376   fflush(stderr);
377 }
378
379 // Executes a str within the current v8 context.
380 Local<Value> ExecuteString(Local<String> source, Local<Value> filename) {
381   HandleScope scope;
382   TryCatch try_catch;
383
384   Local<Script> script = Script::Compile(source, filename);
385   if (script.IsEmpty()) {
386     ReportException(try_catch);
387     exit(1);
388   }
389
390   Local<Value> result = script->Run();
391   if (result.IsEmpty()) {
392     ReportException(try_catch);
393     exit(1);
394   }
395
396   return scope.Close(result);
397 }
398
399 static Handle<Value> ByteLength(const Arguments& args) {
400   HandleScope scope;
401
402   if (args.Length() < 1 || !args[0]->IsString()) {
403     return ThrowException(Exception::Error(String::New("Bad argument.")));
404   }
405
406   Local<Integer> length = Integer::New(DecodeBytes(args[0], ParseEncoding(args[1], UTF8)));
407
408   return scope.Close(length);
409 }
410
411 static Handle<Value> Loop(const Arguments& args) {
412   HandleScope scope;
413   assert(args.Length() == 0);
414
415   // TODO Probably don't need to start this each time.
416   // Avoids failing on test/mjsunit/test-eio-race3.js though
417   ev_idle_start(EV_DEFAULT_UC_ &eio_poller);
418
419   ev_loop(EV_DEFAULT_UC_ 0);
420   return Undefined();
421 }
422
423 static Handle<Value> Unloop(const Arguments& args) {
424   fprintf(stderr, "Deprecation: Don't use process.unloop(). It will be removed soon.\n");
425   HandleScope scope;
426   int how = EVUNLOOP_ONE;
427   if (args[0]->IsString()) {
428     String::Utf8Value how_s(args[0]->ToString());
429     if (0 == strcmp(*how_s, "all")) {
430       how = EVUNLOOP_ALL;
431     }
432   }
433   ev_unloop(EV_DEFAULT_ how);
434   return Undefined();
435 }
436
437 static Handle<Value> Chdir(const Arguments& args) {
438   HandleScope scope;
439
440   if (args.Length() != 1 || !args[0]->IsString()) {
441     return ThrowException(Exception::Error(String::New("Bad argument.")));
442   }
443
444   String::Utf8Value path(args[0]->ToString());
445
446   int r = chdir(*path);
447
448   if (r != 0) {
449     return ThrowException(Exception::Error(String::New(strerror(errno))));
450   }
451
452   return Undefined();
453 }
454
455 static Handle<Value> Cwd(const Arguments& args) {
456   HandleScope scope;
457   assert(args.Length() == 0);
458
459   char output[PATH_MAX];
460   char *r = getcwd(output, PATH_MAX);
461   if (r == NULL) {
462     return ThrowException(Exception::Error(String::New(strerror(errno))));
463   }
464   Local<String> cwd = String::New(output);
465
466   return scope.Close(cwd);
467 }
468
469 static Handle<Value> Umask(const Arguments& args){
470   HandleScope scope;
471   unsigned int old;
472   if(args.Length() < 1) {
473     old = umask(0);
474     umask((mode_t)old);
475   }
476   else if(!args[0]->IsInt32()) {
477     return ThrowException(Exception::TypeError(
478           String::New("argument must be an integer.")));
479   }
480   else {
481     old = umask((mode_t)args[0]->Uint32Value());
482   }
483   return scope.Close(Uint32::New(old));
484 }
485
486
487 static Handle<Value> GetUid(const Arguments& args) {
488   HandleScope scope;
489   assert(args.Length() == 0);
490   int uid = getuid();
491   return scope.Close(Integer::New(uid));
492 }
493
494 static Handle<Value> GetGid(const Arguments& args) {
495   HandleScope scope;
496   assert(args.Length() == 0);
497   int gid = getgid();
498   return scope.Close(Integer::New(gid));
499 }
500
501
502 static Handle<Value> SetGid(const Arguments& args) {
503   HandleScope scope;
504
505   if (args.Length() < 1) {
506     return ThrowException(Exception::Error(
507       String::New("setgid requires 1 argument")));
508   }
509
510   Local<Integer> given_gid = args[0]->ToInteger();
511   int gid = given_gid->Int32Value();
512   int result;
513   if ((result = setgid(gid)) != 0) {
514     return ThrowException(Exception::Error(String::New(strerror(errno))));
515   }
516   return Undefined();
517 }
518
519 static Handle<Value> SetUid(const Arguments& args) {
520   HandleScope scope;
521
522   if (args.Length() < 1) {
523     return ThrowException(Exception::Error(
524           String::New("setuid requires 1 argument")));
525   }
526
527   Local<Integer> given_uid = args[0]->ToInteger();
528   int uid = given_uid->Int32Value();
529   int result;
530   if ((result = setuid(uid)) != 0) {
531     return ThrowException(Exception::Error(String::New(strerror(errno))));
532   }
533   return Undefined();
534 }
535
536
537 v8::Handle<v8::Value> Exit(const v8::Arguments& args) {
538   HandleScope scope;
539   fflush(stderr);
540   Stdio::Flush();
541   exit(args[0]->IntegerValue());
542   return Undefined();
543 }
544
545 #ifdef __sun
546 #define HAVE_GETMEM 1
547 #include <unistd.h> /* getpagesize() */
548
549 #if (!defined(_LP64)) && (_FILE_OFFSET_BITS - 0 == 64)
550 #define PROCFS_FILE_OFFSET_BITS_HACK 1
551 #undef _FILE_OFFSET_BITS
552 #else
553 #define PROCFS_FILE_OFFSET_BITS_HACK 0
554 #endif
555
556 #include <procfs.h>
557
558 #if (PROCFS_FILE_OFFSET_BITS_HACK - 0 == 1)
559 #define _FILE_OFFSET_BITS 64
560 #endif
561
562 int getmem(size_t *rss, size_t *vsize) {
563   pid_t pid = getpid();
564
565   size_t page_size = getpagesize();
566   char pidpath[1024];
567   sprintf(pidpath, "/proc/%d/psinfo", pid);
568
569   psinfo_t psinfo;
570   FILE *f = fopen(pidpath, "r");
571   if (!f) return -1;
572
573   if (fread(&psinfo, sizeof(psinfo_t), 1, f) != 1) {
574     fclose (f);
575     return -1;
576   }
577
578   /* XXX correct? */
579
580   *vsize = (size_t) psinfo.pr_size * page_size;
581   *rss = (size_t) psinfo.pr_rssize * 1024;
582
583   fclose (f);
584
585   return 0;
586 }
587 #endif
588
589
590 #ifdef __FreeBSD__
591 #define HAVE_GETMEM 1
592 #include <kvm.h>
593 #include <sys/param.h>
594 #include <sys/sysctl.h>
595 #include <sys/user.h>
596 #include <fcntl.h>
597 #include <unistd.h>
598
599 int getmem(size_t *rss, size_t *vsize) {
600   kvm_t *kd = NULL;
601   struct kinfo_proc *kinfo = NULL;
602   pid_t pid;
603   int nprocs;
604   size_t page_size = getpagesize();
605
606   pid = getpid();
607
608   kd = kvm_open(NULL, NULL, NULL, O_RDONLY, "kvm_open");
609   if (kd == NULL) goto error;
610
611   kinfo = kvm_getprocs(kd, KERN_PROC_PID, pid, &nprocs);
612   if (kinfo == NULL) goto error;
613
614   *rss = kinfo->ki_rssize * page_size;
615   *vsize = kinfo->ki_size;
616
617   kvm_close(kd);
618
619   return 0;
620
621 error:
622   if (kd) kvm_close(kd);
623   return -1;
624 }
625 #endif  // __FreeBSD__
626
627
628 #ifdef __APPLE__
629 #define HAVE_GETMEM 1
630 /* Researched by Tim Becker and Michael Knight
631  * http://blog.kuriositaet.de/?p=257
632  */
633
634 #include <mach/task.h>
635 #include <mach/mach_init.h>
636
637 int getmem(size_t *rss, size_t *vsize) {
638   struct task_basic_info t_info;
639   mach_msg_type_number_t t_info_count = TASK_BASIC_INFO_COUNT;
640
641   int r = task_info(mach_task_self(),
642                     TASK_BASIC_INFO,
643                     (task_info_t)&t_info,
644                     &t_info_count);
645
646   if (r != KERN_SUCCESS) return -1;
647
648   *rss = t_info.resident_size;
649   *vsize  = t_info.virtual_size;
650
651   return 0;
652 }
653 #endif  // __APPLE__
654
655 #ifdef __linux__
656 # define HAVE_GETMEM 1
657 # include <sys/param.h> /* for MAXPATHLEN */
658
659 int getmem(size_t *rss, size_t *vsize) {
660   FILE *f = fopen("/proc/self/stat", "r");
661   if (!f) return -1;
662
663   int itmp;
664   char ctmp;
665   char buffer[MAXPATHLEN];
666   size_t page_size = getpagesize();
667
668   /* PID */
669   if (fscanf(f, "%d ", &itmp) == 0) goto error;
670   /* Exec file */
671   if (fscanf (f, "%s ", &buffer[0]) == 0) goto error;
672   /* State */
673   if (fscanf (f, "%c ", &ctmp) == 0) goto error;
674   /* Parent process */
675   if (fscanf (f, "%d ", &itmp) == 0) goto error;
676   /* Process group */
677   if (fscanf (f, "%d ", &itmp) == 0) goto error;
678   /* Session id */
679   if (fscanf (f, "%d ", &itmp) == 0) goto error;
680   /* TTY */
681   if (fscanf (f, "%d ", &itmp) == 0) goto error;
682   /* TTY owner process group */
683   if (fscanf (f, "%d ", &itmp) == 0) goto error;
684   /* Flags */
685   if (fscanf (f, "%u ", &itmp) == 0) goto error;
686   /* Minor faults (no memory page) */
687   if (fscanf (f, "%u ", &itmp) == 0) goto error;
688   /* Minor faults, children */
689   if (fscanf (f, "%u ", &itmp) == 0) goto error;
690   /* Major faults (memory page faults) */
691   if (fscanf (f, "%u ", &itmp) == 0) goto error;
692   /* Major faults, children */
693   if (fscanf (f, "%u ", &itmp) == 0) goto error;
694   /* utime */
695   if (fscanf (f, "%d ", &itmp) == 0) goto error;
696   /* stime */
697   if (fscanf (f, "%d ", &itmp) == 0) goto error;
698   /* utime, children */
699   if (fscanf (f, "%d ", &itmp) == 0) goto error;
700   /* stime, children */
701   if (fscanf (f, "%d ", &itmp) == 0) goto error;
702   /* jiffies remaining in current time slice */
703   if (fscanf (f, "%d ", &itmp) == 0) goto error;
704   /* 'nice' value */
705   if (fscanf (f, "%d ", &itmp) == 0) goto error;
706   /* jiffies until next timeout */
707   if (fscanf (f, "%u ", &itmp) == 0) goto error;
708   /* jiffies until next SIGALRM */
709   if (fscanf (f, "%u ", &itmp) == 0) goto error;
710   /* start time (jiffies since system boot) */
711   if (fscanf (f, "%d ", &itmp) == 0) goto error;
712
713   /* Virtual memory size */
714   if (fscanf (f, "%u ", &itmp) == 0) goto error;
715   *vsize = (size_t) itmp;
716
717   /* Resident set size */
718   if (fscanf (f, "%u ", &itmp) == 0) goto error;
719   *rss = (size_t) itmp * page_size;
720
721   /* rlim */
722   if (fscanf (f, "%u ", &itmp) == 0) goto error;
723   /* Start of text */
724   if (fscanf (f, "%u ", &itmp) == 0) goto error;
725   /* End of text */
726   if (fscanf (f, "%u ", &itmp) == 0) goto error;
727   /* Start of stack */
728   if (fscanf (f, "%u ", &itmp) == 0) goto error;
729
730   fclose (f);
731
732   return 0;
733
734 error:
735   fclose (f);
736   return -1;
737 }
738 #endif  // __linux__
739
740 v8::Handle<v8::Value> MemoryUsage(const v8::Arguments& args) {
741   HandleScope scope;
742   assert(args.Length() == 0);
743
744 #ifndef HAVE_GETMEM
745   return ThrowException(Exception::Error(String::New("Not support on your platform. (Talk to Ryan.)")));
746 #else
747   size_t rss, vsize;
748
749   int r = getmem(&rss, &vsize);
750
751   if (r != 0) {
752     return ThrowException(Exception::Error(String::New(strerror(errno))));
753   }
754
755   Local<Object> info = Object::New();
756
757   if (rss_symbol.IsEmpty()) {
758     rss_symbol = NODE_PSYMBOL("rss");
759     vsize_symbol = NODE_PSYMBOL("vsize");
760     heap_total_symbol = NODE_PSYMBOL("heapTotal");
761     heap_used_symbol = NODE_PSYMBOL("heapUsed");
762   }
763
764   info->Set(rss_symbol, Integer::NewFromUnsigned(rss));
765   info->Set(vsize_symbol, Integer::NewFromUnsigned(vsize));
766
767   // V8 memory usage
768   HeapStatistics v8_heap_stats;
769   V8::GetHeapStatistics(&v8_heap_stats);
770   info->Set(heap_total_symbol,
771             Integer::NewFromUnsigned(v8_heap_stats.total_heap_size()));
772   info->Set(heap_used_symbol,
773             Integer::NewFromUnsigned(v8_heap_stats.used_heap_size()));
774
775   return scope.Close(info);
776 #endif
777 }
778
779
780 v8::Handle<v8::Value> Kill(const v8::Arguments& args) {
781   HandleScope scope;
782
783   if (args.Length() < 1 || !args[0]->IsNumber()) {
784     return ThrowException(Exception::Error(String::New("Bad argument.")));
785   }
786
787   pid_t pid = args[0]->IntegerValue();
788
789   int sig = SIGTERM;
790
791   if (args.Length() >= 2) {
792     if (args[1]->IsNumber()) {
793       sig = args[1]->Int32Value();
794     } else if (args[1]->IsString()) {
795       Local<String> signame = args[1]->ToString();
796
797       Local<Value> sig_v = process->Get(signame);
798       if (!sig_v->IsNumber()) {
799         return ThrowException(Exception::Error(String::New("Unknown signal")));
800       }
801       sig = sig_v->Int32Value();
802     }
803   }
804
805   int r = kill(pid, sig);
806
807   if (r != 0) {
808     return ThrowException(Exception::Error(String::New(strerror(errno))));
809   }
810
811   return Undefined();
812 }
813
814 typedef void (*extInit)(Handle<Object> exports);
815
816 // DLOpen is node.dlopen(). Used to load 'module.node' dynamically shared
817 // objects.
818 Handle<Value> DLOpen(const v8::Arguments& args) {
819   HandleScope scope;
820
821   if (args.Length() < 2) return Undefined();
822
823   String::Utf8Value filename(args[0]->ToString()); // Cast
824   Local<Object> target = args[1]->ToObject(); // Cast
825
826   // Actually call dlopen().
827   // FIXME: This is a blocking function and should be called asynchronously!
828   // This function should be moved to file.cc and use libeio to make this
829   // system call.
830   void *handle = dlopen(*filename, RTLD_LAZY);
831
832   // Handle errors.
833   if (handle == NULL) {
834     Local<Value> exception = Exception::Error(String::New(dlerror()));
835     return ThrowException(exception);
836   }
837
838   // Get the init() function from the dynamically shared object.
839   void *init_handle = dlsym(handle, "init");
840   // Error out if not found.
841   if (init_handle == NULL) {
842     Local<Value> exception =
843       Exception::Error(String::New("No 'init' symbol found in module."));
844     return ThrowException(exception);
845   }
846   extInit init = (extInit)(init_handle); // Cast
847
848   // Execute the C++ module
849   init(target);
850
851   return Undefined();
852 }
853
854 // evalcx(code, sandbox={})
855 // Executes code in a new context
856 Handle<Value> EvalCX(const Arguments& args) {
857   HandleScope scope;
858
859   Local<String> code = args[0]->ToString();
860   Local<Object> sandbox = args.Length() > 1 ? args[1]->ToObject()
861                                             : Object::New();
862   // Create the new context
863   Persistent<Context> context = Context::New();
864
865   // Copy objects from global context, to our brand new context
866   Handle<Array> keys = sandbox->GetPropertyNames();
867
868   unsigned int i;
869   for (i = 0; i < keys->Length(); i++) {
870     Handle<String> key = keys->Get(Integer::New(i))->ToString();
871     Handle<Value> value = sandbox->Get(key);
872     context->Global()->Set(key, value->ToObject()->Clone());
873   }
874
875   // Enter and compile script
876   context->Enter();
877
878   // Catch errors
879   TryCatch try_catch;
880
881   Local<Script> script = Script::Compile(code, String::New("evalcx"));
882   Handle<Value> result;
883
884   if (script.IsEmpty()) {
885     result = ThrowException(try_catch.Exception());
886   } else {
887     result = script->Run();
888     if (result.IsEmpty()) {
889       result = ThrowException(try_catch.Exception());
890     }
891   }
892
893   // Clean up, clean up, everybody everywhere!
894   context->DetachGlobal();
895   context->Exit();
896   context.Dispose();
897
898   return scope.Close(result);
899 }
900
901 Handle<Value> Compile(const Arguments& args) {
902   HandleScope scope;
903
904   if (args.Length() < 2) {
905     return ThrowException(Exception::TypeError(
906           String::New("needs two arguments.")));
907   }
908
909   Local<String> source = args[0]->ToString();
910   Local<String> filename = args[1]->ToString();
911
912   TryCatch try_catch;
913
914   Local<Script> script = Script::Compile(source, filename);
915   if (try_catch.HasCaught()) {
916     // Hack because I can't get a proper stacktrace on SyntaxError
917     ReportException(try_catch, true);
918     exit(1);
919   }
920
921   Local<Value> result = script->Run();
922   if (try_catch.HasCaught()) return try_catch.ReThrow();
923
924   return scope.Close(result);
925 }
926
927 static void OnFatalError(const char* location, const char* message) {
928   if (location) {
929     fprintf(stderr, "FATAL ERROR: %s %s\n", location, message);
930   } else {
931     fprintf(stderr, "FATAL ERROR: %s\n", message);
932   }
933   exit(1);
934 }
935
936 static int uncaught_exception_counter = 0;
937
938 void FatalException(TryCatch &try_catch) {
939   HandleScope scope;
940
941   // Check if uncaught_exception_counter indicates a recursion
942   if (uncaught_exception_counter > 0) {
943     ReportException(try_catch);
944     exit(1);
945   }
946
947   if (listeners_symbol.IsEmpty()) {
948     listeners_symbol = NODE_PSYMBOL("listeners");
949     uncaught_exception_symbol = NODE_PSYMBOL("uncaughtException");
950     emit_symbol = NODE_PSYMBOL("emit");
951   }
952
953   Local<Value> listeners_v = process->Get(listeners_symbol);
954   assert(listeners_v->IsFunction());
955
956   Local<Function> listeners = Local<Function>::Cast(listeners_v);
957
958   Local<String> uncaught_exception_symbol_l = Local<String>::New(uncaught_exception_symbol);
959   Local<Value> argv[1] = { uncaught_exception_symbol_l  };
960   Local<Value> ret = listeners->Call(process, 1, argv);
961
962   assert(ret->IsArray());
963
964   Local<Array> listener_array = Local<Array>::Cast(ret);
965
966   uint32_t length = listener_array->Length();
967   // Report and exit if process has no "uncaughtException" listener
968   if (length == 0) {
969     ReportException(try_catch);
970     exit(1);
971   }
972
973   // Otherwise fire the process "uncaughtException" event
974   Local<Value> emit_v = process->Get(emit_symbol);
975   assert(emit_v->IsFunction());
976
977   Local<Function> emit = Local<Function>::Cast(emit_v);
978
979   Local<Value> error = try_catch.Exception();
980   Local<Value> event_argv[2] = { uncaught_exception_symbol_l, error };
981
982   uncaught_exception_counter++;
983   emit->Call(process, 2, event_argv);
984   // Decrement so we know if the next exception is a recursion or not
985   uncaught_exception_counter--;
986 }
987
988
989 static ev_async debug_watcher;
990 volatile static bool debugger_msg_pending = false;
991
992 static void DebugMessageCallback(EV_P_ ev_async *watcher, int revents) {
993   HandleScope scope;
994   assert(watcher == &debug_watcher);
995   assert(revents == EV_ASYNC);
996   Debug::ProcessDebugMessages();
997 }
998
999 static void DebugMessageDispatch(void) {
1000   // This function is called from V8's debug thread when a debug TCP client
1001   // has sent a message.
1002
1003   // Send a signal to our main thread saying that it should enter V8 to
1004   // handle the message.
1005   debugger_msg_pending = true;
1006   ev_async_send(EV_DEFAULT_UC_ &debug_watcher);
1007 }
1008
1009 static Handle<Value> CheckBreak(const Arguments& args) {
1010   HandleScope scope;
1011   assert(args.Length() == 0);
1012
1013   // TODO FIXME This function is a hack to wait until V8 is ready to accept
1014   // commands. There seems to be a bug in EnableAgent( _ , _ , true) which
1015   // makes it unusable here. Ideally we'd be able to bind EnableAgent and
1016   // get it to halt until Eclipse connects.
1017
1018   if (!debug_wait_connect)
1019     return Undefined();
1020
1021   printf("Waiting for remote debugger connection...\n");
1022
1023   const int halfSecond = 50;
1024   const int tenMs=10000;
1025   debugger_msg_pending = false;
1026   for (;;) {
1027     if (debugger_msg_pending) {
1028       Debug::DebugBreak();
1029       Debug::ProcessDebugMessages();
1030       debugger_msg_pending = false;
1031
1032       // wait for 500 msec of silence from remote debugger
1033       int cnt = halfSecond;
1034         while (cnt --) {
1035         debugger_msg_pending = false;
1036         usleep(tenMs);
1037         if (debugger_msg_pending) {
1038           debugger_msg_pending = false;
1039           cnt = halfSecond;
1040         }
1041       }
1042       break;
1043     }
1044     usleep(tenMs);
1045   }
1046   return Undefined();
1047 }
1048
1049
1050 static void Load(int argc, char *argv[]) {
1051   HandleScope scope;
1052
1053   Local<FunctionTemplate> process_template = FunctionTemplate::New();
1054   node::EventEmitter::Initialize(process_template);
1055
1056   process = Persistent<Object>::New(process_template->GetFunction()->NewInstance());
1057
1058   // Add a reference to the global object
1059   Local<Object> global = Context::GetCurrent()->Global();
1060   process->Set(String::NewSymbol("global"), global);
1061
1062   // process.version
1063   process->Set(String::NewSymbol("version"), String::New(NODE_VERSION));
1064   // process.installPrefix
1065   process->Set(String::NewSymbol("installPrefix"), String::New(NODE_PREFIX));
1066
1067   // process.platform
1068 #define xstr(s) str(s)
1069 #define str(s) #s
1070   process->Set(String::NewSymbol("platform"), String::New(xstr(PLATFORM)));
1071
1072   // process.argv
1073   int i, j;
1074   Local<Array> arguments = Array::New(argc - option_end_index + 1);
1075   arguments->Set(Integer::New(0), String::New(argv[0]));
1076   for (j = 1, i = option_end_index + 1; i < argc; j++, i++) {
1077     Local<String> arg = String::New(argv[i]);
1078     arguments->Set(Integer::New(j), arg);
1079   }
1080   // assign it
1081   process->Set(String::NewSymbol("ARGV"), arguments);
1082   process->Set(String::NewSymbol("argv"), arguments);
1083
1084   // create process.env
1085   Local<Object> env = Object::New();
1086   for (i = 0; environ[i]; i++) {
1087     // skip entries without a '=' character
1088     for (j = 0; environ[i][j] && environ[i][j] != '='; j++) { ; }
1089     // create the v8 objects
1090     Local<String> field = String::New(environ[i], j);
1091     Local<String> value = Local<String>();
1092     if (environ[i][j] == '=') {
1093       value = String::New(environ[i]+j+1);
1094     }
1095     // assign them
1096     env->Set(field, value);
1097   }
1098   // assign process.ENV
1099   process->Set(String::NewSymbol("ENV"), env);
1100   process->Set(String::NewSymbol("env"), env);
1101
1102   process->Set(String::NewSymbol("pid"), Integer::New(getpid()));
1103
1104   // define various internal methods
1105   NODE_SET_METHOD(process, "loop", Loop);
1106   NODE_SET_METHOD(process, "unloop", Unloop);
1107   NODE_SET_METHOD(process, "evalcx", EvalCX);
1108   NODE_SET_METHOD(process, "compile", Compile);
1109   NODE_SET_METHOD(process, "_byteLength", ByteLength);
1110   NODE_SET_METHOD(process, "reallyExit", Exit);
1111   NODE_SET_METHOD(process, "chdir", Chdir);
1112   NODE_SET_METHOD(process, "cwd", Cwd);
1113   NODE_SET_METHOD(process, "getuid", GetUid);
1114   NODE_SET_METHOD(process, "setuid", SetUid);
1115
1116   NODE_SET_METHOD(process, "setgid", SetGid);
1117   NODE_SET_METHOD(process, "getgid", GetGid);
1118
1119   NODE_SET_METHOD(process, "umask", Umask);
1120   NODE_SET_METHOD(process, "dlopen", DLOpen);
1121   NODE_SET_METHOD(process, "kill", Kill);
1122   NODE_SET_METHOD(process, "memoryUsage", MemoryUsage);
1123   NODE_SET_METHOD(process, "checkBreak", CheckBreak);
1124
1125   // Assign the EventEmitter. It was created in main().
1126   process->Set(String::NewSymbol("EventEmitter"),
1127                EventEmitter::constructor_template->GetFunction());
1128
1129   // Initialize the stats object
1130   Local<FunctionTemplate> stat_templ = FunctionTemplate::New();
1131   stats_constructor_template = Persistent<FunctionTemplate>::New(stat_templ);
1132   process->Set(String::NewSymbol("Stats"),
1133       stats_constructor_template->GetFunction());
1134
1135
1136   // Initialize the C++ modules..................filename of module
1137   IdleWatcher::Initialize(process);            // idle_watcher.cc
1138   Stdio::Initialize(process);                  // stdio.cc
1139   Timer::Initialize(process);                  // timer.cc
1140   SignalHandler::Initialize(process);          // signal_handler.cc
1141   Stat::Initialize(process);                   // stat.cc
1142   ChildProcess::Initialize(process);           // child_process.cc
1143   DefineConstants(process);                    // constants.cc
1144   // Create node.dns
1145   Local<Object> dns = Object::New();
1146   process->Set(String::NewSymbol("dns"), dns);
1147   DNS::Initialize(dns);                         // dns.cc
1148   Local<Object> fs = Object::New();
1149   process->Set(String::NewSymbol("fs"), fs);
1150   File::Initialize(fs);                         // file.cc
1151   // Create node.tcp. Note this separate from lib/tcp.js which is the public
1152   // frontend.
1153   Local<Object> tcp = Object::New();
1154   process->Set(String::New("tcp"), tcp);
1155   Server::Initialize(tcp);                      // tcp.cc
1156   Connection::Initialize(tcp);                  // tcp.cc
1157   // Create node.http.  Note this separate from lib/http.js which is the
1158   // public frontend.
1159   Local<Object> http = Object::New();
1160   process->Set(String::New("http"), http);
1161   HTTPServer::Initialize(http);                 // http.cc
1162   HTTPConnection::Initialize(http);             // http.cc
1163
1164
1165   Local<Object> natives = Object::New();
1166   process->Set(String::New("natives"), natives);
1167   // Explicitly define native sources.
1168   natives->Set(String::New("assert"),       String::New(native_assert));
1169   natives->Set(String::New("dns"),          String::New(native_dns));
1170   natives->Set(String::New("file"),         String::New(native_file));
1171   natives->Set(String::New("fs"),           String::New(native_fs));
1172   natives->Set(String::New("http"),         String::New(native_http));
1173   natives->Set(String::New("ini"),          String::New(native_ini));
1174   natives->Set(String::New("mjsunit"),      String::New(native_mjsunit));
1175   natives->Set(String::New("multipart"),    String::New(native_multipart));
1176   natives->Set(String::New("posix"),        String::New(native_posix));
1177   natives->Set(String::New("querystring"),  String::New(native_querystring));
1178   natives->Set(String::New("repl"),         String::New(native_repl));
1179   natives->Set(String::New("sys"),          String::New(native_sys));
1180   natives->Set(String::New("tcp"),          String::New(native_tcp));
1181   natives->Set(String::New("uri"),          String::New(native_uri));
1182   natives->Set(String::New("url"),          String::New(native_url));
1183   natives->Set(String::New("utils"),        String::New(native_utils));
1184
1185
1186   // Compile, execute the src/node.js file. (Which was included as static C
1187   // string in node_natives.h. 'natve_node' is the string containing that
1188   // source code.)
1189
1190   // The node.js file returns a function 'f'
1191
1192 #ifndef NDEBUG
1193   TryCatch try_catch;
1194 #endif
1195
1196   Local<Value> f_value = ExecuteString(String::New(native_node),
1197                                        String::New("node.js"));
1198 #ifndef NDEBUG
1199   if (try_catch.HasCaught())  {
1200     ReportException(try_catch);
1201     exit(10);
1202   }
1203 #endif
1204   assert(f_value->IsFunction());
1205   Local<Function> f = Local<Function>::Cast(f_value);
1206
1207   // Now we call 'f' with the 'process' variable that we've built up with
1208   // all our bindings. Inside node.js we'll take care of assigning things to
1209   // their places.
1210
1211   // We start the process this way in order to be more modular. Developers
1212   // who do not like how 'src/node.js' setups the module system but do like
1213   // Node's I/O bindings may want to replace 'f' with their own function.
1214
1215   Local<Value> args[1] = { Local<Value>::New(process) };
1216
1217   f->Call(global, 1, args);
1218
1219 #ifndef NDEBUG
1220   if (try_catch.HasCaught())  {
1221     ReportException(try_catch);
1222     exit(11);
1223   }
1224 #endif
1225 }
1226
1227 static void PrintHelp();
1228
1229 static void ParseDebugOpt(const char* arg) {
1230   const char *p = 0;
1231
1232   use_debug_agent = true;
1233   if (!strcmp (arg, "--debug-brk")) {
1234     debug_wait_connect = true;
1235     return;
1236   } else if (!strcmp(arg, "--debug")) {
1237     return;
1238   } else if (strstr(arg, "--debug-brk=") == arg) {
1239     debug_wait_connect = true;
1240     p = 1 + strchr(arg, '=');
1241     debug_port = atoi(p);
1242   } else if (strstr(arg, "--debug=") == arg) {
1243     p = 1 + strchr(arg, '=');
1244     debug_port = atoi(p);
1245   }
1246   if (p && debug_port > 1024 && debug_port <  65536)
1247       return;
1248
1249   fprintf(stderr, "Bad debug option.\n");
1250   if (p) fprintf(stderr, "Debug port must be in range 1025 to 65535.\n");
1251
1252   PrintHelp();
1253   exit(1);
1254 }
1255
1256 static void PrintHelp() {
1257   printf("Usage: node [options] script.js [arguments] \n"
1258          "Options:\n"
1259          "  -v, --version      print node's version\n"
1260          "  --debug[=port]     enable remote debugging via given TCP port\n"
1261          "                     without stopping the execution\n"
1262          "  --debug-brk[=port] as above, but break in script.js and\n"
1263          "                     wait for remote debugger to connect\n"
1264          "  --v8-options       print v8 command line options\n"
1265          "  --vars             print various compiled-in variables\n"
1266          "\n"
1267          "Enviromental variables:\n"
1268          "NODE_PATH            ':'-separated list of directories\n"
1269          "                     prefixed to the module search path,\n"
1270          "                     require.paths.\n"
1271          "NODE_DEBUG           Print additional debugging output.\n"
1272          "\n"
1273          "Documentation can be found at http://nodejs.org/api.html"
1274          " or with 'man node'\n");
1275 }
1276
1277 // Parse node command line arguments.
1278 static void ParseArgs(int *argc, char **argv) {
1279   // TODO use parse opts
1280   for (int i = 1; i < *argc; i++) {
1281     const char *arg = argv[i];
1282     if (strstr(arg, "--debug") == arg) {
1283       ParseDebugOpt(arg);
1284       argv[i] = const_cast<char*>("");
1285       option_end_index = i;
1286     } else if (strcmp(arg, "--version") == 0 || strcmp(arg, "-v") == 0) {
1287       printf("%s\n", NODE_VERSION);
1288       exit(0);
1289     } else if (strcmp(arg, "--vars") == 0) {
1290       printf("NODE_PREFIX: %s\n", NODE_PREFIX);
1291       printf("NODE_CFLAGS: %s\n", NODE_CFLAGS);
1292       exit(0);
1293     } else if (strcmp(arg, "--help") == 0 || strcmp(arg, "-h") == 0) {
1294       PrintHelp();
1295       exit(0);
1296     } else if (strcmp(arg, "--v8-options") == 0) {
1297       argv[i] = const_cast<char*>("--help");
1298       option_end_index = i+1;
1299     } else if (argv[i][0] != '-') {
1300       option_end_index = i-1;
1301       break;
1302     }
1303   }
1304 }
1305
1306 }  // namespace node
1307
1308
1309 int main(int argc, char *argv[]) {
1310   // Parse a few arguments which are specific to Node.
1311   node::ParseArgs(&argc, argv);
1312   // Parse the rest of the args (up to the 'option_end_index' (where '--' was
1313   // in the command line))
1314   V8::SetFlagsFromCommandLine(&node::option_end_index, argv, false);
1315
1316   // Error out if we don't have a script argument.
1317   if (argc < 2) {
1318     fprintf(stderr, "No script was specified.\n");
1319     node::PrintHelp();
1320     return 1;
1321   }
1322
1323   // Ignore the SIGPIPE
1324   evcom_ignore_sigpipe();
1325
1326   // Initialize the default ev loop.
1327 #ifdef __sun
1328   // TODO(Ryan) I'm experiencing abnormally high load using Solaris's
1329   // EVBACKEND_PORT. Temporarally forcing select() until I debug.
1330   ev_default_loop(EVBACKEND_SELECT);
1331 #else
1332   ev_default_loop(EVFLAG_AUTO);
1333 #endif
1334
1335
1336   ev_timer_init(&node::gc_timer, node::GCTimeout, GC_INTERVAL, GC_INTERVAL);
1337   // Set the gc_timer to max priority so that it runs before all other
1338   // watchers. In this way it can check if the 'tick' has other pending
1339   // watchers by using ev_pending_count() - if it ran with lower priority
1340   // then the other watchers might run before it - not giving us good idea
1341   // of loop idleness.
1342   ev_set_priority(&node::gc_timer, EV_MAXPRI);
1343   ev_timer_start(EV_DEFAULT_UC_ &node::gc_timer);
1344   ev_unref(EV_DEFAULT_UC);
1345
1346
1347   // Setup the EIO thread pool
1348   { // It requires 3, yes 3, watchers.
1349     ev_idle_init(&node::eio_poller, node::DoPoll);
1350
1351     ev_async_init(&node::eio_want_poll_notifier, node::WantPollNotifier);
1352     ev_async_start(EV_DEFAULT_UC_ &node::eio_want_poll_notifier);
1353     ev_unref(EV_DEFAULT_UC);
1354
1355     ev_async_init(&node::eio_done_poll_notifier, node::DonePollNotifier);
1356     ev_async_start(EV_DEFAULT_UC_ &node::eio_done_poll_notifier);
1357     ev_unref(EV_DEFAULT_UC);
1358
1359     eio_init(node::EIOWantPoll, node::EIODonePoll);
1360     // Don't handle more than 10 reqs on each eio_poll(). This is to avoid
1361     // race conditions. See test/mjsunit/test-eio-race.js
1362     eio_set_max_poll_reqs(10);
1363   }
1364
1365   V8::Initialize();
1366   HandleScope handle_scope;
1367
1368   V8::SetFatalErrorHandler(node::OnFatalError);
1369
1370   // If the --debug flag was specified then initialize the debug thread.
1371   if (node::use_debug_agent) {
1372     // Initialize the async watcher for receiving messages from the debug
1373     // thread and marshal it into the main thread. DebugMessageCallback()
1374     // is called from the main thread to execute a random bit of javascript
1375     // - which will give V8 control so it can handle whatever new message
1376     // had been received on the debug thread.
1377     ev_async_init(&node::debug_watcher, node::DebugMessageCallback);
1378     ev_set_priority(&node::debug_watcher, EV_MAXPRI);
1379     // Set the callback DebugMessageDispatch which is called from the debug
1380     // thread.
1381     Debug::SetDebugMessageDispatchHandler(node::DebugMessageDispatch);
1382     // Start the async watcher.
1383     ev_async_start(EV_DEFAULT_UC_ &node::debug_watcher);
1384     // unref it so that we exit the event loop despite it being active.
1385     ev_unref(EV_DEFAULT_UC);
1386
1387     // Start the debug thread and it's associated TCP server on port 5858.
1388     bool r = Debug::EnableAgent("node " NODE_VERSION, node::debug_port);
1389
1390     // Crappy check that everything went well. FIXME
1391     assert(r);
1392     // Print out some information.
1393     printf("debugger listening on port %d\n", node::debug_port);
1394   }
1395
1396   // Create the one and only Context.
1397   Persistent<Context> context = Context::New();
1398   Context::Scope context_scope(context);
1399
1400   // Create all the objects, load modules, do everything.
1401   // so your next reading stop should be node::Load()!
1402   node::Load(argc, argv);
1403
1404   node::Stdio::Flush();
1405
1406 #ifndef NDEBUG
1407   // Clean up.
1408   context.Dispose();
1409   V8::Dispose();
1410 #endif  // NDEBUG
1411   return 0;
1412 }
1413