mirror of
https://github.com/status-im/web3.js.git
synced 2025-02-23 19:48:13 +00:00
230 lines
6.8 KiB
JavaScript
230 lines
6.8 KiB
JavaScript
/*
|
|
This file is part of ethereum.js.
|
|
|
|
ethereum.js is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
ethereum.js is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
/** @file event.js
|
|
* @authors:
|
|
* Marek Kotewicz <marek@ethdev.com>
|
|
* @date 2014
|
|
*/
|
|
|
|
var abi = require('../solidity/abi');
|
|
var utils = require('../utils/utils');
|
|
var signature = require('./signature');
|
|
var coder = require('../solidity/coder');
|
|
var web3 = require('../web3');
|
|
|
|
/// filter inputs array && returns only indexed (or not) inputs
|
|
/// @param inputs array
|
|
/// @param bool if result should be an array of indexed params on not
|
|
/// @returns array of (not?) indexed params
|
|
var filterInputs = function (inputs, indexed) {
|
|
return inputs.filter(function (current) {
|
|
return current.indexed === indexed;
|
|
});
|
|
};
|
|
|
|
var inputWithName = function (inputs, name) {
|
|
var index = utils.findIndex(inputs, function (input) {
|
|
return input.name === name;
|
|
});
|
|
|
|
if (index === -1) {
|
|
console.error('indexed param with name ' + name + ' not found');
|
|
return undefined;
|
|
}
|
|
return inputs[index];
|
|
};
|
|
|
|
var indexedParamsToTopics = function (event, indexed) {
|
|
// sort keys?
|
|
return Object.keys(indexed).map(function (key) {
|
|
var inputs = [inputWithName(filterInputs(event.inputs, true), key)];
|
|
|
|
var value = indexed[key];
|
|
if (value instanceof Array) {
|
|
return value.map(function (v) {
|
|
return abi.formatInput(inputs, [v]);
|
|
});
|
|
}
|
|
return '0x' + abi.formatInput(inputs, [value]);
|
|
});
|
|
};
|
|
|
|
var inputParser = function (address, sign, event) {
|
|
|
|
// valid options are 'earliest', 'latest', 'offset' and 'max', as defined for 'eth.filter'
|
|
return function (indexed, options) {
|
|
var o = options || {};
|
|
o.address = address;
|
|
o.topics = [];
|
|
o.topics.push(sign);
|
|
if (indexed) {
|
|
o.topics = o.topics.concat(indexedParamsToTopics(event, indexed));
|
|
}
|
|
return o;
|
|
};
|
|
};
|
|
|
|
var getArgumentsObject = function (inputs, indexed, notIndexed) {
|
|
var indexedCopy = indexed.slice();
|
|
var notIndexedCopy = notIndexed.slice();
|
|
return inputs.reduce(function (acc, current) {
|
|
var value;
|
|
if (current.indexed)
|
|
value = indexedCopy.splice(0, 1)[0];
|
|
else
|
|
value = notIndexedCopy.splice(0, 1)[0];
|
|
|
|
acc[current.name] = value;
|
|
return acc;
|
|
}, {});
|
|
};
|
|
|
|
var outputParser = function (event) {
|
|
|
|
return function (output) {
|
|
var result = {
|
|
event: utils.extractDisplayName(event.name),
|
|
number: output.number,
|
|
hash: output.hash,
|
|
args: {}
|
|
};
|
|
|
|
if (!output.topics) {
|
|
return result;
|
|
}
|
|
output.data = output.data || '';
|
|
|
|
var indexedOutputs = filterInputs(event.inputs, true);
|
|
var indexedData = output.topics.slice(1).map(function (topics) { return topics.slice(2); }).join("");
|
|
var indexedRes = abi.formatOutput(indexedOutputs, indexedData);
|
|
|
|
var notIndexedOutputs = filterInputs(event.inputs, false);
|
|
var notIndexedRes = abi.formatOutput(notIndexedOutputs, output.data.slice(2));
|
|
|
|
result.args = getArgumentsObject(event.inputs, indexedRes, notIndexedRes);
|
|
|
|
return result;
|
|
};
|
|
};
|
|
|
|
var getMatchingEvent = function (events, payload) {
|
|
for (var i = 0; i < events.length; i++) {
|
|
var sign = signature.eventSignatureFromAscii(events[i].name);
|
|
if (sign === payload.topics[0]) {
|
|
return events[i];
|
|
}
|
|
}
|
|
return undefined;
|
|
};
|
|
//////////
|
|
|
|
var SolidityEvent = function (json, address) {
|
|
this._params = json.inputs;
|
|
this._name = json.name;
|
|
this._address = address;
|
|
};
|
|
|
|
SolidityEvent.prototype.types = function (indexed) {
|
|
return this._params.filter(function (i) {
|
|
return i.indexed === indexed;
|
|
}).map(function (i) {
|
|
return i.type;
|
|
});
|
|
};
|
|
|
|
SolidityEvent.prototype.displayName = function () {
|
|
return utils.extractDisplayName(this._name);
|
|
};
|
|
|
|
SolidityEvent.prototype.typeName = function () {
|
|
return utils.extractTypeName(this._name);
|
|
};
|
|
|
|
SolidityEvent.prototype.signature = function () {
|
|
return web3.sha3(web3.fromAscii(this._name)).slice(2);
|
|
};
|
|
|
|
SolidityEvent.prototype.encode = function (indexed, options) {
|
|
indexed = indexed || {};
|
|
options = options || {};
|
|
|
|
options.address = this._address;
|
|
options.topics = options.topics || [];
|
|
options.topics.push('0x' + this.signature());
|
|
|
|
var indexedTopics = this._params.filter(function (i) {
|
|
return i.indexed === true;
|
|
}).map(function (i) {
|
|
var value = indexed[i.name];
|
|
if (value !== undefined) {
|
|
return '0x' + coder.encodeParam(i.type, value);
|
|
}
|
|
return null;
|
|
});
|
|
|
|
options.topics = options.topics.concat(indexedTopics);
|
|
|
|
return options;
|
|
};
|
|
|
|
SolidityEvent.prototype.decode = function (data) {
|
|
var result = {
|
|
event: this.displayName(),
|
|
number: data.number,
|
|
hash: data.hash,
|
|
args: {}
|
|
};
|
|
|
|
data.data = data.data || '';
|
|
|
|
var indexedData = data.topics.slice(1).map(function (topics) { return topics.slice(2); }).join("");
|
|
var indexedParams = coder.decodeParams(this.types(true), indexedData);
|
|
|
|
var notIndexedData = data.data.slice(2);
|
|
var notIndexedParams = coder.decodeParams(this.types(false), notIndexedData);
|
|
|
|
result.args = this._params.reduce(function (acc, current) {
|
|
acc[current.name] = current.indexed ? indexedParams.shift() : notIndexedParams.shift();
|
|
return acc;
|
|
}, {});
|
|
|
|
return result;
|
|
};
|
|
|
|
SolidityEvent.prototype.execute = function (indexed, options) {
|
|
var o = this.encode(indexed, options);
|
|
var formatter = this.decode.bind(this);
|
|
return web3.eth.filter(o, undefined, undefined, formatter);
|
|
};
|
|
|
|
SolidityEvent.prototype.attachToContract = function (contract) {
|
|
var execute = this.execute.bind(this);
|
|
var displayName = this.displayName();
|
|
if (!contract[displayName]) {
|
|
contract[displayName] = execute;
|
|
}
|
|
contract[displayName][this.typeName()] = this.execute.bind(this, contract);
|
|
};
|
|
|
|
module.exports = {
|
|
inputParser: inputParser,
|
|
outputParser: outputParser,
|
|
getMatchingEvent: getMatchingEvent,
|
|
SolidityEvent: SolidityEvent
|
|
};
|
|
|