UNPKG

bugcore

Version:

bugcore is a JavaScript library that provides a foundational architecture for object oriented JS

247 lines (201 loc) 7.19 kB
/* * Copyright (c) 2016 airbug Inc. http://airbug.com * * bugcore may be freely distributed under the MIT license. */ //------------------------------------------------------------------------------- // Annotations //------------------------------------------------------------------------------- //@Export('WhileParallel') //@Require('Assertion') //@Require('Class') //@Require('Flow') //@Require('Throwables') //@Require('TypeUtil') //------------------------------------------------------------------------------- // Context //------------------------------------------------------------------------------- require('bugpack').context("*", function(bugpack) { //------------------------------------------------------------------------------- // BugPack //------------------------------------------------------------------------------- var Assertion = bugpack.require('Assertion'); var Class = bugpack.require('Class'); var Flow = bugpack.require('Flow'); var Throwables = bugpack.require('Throwables'); var TypeUtil = bugpack.require('TypeUtil'); //------------------------------------------------------------------------------- // Declare Class //------------------------------------------------------------------------------- /** * @class * @extends {flow} */ var WhileParallel = Class.extend(Flow, { _name: "WhileParallel", //------------------------------------------------------------------------------- // Constructor //------------------------------------------------------------------------------- /** * @constructs */ _constructor: function() { this._super(); //------------------------------------------------------------------------------- // Private Properties //------------------------------------------------------------------------------- /** * @private * @type {function(Assertion, *...)} */ this.assertionMethod = null; /** * @private * @type {FlowBuilder} */ this.assertPassFlowBuilder = null; /** * @private * @type {ParallelException} */ this.exception = null; /** * @private * @type {number} */ this.numberFlowsCompleted = 0; /** * @private * @type {number} */ this.numberFlowsExecuted = 0; /** * @private * @type {boolean} */ this.syncCall = false; /** * @private * @type {boolean} */ this.whileCheck = true; }, //------------------------------------------------------------------------------- // Init Methods //------------------------------------------------------------------------------- /** * @param {function(Flow, *...)} assertionMethod * @param {FlowBuilder} assertPassFlowBuilder * @return {WhileParallel} */ init: function(assertionMethod, assertPassFlowBuilder) { this._super(); this.assertionMethod = assertionMethod; this.assertPassFlowBuilder = assertPassFlowBuilder; return this; }, //------------------------------------------------------------------------------- // Flow Methods //------------------------------------------------------------------------------- /** * @param {Array.<*>} flowArgs */ executeFlow: function(flowArgs) { this._super(flowArgs); this.startSyncWhileLoop(); }, //------------------------------------------------------------------------------- // Private Methods //------------------------------------------------------------------------------- /** * @private */ doCheckComplete: function() { if (!this.whileCheck) { if (this.numberFlowsCompleted === this.numberFlowsExecuted) { if (this.exception) { this.error(this.exception); } else { this.complete(); } } } }, /** * @private * @param {Throwable} throwable */ processThrowable: function(throwable) { if (!this.exception) { this.exception = Throwables.parallelException(); } this.exception.addCause(throwable); }, /** * @private */ runWhileAssertion: function() { var _this = this; var executed = false; var assertionFlow = new Assertion(this.assertionMethod); assertionFlow.execute(this.getFlowArgs(), function(throwable, result) { executed = true; if (!throwable) { if (result) { _this.whileCheckSuccess(); } else { _this.whileCheckFailed(); } } else { _this.processThrowable(throwable); _this.whileCheckFailed(); } }); //NOTE BRN: This code will run before the above callback for the execute method only if the callback is fired async this.syncCall = executed; }, /** * @private */ runWhileFlow: function() { var _this = this; this.numberFlowsExecuted++; this.assertPassFlowBuilder.execute(this.getFlowArgs(), function(throwable) { _this.numberFlowsCompleted++; if (throwable) { _this.processThrowable(throwable); } _this.doCheckComplete(); }); }, /** * @private */ startSyncWhileLoop: function() { this.syncCall = true; while (this.syncCall && this.whileCheck) { this.runWhileAssertion(); } }, /** * @private */ whileCheckFailed: function() { this.whileCheck = false; this.doCheckComplete(); }, /** * @private */ whileCheckSuccess: function() { this.runWhileFlow(); if (!this.syncCall) { this.startSyncWhileLoop(); } } }); //------------------------------------------------------------------------------- // Export //------------------------------------------------------------------------------- bugpack.export('WhileParallel', WhileParallel); });