-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restructuring project into different repos
- Loading branch information
Simon Buchholz
committed
Jul 10, 2017
1 parent
f10a5ba
commit 477d227
Showing
3 changed files
with
356 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,255 @@ | ||
const mongoConnector = require("../../dataextractor/connectors/mongodb/index.js") | ||
const winston = require("winston") | ||
const Web3 = require("web3") | ||
var web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:8545")) | ||
let Promise = require("es6-promise").Promise | ||
|
||
let mapFromAddressesToGas = function(){ | ||
for (let i = 0; i < this.transactions.length; i++) { | ||
emit(this.transactions[i].from, this.transactions[i].gas); | ||
} | ||
} | ||
|
||
let mapAddressToGasRevenue = function(){ | ||
for (let i = 0; i < this.transactions.length; i++) { | ||
emit(this.transactions[i].from, this.transactions[i].gas * this.transactions[i].gasPrice); | ||
} | ||
} | ||
|
||
let mapFromAddressToValue = function(){ | ||
for (let i = 0; i < this.transactions.length; i++) { | ||
if(this.transactions[i].value > 0){ | ||
emit(this.transactions[i].from, this.transactions[i].value); | ||
} | ||
} | ||
} | ||
|
||
let mapToAddressToValue = function(){ | ||
for (let i = 0; i < this.transactions.length; i++) { | ||
if(this.transactions[i].value > 0){ | ||
emit(this.transactions[i].to, this.transactions[i].value); | ||
} | ||
} | ||
} | ||
|
||
let reduceToValueSum = function(key, values){ | ||
return Array.sum(values); | ||
} | ||
|
||
let getEntries = function(options){ | ||
return new Promise((resolve, reject) => { | ||
let collection = mongoConnector.getCollection(options.collection) | ||
let query = options.resultQuery || {} | ||
let result = collection.find(query) | ||
if(options.sortObject){ | ||
result = result.sort(options.sortObject) | ||
} | ||
if(options.limit){ | ||
result = result.limit(options.limit) | ||
} | ||
result.toArray((err, res) => { | ||
if(err){ | ||
reject(err) | ||
} else { | ||
resolve(res) | ||
} | ||
}) | ||
}) | ||
} | ||
|
||
let jobFromAddressToGasSum = { | ||
map: mapFromAddressesToGas, | ||
reduce: reduceToValueSum, | ||
options: { | ||
out: { | ||
replace: 'addressToGasSum' | ||
} | ||
}, | ||
resultHandler: getEntries, | ||
resultHandlerOptions: { | ||
collection: 'addressToGasSum', | ||
sortObject: { | ||
value: -1 | ||
} | ||
} | ||
} | ||
|
||
let jobFromAddressToValueSum = { | ||
map: mapFromAddressToValue, | ||
reduce: reduceToValueSum, | ||
options: { | ||
out: { | ||
replace: 'addressToValueSum' | ||
} | ||
}, | ||
resultHandler: getEntries, | ||
resultHandlerOptions: { | ||
collection: 'addressToValueSum', | ||
sortObject: { | ||
value: -1 | ||
} | ||
} | ||
} | ||
|
||
let jobToAddressToValueSum = { | ||
map: mapToAddressToValue, | ||
reduce: reduceToValueSum, | ||
options: { | ||
out: { | ||
replace: 'toAddressToValueSum' | ||
} | ||
}, | ||
resultHandler: getEntries, | ||
resultHandlerOptions: { | ||
collection: 'toAddressToValueSum', | ||
sortObject: { | ||
value: -1 | ||
} | ||
} | ||
} | ||
|
||
let jobAddressToGasRevenue = { | ||
map: mapAddressToGasRevenue, | ||
reduce: reduceToValueSum, | ||
options: { | ||
out: { | ||
replace: 'addressToGasRevenue' | ||
} | ||
}, | ||
resultHandler: getEntries, | ||
resultHandlerOptions: { | ||
collection: 'addressToGasRevenue', | ||
sortObject: { | ||
value: -1 | ||
} | ||
} | ||
} | ||
|
||
var jobs = [ | ||
jobFromAddressToGasSum, | ||
jobFromAddressToValueSum, | ||
jobToAddressToValueSum, | ||
jobAddressToGasRevenue | ||
]; | ||
|
||
var MongoDbAnalyzer = function () { | ||
|
||
}; | ||
|
||
MongoDbAnalyzer.prototype.init = function(){ | ||
return mongoConnector.connect() | ||
} | ||
|
||
MongoDbAnalyzer.prototype.getTotalValue = function(address){ | ||
return new Promise((resolve, reject) => { | ||
mongoConnector.query("addressToValueSum", { | ||
limit: 1, | ||
filter: { | ||
"_id": { | ||
$eq: address | ||
} | ||
} | ||
}, (err, result) => { | ||
if(err){ | ||
reject(err) | ||
} else { | ||
if(result && result.length > 0){ | ||
result = result[0] | ||
result.value = web3.fromWei(result.value, "ether").toString() | ||
resolve(result) | ||
} else { | ||
resolve({ | ||
value: -1 | ||
}) | ||
} | ||
} | ||
}) | ||
}) | ||
} | ||
|
||
MongoDbAnalyzer.prototype.getTopRevenueSent = function(limit){ | ||
return new Promise((resolve, reject) => { | ||
mongoConnector.query("addressToValueSum", { | ||
limit: limit, | ||
sort: { | ||
value: -1 | ||
} | ||
}, (err, res) => { | ||
if(err){ | ||
reject(err) | ||
} else { | ||
for (var i = 0; i < res.length; i++) { | ||
res[i].value = web3.fromWei(res[i].value, "ether").toString() | ||
} | ||
resolve(res) | ||
} | ||
}) | ||
}) | ||
} | ||
|
||
MongoDbAnalyzer.prototype.getTopRevenueReceived = function(limit){ | ||
return new Promise((resolve, reject) => { | ||
mongoConnector.query("toAddressToValueSum", { | ||
limit: limit, | ||
sort: { | ||
value: -1 | ||
} | ||
}, (err, res) => { | ||
if(err){ | ||
reject(err) | ||
} else { | ||
for (var i = 0; i < res.length; i++) { | ||
res[i].value = web3.fromWei(res[i].value, "ether").toString() | ||
} | ||
resolve(res) | ||
} | ||
}) | ||
}) | ||
} | ||
|
||
MongoDbAnalyzer.prototype.getTopGasRevenue = function(limit){ | ||
return new Promise((resolve, reject) => { | ||
mongoConnector.query("addressToGasRevenue", { | ||
limit: limit, | ||
sort: { | ||
value: -1 | ||
} | ||
}, (err, res) => { | ||
if(err){ | ||
reject(err) | ||
} else { | ||
for (var i = 0; i < res.length; i++) { | ||
res[i].value = web3.fromWei(res[i].value, "ether").toString() | ||
} | ||
resolve(res) | ||
} | ||
}) | ||
}) | ||
} | ||
|
||
MongoDbAnalyzer.prototype.runAnalysis = function(job, settings) { | ||
if(settings){ | ||
job.resultHandlerOptions.resultQuery = settings.result.query || {} | ||
job.resultHandlerOptions.limit = settings.result.limit || null | ||
} | ||
return new Promise((resolve, reject) => { | ||
mongoConnector.mapReduce(job.map, job.reduce, job.options) | ||
.then(result => { | ||
return job.resultHandler(job.resultHandlerOptions) | ||
}) | ||
.then(result => { | ||
if(job.postProcessor){ | ||
resolve(job.postProcessor(result)) | ||
} else { | ||
resolve(result) | ||
} | ||
}) | ||
.catch(error => { | ||
winston.error(error) | ||
reject(error) | ||
}) | ||
}) | ||
}; | ||
|
||
module.exports.ana = new MongoDbAnalyzer(); | ||
module.exports.jobs = jobs; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"name": "p2b2-analysis", | ||
"version": "0.0.1", | ||
"description": "Map-Reduce and further analysis on the p2b2 system", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"keywords": [ | ||
"mapreduce", | ||
"mongodb", | ||
"neo4j", | ||
"blockchain", | ||
"ethereum" | ||
], | ||
"author": "Simon Buchholz, Steffen Härtlein", | ||
"license": "ISC", | ||
"dependencies": { | ||
"bignumber.js": "^4.0.2", | ||
"es6-promise": "^4.1.0", | ||
"web3": "^0.19.0", | ||
"winston": "^2.3.1" | ||
} | ||
} |