First and raw api support + mposcompatibility fixes/codereadability improvements

This commit is contained in:
Andrea Baccega 2014-03-04 23:35:43 +01:00
parent c7e61d681b
commit 1c6f7c4f50
4 changed files with 98 additions and 23 deletions

18
libs/apis.js Normal file
View File

@ -0,0 +1,18 @@
var express = require('express');
var os = require('os');
var app = express();
app.get('/getstatus', function (req, res) {
res.send({
'loadavg': os.loadavg(),
'freemem': os.freemem(),
});
});
module.exports = {
start: function () {
app.listen(9000);
}
}

View File

@ -63,9 +63,9 @@ module.exports = function(logger, poolConfigs){
var sendResult = function(authorized){
cluster.workers[data.workerId].send({
type: 'mposAuth',
callbackId: data.callbackId,
authorized: authorized
type : 'mposAuth',
callbackId : data.callbackId,
authorized : authorized
});
};

View File

@ -74,16 +74,17 @@ module.exports = function(logger){
clearTimeout(authTimeout);
};
process.send({
type: 'mposAuth',
coin: poolOptions.coin.name,
callbackId: callbackId,
workerId: cluster.worker.id,
workerName: workerName,
password: password,
authLevel: mposAuthLevel
type : 'mposAuth',
coin : poolOptions.coin.name,
callbackId : callbackId,
workerId : cluster.worker.id,
workerName : workerName,
password : password,
authLevel : mposAuthLevel
});
}
else{
// if we're here than it means we're on stratumAuth: "none" or something unrecognized by the system!
callback({
error: null,
authorized: true,
@ -107,30 +108,30 @@ module.exports = function(logger){
logDebug(logIdentify, 'client', 'Valid share submitted, share data: ' + shareData);
process.send({
type: 'share',
share: data,
coin: poolOptions.coin.name,
isValidShare: isValidShare,
isValidBlock: isValidBlock,
solution: blockHex
type : 'share',
share : data,
coin : poolOptions.coin.name,
isValidShare : isValidShare,
isValidBlock : isValidBlock,
solution : blockHex // blockHex is undefined is this was not a valid block.
});
if (isValidBlock){
logDebug(logIdentify, 'client', 'Block found, solution: ' + shareData.solution);
process.send({
type: 'block',
share: data,
coin: poolOptions.coin.name
type : 'block',
share : data,
coin : poolOptions.coin.name
});
}
}).on('difficultyUpdate', function(workerName, diff){
if (poolOptions.shareProcessing.mpos.enabled){
process.send({
type: 'difficultyUpdate',
workerName: workerName,
diff: diff,
coin: poolOptions.coin.name
type : 'difficultyUpdate',
workerName : workerName,
diff : diff,
coin : poolOptions.coin.name
});
}
}).on('log', function(severity, logKey, logText) {

56
libs/workerapi.js Normal file
View File

@ -0,0 +1,56 @@
var express = require('express');
var os = require('os');
function workerapi(listen) {
var _this = this;
var app = express();
var counters = {
validShares : 0,
validBlocks : 0,
invalidShares : 0
};
var lastEvents = {
lastValidShare : 0 ,
lastValidBlock : 0,
lastInvalidShare : 0
};
app.get('/stats', function (req, res) {
res.send({
"clients" : Object.keys(_this.poolObj.stratumServer.getStratumClients()).length,
"counters" : counters,
"lastEvents" : lastEvents
});
});
this.start = function (poolObj) {
this.poolObj = poolObj;
this.poolObj.once('started', function () {
app.listen(listen, function (lol) {
console.log("LISTENING ");
});
})
.on('share', function(isValidShare, isValidBlock, shareData) {
var now = Date.now();
if (isValidShare) {
counters.validShares ++;
lastEvents.lastValidShare = now;
if (isValidBlock) {
counters.validBlocks ++;
lastEvents.lastValidBlock = now;
}
} else {
counters.invalidShares ++;
lastEvents.lastInvalidShare = now;
}
});
}
}
module.exports = workerapi;