plugeth/lib/filter.js

96 lines
2.9 KiB
JavaScript
Raw Normal View History

2015-01-13 17:28:49 +00: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
*/
var web3 = require('./web3'); // jshint ignore:line
2015-01-13 17:28:49 +00:00
/// should be used when we want to watch something
/// it's using inner polling mechanism and is notified about changes
2015-01-31 00:30:19 +00:00
/// TODO: change 'options' name cause it may be not the best matching one, since we have events
2015-01-31 03:09:48 +00:00
var Filter = function(options, impl) {
2015-01-13 17:28:49 +00:00
2015-01-31 03:09:48 +00:00
if (typeof options !== "string") {
2015-01-31 00:30:19 +00:00
// topics property is deprecated, warn about it!
2015-01-29 14:45:04 +00:00
if (options.topics) {
console.warn('"topics" is deprecated, use "topic" instead');
}
2015-01-31 00:30:19 +00:00
// evaluate lazy properties
2015-01-29 14:05:43 +00:00
options = {
to: options.to,
2015-01-29 14:36:13 +00:00
topic: options.topic,
2015-01-29 14:05:43 +00:00
earliest: options.earliest,
latest: options.latest,
max: options.max,
skip: options.skip,
address: options.address
};
2015-01-31 00:30:19 +00:00
2015-01-29 14:05:43 +00:00
}
2015-01-31 00:30:19 +00:00
this.impl = impl;
this.callbacks = [];
2015-01-29 14:05:43 +00:00
2015-01-21 20:54:03 +00:00
this.id = impl.newFilter(options);
2015-01-22 16:57:26 +00:00
web3.provider.startPolling({call: impl.changed, args: [this.id]}, this.id, this.trigger.bind(this));
2015-01-13 17:28:49 +00:00
};
/// alias for changed*
Filter.prototype.arrived = function(callback) {
this.changed(callback);
};
/// gets called when there is new eth/shh message
Filter.prototype.changed = function(callback) {
2015-01-21 20:54:03 +00:00
this.callbacks.push(callback);
2015-01-13 17:28:49 +00:00
};
/// trigger calling new message from people
Filter.prototype.trigger = function(messages) {
for (var i = 0; i < this.callbacks.length; i++) {
2015-01-28 09:50:24 +00:00
for (var j = 0; j < messages.length; j++) {
this.callbacks[i].call(this, messages[j]);
}
2015-01-13 17:28:49 +00:00
}
};
/// should be called to uninstall current filter
Filter.prototype.uninstall = function() {
2015-01-21 20:54:03 +00:00
this.impl.uninstallFilter(this.id);
web3.provider.stopPolling(this.id);
2015-01-13 17:28:49 +00:00
};
/// should be called to manually trigger getting latest messages from the client
Filter.prototype.messages = function() {
2015-01-21 20:54:03 +00:00
return this.impl.getMessages(this.id);
2015-01-13 17:28:49 +00:00
};
/// alias for messages
Filter.prototype.logs = function () {
return this.messages();
};
module.exports = Filter;