mirror of https://github.com/lukechilds/node.git
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.
46 lines
980 B
46 lines
980 B
15 years ago
|
// Copyright 2009 Ryan Dahl <ry@tinyclouds.org>
|
||
15 years ago
|
#ifndef NODE_STAT_WATCHER_H_
|
||
|
#define NODE_STAT_WATCHER_H_
|
||
15 years ago
|
|
||
|
#include <node.h>
|
||
|
#include <node_events.h>
|
||
|
#include <ev.h>
|
||
|
|
||
|
namespace node {
|
||
|
|
||
15 years ago
|
class StatWatcher : EventEmitter {
|
||
15 years ago
|
public:
|
||
|
static void Initialize(v8::Handle<v8::Object> target);
|
||
|
|
||
|
protected:
|
||
|
static v8::Persistent<v8::FunctionTemplate> constructor_template;
|
||
|
|
||
15 years ago
|
StatWatcher() : EventEmitter() {
|
||
15 years ago
|
persistent_ = false;
|
||
|
path_ = NULL;
|
||
15 years ago
|
ev_init(&watcher_, StatWatcher::Callback);
|
||
15 years ago
|
watcher_.data = this;
|
||
|
}
|
||
|
|
||
15 years ago
|
~StatWatcher() {
|
||
15 years ago
|
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
|
||
15 years ago
|
#endif // NODE_STAT_WATCHER_H_
|