#include "events.h" #include #include #include #include #include #include #include #include #include /* inet_ntop */ #include /* sockaddr_in, sockaddr_in6 */ using namespace v8; using namespace node; Persistent EventEmitter::constructor_template; void EventEmitter::Initialize (v8::Handle target) { HandleScope scope; Local t = FunctionTemplate::New(); constructor_template = Persistent::New(t); // All prototype methods are defined in events.js target->Set(String::NewSymbol("EventEmitter"), constructor_template->GetFunction()); } bool EventEmitter::Emit (const char *type, int argc, Handle argv[]) { Local emit_v = handle_->Get(String::NewSymbol("emit")); assert(emit_v->IsFunction()); Local emit = Local::Cast(emit_v); Local event_args = Array::New(argc); for (int i = 0; i < argc; i++) { event_args->Set(Integer::New(i), argv[i]); } Handle emit_argv[2] = { String::NewSymbol(type), event_args }; TryCatch try_catch; emit->Call(handle_, 2, emit_argv); if (try_catch.HasCaught()) { FatalException(try_catch); return false; } return true; }