You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

160 lines
3.6 KiB

#include "events.h"
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <arpa/inet.h> /* inet_ntop */
#include <netinet/in.h> /* sockaddr_in, sockaddr_in6 */
#ifndef RAMP
# define RAMP(x) ((x) > 0 ? (x) : 0)
#endif
using namespace v8;
using namespace node;
Persistent<FunctionTemplate> EventEmitter::constructor_template;
void
EventEmitter::Initialize (v8::Handle<v8::Object> target)
{
HandleScope scope;
Local<FunctionTemplate> t = FunctionTemplate::New();
constructor_template = Persistent<FunctionTemplate>::New(t);
Local<FunctionTemplate> __emit = FunctionTemplate::New(Emit);
constructor_template->PrototypeTemplate()->Set(String::NewSymbol("emit"), __emit);
// All other prototype methods are defined in events.js
target->Set(String::NewSymbol("EventEmitter"),
constructor_template->GetFunction());
}
static bool
ReallyEmit (Handle<Object> self, Handle<String> event, int argc, Handle<Value> argv[])
{
HandleScope scope;
Local<Value> events_v = self->Get(String::NewSymbol("_events"));
if (!events_v->IsObject()) return false;
Local<Object> events = events_v->ToObject();
Local<Value> listeners_v = events->Get(event);
if (!listeners_v->IsArray()) return false;
Local<Array> listeners = Local<Array>::Cast(listeners_v);
for (unsigned int i = 0; i < listeners->Length(); i++) {
HandleScope scope;
Local<Value> listener_v = listeners->Get(Integer::New(i));
if (!listener_v->IsFunction()) continue;
Local<Function> listener = Local<Function>::Cast(listener_v);
TryCatch try_catch;
listener->Call(self, argc, argv);
if (try_catch.HasCaught()) {
FatalException(try_catch);
return false;
}
}
return true;
}
16 years ago
Handle<Value>
EventEmitter::Emit (const Arguments& args)
{
HandleScope scope;
Local<String> event = args[0]->ToString();
int argc = 0;
Local<Array> emit_args;
if (args[1]->IsArray()) {
emit_args = Local<Array>::Cast(args[1]);
argc = emit_args->Length();
}
Local<Value> argv[argc];
for (int i = 0; i < argc; i++) {
argv[i] = emit_args->Get(Integer::New(i));
}
bool r = ReallyEmit(args.Holder(), event, argc, argv);
return scope.Close(r ? True() : False());
}
bool
EventEmitter::Emit (const char *event_s, int argc, Handle<Value> argv[])
{
HandleScope scope;
Local<String> event = String::NewSymbol(event_s);
return ReallyEmit(handle_, event, argc, argv);
}
16 years ago
Persistent<FunctionTemplate> Promise::constructor_template;
void
Promise::Initialize (v8::Handle<v8::Object> target)
{
HandleScope scope;
Local<FunctionTemplate> t = FunctionTemplate::New();
constructor_template = Persistent<FunctionTemplate>::New(t);
constructor_template->Inherit(EventEmitter::constructor_template);
constructor_template->InstanceTemplate()->SetInternalFieldCount(1);
16 years ago
// All prototype methods are defined in events.js
target->Set(String::NewSymbol("Promise"),
constructor_template->GetFunction());
}
Promise*
Promise::Create (void)
{
HandleScope scope;
Local<Object> handle =
Promise::constructor_template->GetFunction()->NewInstance();
Promise *promise = new Promise();
promise->Wrap(handle);
16 years ago
promise->Attach();
ev_ref(EV_DEFAULT_UC);
16 years ago
return promise;
}
bool
Promise::EmitSuccess (int argc, v8::Handle<v8::Value> argv[])
{
bool r = Emit("success", argc, argv);
Detach();
ev_unref(EV_DEFAULT_UC);
return r;
}
bool
Promise::EmitError (int argc, v8::Handle<v8::Value> argv[])
{
bool r = Emit("error", argc, argv);
Detach();
ev_unref(EV_DEFAULT_UC);
return r;
}