mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
47 lines
929 B
C
47 lines
929 B
C
|
// Copyright 2009 Ryan Dahl <ry@tinyclouds.org>
|
||
|
#ifndef NODE_STAT_H_
|
||
|
#define NODE_STAT_H_
|
||
|
|
||
|
#include <node.h>
|
||
|
#include <node_events.h>
|
||
|
#include <ev.h>
|
||
|
|
||
|
namespace node {
|
||
|
|
||
|
class Stat : EventEmitter {
|
||
|
public:
|
||
|
static void Initialize(v8::Handle<v8::Object> target);
|
||
|
|
||
|
protected:
|
||
|
static v8::Persistent<v8::FunctionTemplate> constructor_template;
|
||
|
|
||
|
Stat() : EventEmitter() {
|
||
|
persistent_ = false;
|
||
|
path_ = NULL;
|
||
|
ev_init(&watcher_, Stat::Callback);
|
||
|
watcher_.data = this;
|
||
|
}
|
||
|
|
||
|
~Stat() {
|
||
|
Stop();
|
||
|
assert(path_ == NULL);
|
||
|
}
|
||
|
|
||
|
static v8::Handle<v8::Value> New(const v8::Arguments& args);
|
||
|
static v8::Handle<v8::Value> Start(const v8::Arguments& args);
|
||
|
static v8::Handle<v8::Value> Stop(const v8::Arguments& args);
|
||
|
|
||
|
private:
|
||
|
static void Callback(EV_P_ ev_stat *watcher, int revents);
|
||
|
|
||
|
void Stop();
|
||
|
|
||
|
ev_stat watcher_;
|
||
|
bool persistent_;
|
||
|
char *path_;
|
||
|
};
|
||
|
|
||
|
} // namespace node
|
||
|
#endif // NODE_STAT_H_
|
||
|
|