summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Wall <richard@aziz>2010-07-14 00:06:19 +0100
committerRichard Wall <richard@aziz>2010-07-14 00:06:19 +0100
commitf619f6f2974ffa59822dcb57baaf061d8986ff97 (patch)
treea0838cb031b289c7d631908292d75b2f6260fa80
parent7f74405f80c8159eed0fa1f9535b86753f226141 (diff)
Limit the number of parallel downloads
-rw-r--r--index.html16
-rw-r--r--jarmon.js49
2 files changed, 57 insertions, 8 deletions
diff --git a/index.html b/index.html
index c848760..6018af7 100644
--- a/index.html
+++ b/index.html
@@ -43,6 +43,14 @@
* Setup chart date range controls and all charts
**/
+ var p = new jarmon.Parallimiter(1);
+ function serialDownloader(url) {
+ return p.addCallable(
+ function() {
+ return jarmon.downloadBinary(url);
+ });
+ }
+
// Extract the chart template from the page
var chartTemplate = $('.chart-container').remove();
@@ -71,19 +79,19 @@
jarmon.COLLECTD_RECIPES.cpu,
jarmon.COLLECTD_RECIPES.memory,
jarmon.COLLECTD_RECIPES.load),
- templateFactory('.system-charts')),
+ templateFactory('.system-charts'), serialDownloader),
jarmon.Chart.fromRecipe(
rrdUrlList,
jarmon.COLLECTD_RECIPES.interface,
- templateFactory('.network-charts')),
+ templateFactory('.network-charts'), serialDownloader),
jarmon.Chart.fromRecipe(
rrdUrlList,
jarmon.COLLECTD_RECIPES.dns,
- templateFactory('.dns-charts')),
+ templateFactory('.dns-charts'), serialDownloader),
jarmon.Chart.fromRecipe(
rrdUrlList,
application_recipes,
- templateFactory('.application-charts'))
+ templateFactory('.application-charts'), serialDownloader)
);
// Show a loading icon when a chart is being redrawn
diff --git a/jarmon.js b/jarmon.js
index 2ffa942..8df8dd6 100644
--- a/jarmon.js
+++ b/jarmon.js
@@ -60,6 +60,46 @@ jarmon.downloadBinary = function(url) {
return d;
};
+/**
+ * Limit the number of parallel async calls
+ *
+ * @param limit: The maximum number of in progress calls
+ **/
+jarmon.Parallimiter = function(limit) {
+ this.limit = limit || 1;
+ this._callQueue = [];
+ this._currentCallCount = 0;
+};
+
+jarmon.Parallimiter.prototype.addCallable = function(callable) {
+ /**
+ * Add a function to be called when the number of in progress calls drops
+ * below the configured limit
+ *
+ * @param callable: A function which returns a Deferred.
+ **/
+ var d = new MochiKit.Async.Deferred();
+ this._callQueue.unshift([callable, d]);
+ this._nextCall();
+ return d;
+};
+
+jarmon.Parallimiter.prototype._nextCall = function() {
+ if(this._callQueue.length > 0) {
+ if(this._currentCallCount < this.limit) {
+ this._currentCallCount++;
+ var nextCall = this._callQueue.pop();
+ nextCall[0].call().addBoth(
+ function(self, d, res) {
+ d.callback(res);
+ self._currentCallCount--;
+ self._nextCall();
+ }, this, nextCall[1]);
+ }
+ }
+};
+
+
jarmon.localTimeFormatter = function (v, axis) {
/**
* Copied from jquery.flot.js and modified to allow timezone
@@ -220,9 +260,10 @@ jarmon.RrdQuery.prototype.getData = function(startTime, endTime, dsId, cfName) {
* @param url: The url I{String} of a remote RRD file
* @param unit: The unit suffix I{String} of this data eg 'bit/sec'
**/
-jarmon.RrdQueryRemote = function(url, unit) {
+jarmon.RrdQueryRemote = function(url, unit, downloader) {
this.url = url;
this.unit = unit;
+ this.downloader = downloader;
this.lastUpdate = 0;
this._download = null;
};
@@ -243,7 +284,7 @@ jarmon.RrdQueryRemote.prototype.getData = function(startTime, endTime, dsId) {
// end time.
// Don't start another download if one is already in progress.
if(!this._download || (this._download.fired > -1 && this.lastUpdate < endTimestamp )) {
- this._download = jarmon.downloadBinary(this.url)
+ this._download = this.downloader(this.url)
.addCallback(
function(self, binary) {
// Upon successful download convert the resulting binary
@@ -515,7 +556,7 @@ jarmon.Chart.prototype.draw = function() {
};
-jarmon.Chart.fromRecipe = function(rrdUrlList, recipes, templateFactory) {
+jarmon.Chart.fromRecipe = function(rrdUrlList, recipes, templateFactory, downloader) {
/**
* A factory function to generate a list of I{Chart} from a list of recipes
* and a list of available rrd files in collectd path format.
@@ -549,7 +590,7 @@ jarmon.Chart.fromRecipe = function(rrdUrlList, recipes, templateFactory) {
for(x=0; x<match.length; x++) {
if(typeof dataDict[match[x]] == 'undefined') {
- dataDict[match[x]] = new jarmon.RrdQueryRemote(match[x], unit);
+ dataDict[match[x]] = new jarmon.RrdQueryRemote(match[x], unit, downloader);
}
chartData.push([label, new jarmon.RrdQueryDsProxy(dataDict[match[x]], ds)]);
}