raumstatus/node/ip-poll.js

61 lines
1.5 KiB
JavaScript
Raw Normal View History

2013-10-20 22:04:58 +00:00
var redis = require("redis");
2013-10-02 12:04:01 +00:00
var util = require('util');
var EventEmitter = require('events').EventEmitter;
2013-10-20 22:04:58 +00:00
var exec = require('child_process').exec;
var redisprefix = "ippoll:";
2013-10-02 12:04:01 +00:00
var IpPoll = function(switchaddr, hostsaddr) {
var self = this;
2013-10-20 22:04:58 +00:00
var redisClient = redis.createClient();
2013-10-02 12:04:01 +00:00
var regexp = /\(([0-9]+) hosts* up\)/;
2013-10-20 22:47:31 +00:00
// var nmap = "nmap -n -sP -T5 --host-timeout 10ms ";
var nmap = "nmap -n -sP -T5 ";
2013-10-20 22:04:58 +00:00
redisClient.on("connect", function () {
console.log("connected to redis");
self.emit('ready');
});
2013-10-02 12:04:01 +00:00
this.pollCount = function() {
exec(nmap + "--min-hostgroup 10 " + hostsaddr, function (error, stdout, stderr) {
if(error == null) {
var matches = regexp.exec(stdout);
if(matches != null && matches.length == 2) {
2013-10-20 22:04:58 +00:00
var num = parseInt(matches[1]);
redisClient.zadd('onlinecount', Date.now(), num, function() {
self.emit('doneCount', num);
});
2013-10-02 12:04:01 +00:00
}
}
});
2013-10-20 22:04:58 +00:00
};
2013-10-02 12:04:01 +00:00
this.pollState = function() {
exec(nmap + switchaddr, function (error, stdout, stderr) {
if(error == null) {
var matches = regexp.exec(stdout);
if(matches != null && matches.length == 2) {
self.emit('doneState', matches[1] == "1");
}
} else {
self.emit('doneState', "unknown");
}
});
2013-10-20 22:04:58 +00:00
};
this.getHistory = function(start, end, callback) {
callback(data);
};
2013-10-20 22:04:58 +00:00
};
2013-10-02 12:04:01 +00:00
util.inherits(IpPoll, EventEmitter);
module.exports = IpPoll;