diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2013-01-16 14:08:26 +0100 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2013-05-06 16:22:17 +0200 |
commit | 87a1b582377f3f37a76d09245399a68f894c524e (patch) | |
tree | 3fde156ba86746817cf2f2e46722832414a2f9a6 /install/ui | |
parent | 33904d8651701a68469c27f74f653f5369838d05 (diff) | |
download | freeipa-87a1b582377f3f37a76d09245399a68f894c524e.tar.gz freeipa-87a1b582377f3f37a76d09245399a68f894c524e.tar.xz freeipa-87a1b582377f3f37a76d09245399a68f894c524e.zip |
Phases - application lifecycle
https://fedorahosted.org/freeipa/ticket/3235
Diffstat (limited to 'install/ui')
-rw-r--r-- | install/ui/src/freeipa/_base/Phase_controller.js | 164 | ||||
-rw-r--r-- | install/ui/src/freeipa/ordered-map.js | 29 | ||||
-rw-r--r-- | install/ui/src/freeipa/phases.js | 64 |
3 files changed, 257 insertions, 0 deletions
diff --git a/install/ui/src/freeipa/_base/Phase_controller.js b/install/ui/src/freeipa/_base/Phase_controller.js new file mode 100644 index 000000000..951aa51fe --- /dev/null +++ b/install/ui/src/freeipa/_base/Phase_controller.js @@ -0,0 +1,164 @@ +/* Authors: + * Petr Vobornik <pvoborni@redhat.com> + * + * Copyright (C) 2012 Red Hat + * see file 'COPYING' for use and warranty information + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + +define([ + 'dojo/_base/lang', + 'dojo/_base/array', + 'dojo/_base/declare', + 'dojo/promise/all', + 'dojo/topic', + '../ordered-map' +], function(lang, array, declare, all, topic, ordered_map) { + + var Phase_controller = declare(null, { + + /** + * Phases + * @type ordered_map[name, phase] + */ + phases: null, + + /** + * Current phase name + * @type String + */ + current: null, + + /** + * Run all phases in a row starting from current, or the first when + * current is not set. + */ + run: function() { + if (this.current !== null) { + var phase = this.phases.get(this.current); + this._run_phase(phase); + } else { + this.next_phase(true); + } + }, + + /** + * Runs phase + * 1) Sorts tasks of the phase based on their priority. + * 2) Runs all task sequentially. + * 3) Waits for all tasks to complete (in case of asynchronous ones) + * 4) Optionally runs next phase + * + * @param {phase} Phase to runs + * @param {Boolean} Whether to run next phase when current finishes + */ + _run_phase: function(phase, next_phase) { + + if (!phase) return; + this.current = phase.name; + topic.publish('phase-start', { phase: phase.name }); + var promises = []; + + var tasks = phase.tasks.sort(function(a,b) { + return a.priority-b.priority; + }); + + array.forEach(tasks, function(task) { + var promise = task.handler(); + promises.push(promise); + }); + + all(promises).then(lang.hitch(this, function(results) { + topic.publish('phase-finished', + { phase: phase.name, results: results }); + if (next_phase) { + this.next_phase(next_phase); + } + }), function(results) { + topic.publish('phase-error', + { phase: phase.name, results: results }); + // don't go for next phase on error, let app decide what to do + }); + }, + + /** + * Selects next phase and then runs it. + * + * @param {Boolen} Whether to run phases continuously + */ + next_phase: function(continuous) { + var phase; + + if (this.current === null) { + phase = this.phases.get_value_by_index(0); + } else { + var index = this.phases.get_key_index(this.current); + phase = this.phases.get_value_by_index(index + 1); + } + + this._run_phase(phase, continuous); + }, + + /** + * Add task for a phase. + * + * At phase execution, tasks are sorted by priority and executed in + * that order. + * + * @param {String} Name of associated phase + * @param {Function} Task handler. Should return promise if async. + * @param {Number} Priority of task. Default 10. + */ + add_task: function(phase_name, handler, priority) { + + var phase = this.phases.get(phase_name); + + if (typeof priority !== 'number') priority = 10; + + phase.tasks.push({ + priority: priority, + handler: handler + }); + }, + + /** + * Adds a phase. + * @param {String} phase name + */ + add_phase: function(name, tasks) { + + var phase = { + name: name, + tasks: tasks || [] + }; + + this.phases.put(name, phase); + }, + + constructor: function(spec) { + spec = spec || {}; + + this.phases = ordered_map(); + + var phases = spec.phases || []; + array.forEach(phases, lang.hitch(this, function(phase) { + this.add_phase(phase); + })); + } + }); + + return Phase_controller; + +});
\ No newline at end of file diff --git a/install/ui/src/freeipa/ordered-map.js b/install/ui/src/freeipa/ordered-map.js new file mode 100644 index 000000000..c8c735a39 --- /dev/null +++ b/install/ui/src/freeipa/ordered-map.js @@ -0,0 +1,29 @@ +/* Authors: + * Petr Vobornik <pvoborni@redhat.com> + * + * Copyright (C) 2012 Red Hat + * see file 'COPYING' for use and warranty information + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + + +define([ + './jquery' +], function($) { + /** + * Wrapper for jquery.ordered_map + */ + return $.ordered_map; +});
\ No newline at end of file diff --git a/install/ui/src/freeipa/phases.js b/install/ui/src/freeipa/phases.js new file mode 100644 index 000000000..295a407ac --- /dev/null +++ b/install/ui/src/freeipa/phases.js @@ -0,0 +1,64 @@ +/* Authors: + * Petr Vobornik <pvoborni@redhat.com> + * + * Copyright (C) 2012 Red Hat + * see file 'COPYING' for use and warranty information + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + +/** + * Phases module provides access mainly serves as an registration point for + * phase tasks. It also provides access to Phase controller. + */ +define([ + './_base/Phase_controller' +], function(Phase_controller) { + + /** + * Phases specification object. + * + * @type String[] + */ + var spec = { + phases: [ + //'resource-load', // implicit phase + 'registration', + 'alternation', + 'app-init', + 'metadata', + 'profile', + 'logout' + ] + }; + + /** + * Phases module + */ + var phases = { + /** + * Phases controller + */ + controller: new Phase_controller(spec), + + /** + * Registers phase task + */ + on: function(phase_name, handler, priority) { + this.controller.add_task(phase_name, handler, priority); + } + }; + + return phases; +});
\ No newline at end of file |