#include "node_tcp.h" #include #include #include #include #include /* Target API TCP.connect({ host: "google.com", port: 80, connect: function () { this.write("GET /search?q=hello HTTP/1.0\r\n\r\n"); }, read: function (data) { request.respond("
" + data + "
"); }, drain: function () { }, error: function () { } }); */ static oi_async thread_pool; static struct addrinfo tcp_hints = /* ai_flags */ { AI_PASSIVE /* ai_family */ , AF_UNSPEC /* ai_socktype */ , SOCK_STREAM /* ai_protocol */ , 0 /* ai_addrlen */ , 0 /* ai_addr */ , 0 /* ai_canonname */ , 0 /* ai_next */ , 0 }; static struct ev_loop *loop; class TCPClient { public: oi_task resolve_task; oi_socket socket; struct addrinfo *address; Persistent options; }; static void on_connect ( oi_socket *socket ) { TCPClient *client = static_cast (socket->data); HandleScope scope; Handle connect_value = client->options->Get( String::NewSymbol("connect") ); if (!connect_value->IsFunction()) return; // error! Handle connect_cb = Handle::Cast(connect_value); TryCatch try_catch; Handle r = connect_cb->Call(client->options, 0, NULL); if (r.IsEmpty()) { String::Utf8Value error(try_catch.Exception()); printf("connect error: %s\n", *error); } } static void resolve_done ( oi_task *resolve_task , int result ) { TCPClient *client = static_cast (resolve_task->data); printf("hello world\n"); if(result != 0) { printf("error. TODO make call options error callback\n"); client->options.Dispose(); delete client; return; } printf("Got the address succesfully. Let's connect now. \n"); oi_socket_init(&client->socket, 30.0); // TODO adjustable timeout client->socket.on_connect = on_connect; client->socket.on_read = NULL; client->socket.on_drain = NULL; client->socket.on_error = NULL; client->socket.on_close = NULL; client->socket.on_timeout = NULL; client->socket.data = client; oi_socket_connect (&client->socket, client->address); oi_socket_attach (&client->socket, loop); freeaddrinfo(client->address); client->address = NULL; } static Handle Connect ( const Arguments& args ) { if (args.Length() < 1) return Undefined(); HandleScope scope; Handle arg = args[0]; Handle options = arg->ToObject(); /* Make sure the user has provided at least host and port */ Handle host_value = options->Get( String::NewSymbol("host") ); if(host_value->IsUndefined()) return False(); Handle port_value = options->Get( String::NewSymbol("port") ); if(port_value->IsUndefined()) return False(); Handle host = host_value->ToString(); Handle port = port_value->ToString(); char host_s[host->Length()+1]; // + 1 for \0 char port_s[port->Length()+1]; host->WriteAscii(host_s); port->WriteAscii(port_s); printf("resolving host: %s, port: %s\n", host_s, port_s); TCPClient *client = new TCPClient; oi_task_init_getaddrinfo ( &client->resolve_task , resolve_done , host_s , port_s , &tcp_hints , &client->address ); client->options = Persistent::New(options); oi_async_submit (&thread_pool, &client->resolve_task); } Handle node_tcp_initialize ( struct ev_loop *_loop ) { loop = _loop; oi_async_init(&thread_pool); oi_async_attach(loop, &thread_pool); HandleScope scope; Local t = Object::New(); t->Set(String::New("connect"), FunctionTemplate::New(Connect)->GetFunction()); return scope.Close(t); }