Files
node-v0.x-archive/src/process.h
2009-07-25 17:52:26 +02:00

62 lines
1.5 KiB
C++

#ifndef node_process_h
#define node_process_h
#include "node.h"
#include "events.h"
#include <v8.h>
#include <ev.h>
#include <evcom.h>
namespace node {
class Process : EventEmitter {
public:
static void Initialize (v8::Handle<v8::Object> target);
protected:
static v8::Persistent<v8::FunctionTemplate> constructor_template;
static v8::Handle<v8::Value> New (const v8::Arguments& args);
static v8::Handle<v8::Value> Spawn (const v8::Arguments& args);
static v8::Handle<v8::Value> Write (const v8::Arguments& args);
static v8::Handle<v8::Value> Close (const v8::Arguments& args);
static v8::Handle<v8::Value> Kill (const v8::Arguments& args);
static v8::Handle<v8::Value> PIDGetter (v8::Local<v8::String> _, const v8::AccessorInfo& info);
Process();
~Process();
int Spawn (const char *command);
int Write (evcom_buf *buf);
int Close (void);
int Kill (int sig);
private:
static void OnOutput (EV_P_ ev_io *watcher, int revents);
static void OnError (EV_P_ ev_io *watcher, int revents);
static void OnWritable (EV_P_ ev_io *watcher, int revents);
static void OnCHLD (EV_P_ ev_child *watcher, int revents);
void MaybeShutdown (void);
void Shutdown (void);
ev_io stdout_watcher_;
ev_io stderr_watcher_;
ev_io stdin_watcher_;
ev_child child_watcher_;
int stdout_pipe_[2];
int stderr_pipe_[2];
int stdin_pipe_[2];
pid_t pid_;
bool got_close_;
bool got_chld_;
int exit_code_;
evcom_queue out_stream_;
};
} // namespace node
#endif // node_process_h