Stackedit/js/async-runner.js

186 lines
4.6 KiB
JavaScript
Raw Normal View History

2013-03-30 11:56:17 +00:00
/**
2013-04-20 00:14:20 +00:00
* Used to run asynchronous tasks sequentially (ajax mainly) An asynchronous
* task is composed of different callback types: onRun, onSuccess, onError
2013-03-30 11:56:17 +00:00
*/
2013-04-20 00:14:20 +00:00
define([ "underscore" ], function() {
var asyncRunner = {};
2013-04-10 18:14:59 +00:00
// Dependencies
var core = undefined;
2013-04-20 00:14:20 +00:00
var taskQueue = [];
2013-03-30 11:56:17 +00:00
var currentTask = undefined;
2013-04-01 01:06:52 +00:00
var currentTaskRunning = false;
2013-04-10 18:14:59 +00:00
var currentTaskStartTime = 0;
2013-04-20 00:14:20 +00:00
asyncRunner.createTask = function() {
var task = {};
task.finished = false;
task.timeout = ASYNC_TASK_DEFAULT_TIMEOUT;
task.retryCounter = 0;
/**
* onRun callbacks are called by chain(). These callbacks have to call
* chain() themselves to chain with next callback or to finish the task
* and call onSuccess callbacks.
*/
// Run callbacks
task.runCallbacks = [];
task.onRun = function(callback) {
task.runCallbacks.push(callback);
};
/**
* onSuccess callbacks are called when every onRun callbacks have
* succeed.
*/
task.successCallbacks = [];
task.onSuccess = function(callback) {
task.successCallbacks.push(callback);
};
/**
* onError callbacks are called when error() is called in a onRun
* callback.
*/
task.errorCallbacks = [];
task.onError = function(callback) {
task.errorCallbacks.push(callback);
};
/**
* chain() calls the next onRun callback or the onSuccess callbacks when
* finished. The optional callback parameter can be used to add a onRun
* callback during execution.
*/
task.chain = function(callback) {
if (task.finished === true) {
return;
}
// If first execution
if (task.queue === undefined) {
// Create a copy of the onRun callbacks
task.queue = task.runCallbacks.slice();
}
// If a callback is passed as a parameter
if(callback !== undefined) {
callback();
return;
}
// If all callbacks have been run
if (task.queue.length === 0) {
// Run the onSuccess callbacks
runSafe(task, task.successCallbacks);
return;
}
// Run the next callback
var runCallback = task.queue.shift();
runCallback();
};
/**
* error() calls the onError callbacks.
*/
task.error = function(error) {
if (task.finished === true) {
return;
}
error = error || "Unknown error";
runSafe(task, task.errorCallbacks, error);
// Exit the current call stack
throw error;
};
/**
* retry() can be called in an onRun callback to restart the task
*/
task.retry = function() {
if (task.finished === true) {
return;
}
task.queue = undefined;
if (task.retryCounter === 5) {
task.error(new Error("Maximum retry number reached"));
return;
}
// Implement an exponential backoff
var delay = Math.pow(2, task.retryCounter++) * 1000;
currentTaskStartTime = core.currentTime + delay;
currentTaskRunning = false;
asyncRunner.runTask();
};
return task;
};
// Run the next task in the queue if any and no other running
2013-04-10 18:14:59 +00:00
function runTask() {
2013-04-20 00:14:20 +00:00
2013-03-30 11:56:17 +00:00
// If there is a task currently running
2013-04-20 00:14:20 +00:00
if (currentTaskRunning === true) {
2013-03-30 11:56:17 +00:00
// If the current task takes too long
2013-04-20 00:14:20 +00:00
if (currentTaskStartTime + currentTask.timeout < core.currentTime) {
var errorMsg = "A timeout occurred.";
core.showError(errorMsg);
currentTask.error(new Error(errorMsg));
2013-03-30 11:56:17 +00:00
}
return;
}
2013-04-20 00:14:20 +00:00
if (currentTask === undefined) {
2013-04-01 01:06:52 +00:00
// If no task in the queue
2013-04-20 00:14:20 +00:00
if (taskQueue.length === 0) {
2013-03-30 11:56:17 +00:00
return;
}
2013-04-20 00:14:20 +00:00
// Dequeue an enqueued task
currentTask = taskQueue.shift();
2013-04-02 18:42:47 +00:00
currentTaskStartTime = core.currentTime;
core.showWorkingIndicator(true);
2013-04-01 01:06:52 +00:00
}
2013-04-20 00:14:20 +00:00
2013-04-01 01:06:52 +00:00
// Run the task
2013-04-20 00:14:20 +00:00
if (currentTaskStartTime <= core.currentTime) {
2013-04-01 01:06:52 +00:00
currentTaskRunning = true;
2013-04-20 00:14:20 +00:00
currentTask.chain();
2013-04-01 01:06:52 +00:00
}
2013-04-10 18:14:59 +00:00
}
2013-04-20 00:14:20 +00:00
asyncRunner.runTask = function() {
2013-04-14 13:24:29 +00:00
// Use defer to avoid stack overflow
_.defer(runTask);
2013-03-30 11:56:17 +00:00
};
2013-04-20 00:14:20 +00:00
function runSafe(task, callbacks, param) {
try {
2013-04-20 00:14:20 +00:00
_.each(callbacks, function(callback) {
callback(param);
});
} finally {
2013-04-20 00:14:20 +00:00
task.finished = true;
if (currentTask === task) {
currentTask = undefined;
currentTaskRunning = false;
}
2013-04-20 00:14:20 +00:00
if (taskQueue.length === 0) {
core.showWorkingIndicator(false);
} else {
asyncRunner.runTask();
}
}
}
2013-04-20 00:14:20 +00:00
// Add a task to the queue
asyncRunner.addTask = function(task) {
taskQueue.push(task);
asyncRunner.runTask();
2013-03-30 11:56:17 +00:00
};
2013-04-20 00:14:20 +00:00
2013-04-16 15:02:24 +00:00
// Change current task timeout
2013-04-20 00:14:20 +00:00
asyncRunner.setCurrentTaskTimeout = function(timeout) {
if (currentTask !== undefined) {
2013-04-16 15:02:24 +00:00
currentTask.timeout = timeout;
}
};
2013-04-20 00:14:20 +00:00
asyncRunner.init = function(coreModule) {
2013-04-10 18:14:59 +00:00
core = coreModule;
};
2013-04-20 00:14:20 +00:00
return asyncRunner;
2013-04-02 18:42:47 +00:00
});