web3.js/lib/filter.js

114 lines
3.5 KiB
JavaScript
Raw Normal View History

2015-01-13 09:28:49 -08:00
/*
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 filter.js
* @authors:
* Jeffrey Wilcke <jeff@ethdev.com>
* Marek Kotewicz <marek@ethdev.com>
* Marian Oancea <marian@ethdev.com>
* Gav Wood <g@ethdev.com>
* @date 2014
*/
2015-02-05 14:11:16 -08:00
/// Should be called to check if filter implementation is valid
/// @returns true if it is, otherwise false
var implementationIsValid = function (i) {
return !!i &&
typeof i.newFilter === 'function' &&
typeof i.getMessages === 'function' &&
typeof i.uninstallFilter === 'function' &&
typeof i.startPolling === 'function' &&
typeof i.stopPolling === 'function';
2015-01-13 09:28:49 -08:00
};
2015-02-05 14:11:16 -08:00
/// This method should be called on options object, to verify deprecated properties && lazy load dynamic ones
/// @param should be string or object
/// @returns options string or object
var getOptions = function (options) {
if (typeof options === 'string') {
return options;
}
2015-01-13 09:28:49 -08:00
2015-02-05 14:11:16 -08:00
options = options || {};
2015-01-13 09:28:49 -08:00
2015-02-05 14:11:16 -08:00
if (options.topics) {
console.warn('"topics" is deprecated, is "topic" instead');
2015-01-13 09:28:49 -08:00
}
2015-02-05 14:11:16 -08:00
// evaluate lazy properties
return {
to: options.to,
topic: options.topic,
earliest: options.earliest,
latest: options.latest,
max: options.max,
skip: options.skip,
address: options.address
};
2015-01-13 09:28:49 -08:00
};
2015-02-05 14:11:16 -08:00
/// Should be used when we want to watch something
/// it's using inner polling mechanism and is notified about changes
/// @param options are filter options
/// @param implementation, an abstract polling implementation
/// @param formatter (optional), callback function which formats output before 'real' callback
var filter = function(options, implementation, formatter) {
if (!implementationIsValid(implementation)) {
console.error('filter implemenation is invalid');
return;
}
2015-01-13 09:28:49 -08:00
2015-02-05 14:11:16 -08:00
options = getOptions(options);
var callbacks = [];
var filterId = implementation.newFilter(options);
var onMessages = function (messages) {
messages.forEach(function (message) {
message = formatter ? formatter(message) : message;
2015-02-05 14:11:16 -08:00
callbacks.forEach(function (callback) {
callback(message);
});
});
};
2015-02-06 02:36:27 -08:00
implementation.startPolling(filterId, onMessages, implementation.uninstallFilter);
2015-02-05 14:11:16 -08:00
var changed = function (callback) {
callbacks.push(callback);
};
var messages = function () {
return implementation.getMessages(filterId);
};
var uninstall = function (callback) {
implementation.stopPolling(filterId);
implementation.uninstallFilter(filterId);
callbacks = [];
};
return {
changed: changed,
arrived: changed,
happened: changed,
messages: messages,
logs: messages,
uninstall: uninstall
};
2015-01-13 09:28:49 -08:00
};
2015-02-05 14:11:16 -08:00
module.exports = filter;