2013-09-07 18:19:52 +02:00
|
|
|
/**
|
|
|
|
* Copyright 2013 IBM Corp.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
**/
|
|
|
|
|
|
|
|
// Simple node to introduce a pause into a flow
|
|
|
|
|
|
|
|
// Require main module
|
2013-09-07 18:37:08 +02:00
|
|
|
var RED = require("../../red/red");
|
2013-10-01 13:42:31 +02:00
|
|
|
|
2013-09-07 18:19:52 +02:00
|
|
|
|
|
|
|
// main node definition
|
2013-10-01 13:42:31 +02:00
|
|
|
function RateLimitNode(n) {
|
2013-09-07 18:19:52 +02:00
|
|
|
RED.nodes.createNode(this,n);
|
2013-10-01 13:42:31 +02:00
|
|
|
this.buffer = [];
|
|
|
|
this.timeout = 1000/n.rate;
|
2013-09-07 18:19:52 +02:00
|
|
|
this.name = n.name
|
|
|
|
|
2013-10-01 13:42:31 +02:00
|
|
|
var node= this
|
|
|
|
|
|
|
|
this.intervalID = setInterval(function() {
|
|
|
|
if (node.buffer.length > 0) {
|
|
|
|
node.send(node.buffer.shift());
|
|
|
|
}
|
|
|
|
},this.timeout);
|
|
|
|
|
2013-09-07 18:19:52 +02:00
|
|
|
this.on("input", function(msg) {
|
2013-10-01 13:42:31 +02:00
|
|
|
this.buffer.push(msg);
|
2013-09-07 18:19:52 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// register node
|
2013-10-01 13:42:31 +02:00
|
|
|
RED.nodes.registerType("rateLimit",RateLimitNode);
|
2013-09-07 18:19:52 +02:00
|
|
|
|
2013-10-01 13:42:31 +02:00
|
|
|
RateLimitNode.prototype.close = function() {
|
|
|
|
clearInterval(this.intervalID);
|
|
|
|
this.buffer = [];
|
2013-09-11 00:18:15 +02:00
|
|
|
}
|
2013-10-01 13:42:31 +02:00
|
|
|
|