/* Copyright (c) 2012-2014 Open Lab Written by Roberto Bicchierai and Silvia Chelazzi http://roberto.open-lab.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /** * A method to instantiate valid task models from * raw data. */ function TaskFactory() { /** * Build a new Task */ this.build = function(id, name, code, level, start, duration, collapsed) { // Set at beginning of day var adjusted_start = computeStart(start); var calculated_end = computeEndByDuration(adjusted_start, duration); return new Task(id, name, code, level, adjusted_start, calculated_end, duration, collapsed); }; } function Task(id, name, code, level, start, end, duration, collapsed) { this.id = id; this.name = name; this.progress=0; this.description = ""; this.code = code; this.level = level; this.status = "STATUS_UNDEFINED"; this.depends=""; this.canWrite=true; // by default all tasks are writeable this.start = start this.duration = duration; this.end = end; this.startIsMilestone = false; this.endIsMilestone = false; this.collapsed = collapsed; this.rowElement; //row editor html element this.ganttElement; //gantt html element this.master; this.assigs = []; } Task.prototype.clone = function () { var ret = {}; for (var key in this) { if (typeof(this[key]) != "function") { ret[key] = this[key]; } } return ret; }; Task.prototype.getAssigsString = function () { var ret = ""; for (var i=0;i'; //crmv@104562e crmv@145469e } } return ret; }; //crmv@104562 Task.prototype.isVTEMilestone = function () { if (typeof(this.isMilestone) == 'undefined') return false; else return this.isMilestone; }; //crmv@104562e Task.prototype.createAssignment = function (id, resourceId, roleId, effort) { var assig = new Assignment(id, resourceId, roleId, effort); this.assigs.push(assig); return assig; }; //<%---------- SET PERIOD ---------------------- --%> Task.prototype.setPeriod = function (start, end) { //console.debug("setPeriod ",this.name,new Date(start),new Date(end)); //var profilerSetPer = new Profiler("gt_setPeriodJS"); if (start instanceof Date) { start = start.getTime(); } if (end instanceof Date) { end = end.getTime(); } var originalPeriod = { start: this.start, end: this.end, duration: this.duration }; //console.debug("setStart",date,date instanceof Date); var wantedStartMillis = start; //cannot start after end if (start > end) { start = end; } //set a legal start start = computeStart(start); //if depends -> start is set to max end + lag of superior var sups = this.getSuperiors(); if (sups && sups.length > 0) { var supEnd = 0; for (var i=0;i 0; var restrictingStart = restricting && (originalPeriod.start < this.start); var restrictingEnd = restricting && (originalPeriod.end > this.end); //console.debug( " originalPeriod.duration "+ originalPeriod.duration +" deltaPeriod "+deltaPeriod+" "+"restricting "+restricting); if (restricting) { //loops children to get boundaries var children = this.getChildren(); var bs = Infinity; var be = 0; for (var i=0;i this.master.maxEditableDate) { this.master.setErrorOnTransaction(GanttMaster.messages["CHANGE_OUT_OF_SCOPE"], this); todoOk = false; } //console.debug("set period: somethingChanged",this); if (todoOk && !updateTree(this)) { todoOk = false; } } if (todoOk) { //and now propagate to inferiors var infs = this.getInferiors(); if (infs && infs.length > 0) { for (var i=0;i Task.prototype.moveTo = function (start, ignoreMilestones) { //console.debug("moveTo ",this,start,ignoreMilestones); //var profiler = new Profiler("gt_task_moveTo"); if (start instanceof Date) { start = start.getTime(); } var originalPeriod = { start:this.start, end:this.end }; var wantedStartMillis = start; //set a legal start start = computeStart(start); //if start is milestone cannot be move if (!ignoreMilestones && this.startIsMilestone && start != this.start) { //notify error this.master.setErrorOnTransaction(GanttMaster.messages["START_IS_MILESTONE"], this); return false; } else if (this.hasExternalDep) { //notify error this.master.setErrorOnTransaction(GanttMaster.messages["TASK_HAS_EXTERNAL_DEPS"], this); return false; } //if depends start is set to max end + lag of superior var sups = this.getSuperiors(); if (sups && sups.length > 0) { var supEnd = 0; for (var i=0;i this.master.maxEditableDate) { this.master.setErrorOnTransaction(GanttMaster.messages["CHANGE_OUT_OF_SCOPE"], this); return false; } var panDelta = originalPeriod.start - this.start; //console.debug("panDelta",panDelta); //loops children to shift them var children = this.getChildren(); for (var i=0;i 0) { for (var i=0;i task.start) { if (p.startIsMilestone) { task.master.setErrorOnTransaction(GanttMaster.messages["START_IS_MILESTONE"] + "\n" + p.name, task); return false; } else if (p.depends) { task.master.setErrorOnTransaction(GanttMaster.messages["TASK_HAS_CONSTRAINTS"] + "\n" + p.name, task); return false; } newStart = task.start; } if (p.end < task.end) { if (p.endIsMilestone) { task.master.setErrorOnTransaction(GanttMaster.messages["END_IS_MILESTONE"] + "\n" + p.name, task); return false; } newEnd = task.end; } //propagate updates if needed if (newStart != p.start || newEnd != p.end) { //can write? if (!p.canWrite){ task.master.setErrorOnTransaction(GanttMaster.messages["CANNOT_WRITE"] + "\n" + p.name, task); return false; } //has external deps ? if (p.hasExternalDep) { task.master.setErrorOnTransaction(GanttMaster.messages["TASK_HAS_EXTERNAL_DEPS"] + "\n" + p.name, task); return false; } return p.setPeriod(newStart, newEnd); } return true; } //<%---------- CHANGE STATUS ---------------------- --%> Task.prototype.changeStatus = function(newStatus) { //console.debug("changeStatus: "+this.name+" from "+this.status+" -> "+newStatus); //compute descendant for identify a cone where status changes propagate var cone = this.getDescendant(); function propagateStatus(task, newStatus, manuallyChanged, propagateFromParent, propagateFromChildren) { //console.debug("propagateStatus",task.name, task.status,newStatus) var oldStatus = task.status; //no changes exit if(newStatus == oldStatus){ return true; } //console.debug("propagateStatus: "+task.name + " from " + task.status + " to " + newStatus + " " + (manuallyChanged?" a manella":"")+(propagateFromParent?" da parent":"")+(propagateFromChildren?" da children":"")); var todoOk = true; task.status = newStatus; if( task.master.cannotCloseTaskIfIssueOpen && newStatus=="STATUS_DONE" && task.openIssues>0){ task.master.setErrorOnTransaction(GanttMaster.messages["CANNOT_CLOSE_TASK_IF_OPEN_ISSUE"] +" " +task.name); return false; } //xxxx -> STATUS_DONE may activate dependent tasks, both suspended and undefined. Will set to done all descendants. //STATUS_FAILED -> STATUS_DONE do nothing if not forced by hand if (newStatus == "STATUS_DONE") { if ((manuallyChanged || oldStatus != "STATUS_FAILED")) { //cannot change for cascade when failed //can be closed only if superiors are already done var sups = task.getSuperiors(); for (var i=0;i " + task.name); todoOk = false; break; } } } if (todoOk) { //todo set progress to 100% if set on config var chds = task.getChildren(); //set children as done for (var i=0;i STATUS_ACTIVE all children become active, if they have no dependencies. // STATUS_SUSPENDED -> STATUS_ACTIVE sets to active all children and their descendants that have no inhibiting dependencies. // STATUS_DONE -> STATUS_ACTIVE all those that have dependencies must be set to suspended. // STATUS_FAILED -> STATUS_ACTIVE nothing happens: child statuses must be reset by hand. } else if (newStatus == "STATUS_ACTIVE") { if ((manuallyChanged || oldStatus != "STATUS_FAILED")) { //cannot change for cascade when failed //activate parent if closed var par=task.getParent(); if (par && par.status != "STATUS_ACTIVE") { todoOk=propagateStatus(par,"STATUS_ACTIVE",false,false,true); } if(todoOk){ //can be active only if superiors are already done var sups = task.getSuperiors(); for (var i=0;i " + task.name); todoOk = false; break; } } } if (todoOk) { var chds = task.getChildren(); if (oldStatus == "STATUS_UNDEFINED" || oldStatus == "STATUS_SUSPENDED") { //set children as active for (var i=0;i STATUS_SUSPENDED all active children and their active descendants become suspended. when not failed or forced // xxxx -> STATUS_UNDEFINED all active children and their active descendants become suspended. when not failed or forced } else if (newStatus == "STATUS_SUSPENDED" || newStatus == "STATUS_UNDEFINED") { if (manuallyChanged || oldStatus != "STATUS_FAILED") { //cannot change for cascade when failed //suspend parent if not active var par=task.getParent(); if (par && par.status != "STATUS_ACTIVE") { todoOk=propagateStatus(par,newStatus,false,false,true); } var chds = task.getChildren(); //set children as active for (var i=0;i STATUS_FAILED children and dependent failed } else if (newStatus == "STATUS_FAILED") { var chds = task.getChildren(); //set children as failed for (var i=0;i Task.prototype.getRow = function() { ret = -1; if (this.master) ret = this.master.tasks.indexOf(this); return ret; }; Task.prototype.getParents = function() { var ret; if (this.master) { var topLevel = this.level; var pos = this.getRow(); ret = []; for (var i = pos; i >= 0; i--) { var par = this.master.tasks[i]; if (topLevel > par.level) { topLevel = par.level; ret.push(par); } } } return ret; }; Task.prototype.getParent = function() { var ret; if (this.master) { for (var i = this.getRow(); i >= 0; i--) { var par = this.master.tasks[i]; if (this.level > par.level) { ret = par; break; } } } return ret; }; Task.prototype.isParent = function() { var ret = false; if (this.master) { var pos = this.getRow(); if (pos < this.master.tasks.length - 1) ret = this.master.tasks[pos + 1].level > this.level; } return ret; }; Task.prototype.getChildren = function() { var ret = []; if (this.master) { var pos = this.getRow(); for (var i = pos + 1; i < this.master.tasks.length; i++) { var ch = this.master.tasks[i]; if (ch.level == this.level + 1) ret.push(ch); else if (ch.level <= this.level) // exit loop if parent or brother break; } } return ret; }; Task.prototype.getDescendant = function() { var ret = []; if (this.master) { var pos = this.getRow(); for (var i = pos + 1; i < this.master.tasks.length; i++) { var ch = this.master.tasks[i]; if (ch.level > this.level) ret.push(ch); else break; } } return ret; }; Task.prototype.getSuperiors = function() { var ret = []; var task = this; if (this.master) { ret = this.master.links.filter(function(link) { return link.to == task; }); } return ret; }; Task.prototype.getSuperiorTasks = function() { var ret=[]; var sups = this.getSuperiors(); for (var i=0;i Task.prototype.indent = function() { //console.debug("indent", this); //a row above must exist var row = this.getRow(); //no row no party if (row <=0) return false; var ret = false; var taskAbove = this.master.tasks[row - 1]; var newLev = this.level + 1; if (newLev <= taskAbove.level + 1) { ret = true; //trick to get parents after indent this.level++; var futureParents = this.getParents(); this.level--; var oldLevel = this.level; for (var i = row; i < this.master.tasks.length; i++) { var desc = this.master.tasks[i]; if (desc.level > oldLevel || desc == this) { desc.level++; //remove links from descendant to my parents this.master.links = this.master.links.filter(function(link) { var linkToParent = false; if (link.to == desc) linkToParent = futureParents.indexOf(link.from) >= 0; else if (link.from == desc) linkToParent = futureParents.indexOf(link.to) >= 0; return !linkToParent; }); } else break; } var parent = this.getParent(); // set start date to parent' start if no deps if(parent && !this.depends){ var new_end = computeEndByDuration(parent.start, this.duration); this.master.changeTaskDates(this, parent.start, new_end); } //recompute depends string this.master.updateDependsStrings(); //enlarge parent using a fake set period this.setPeriod(this.start + 1, this.end + 1); //force status check this.synchronizeStatus(); } return ret; }; Task.prototype.outdent = function() { //console.debug("outdent", this); //a level must be >1 -> cannot escape from root if (this.level <= 1) return false; var ret = false; var oldLevel = this.level; ret = true; var row = this.getRow(); for (var i = row; i < this.master.tasks.length; i++) { var desc = this.master.tasks[i]; if (desc.level > oldLevel || desc == this) { desc.level--; } else break; } var task = this; var chds = this.getChildren(); //remove links from me to my new children this.master.links = this.master.links.filter(function(link) { var linkExist = (link.to == task && chds.indexOf(link.from) >= 0 || link.from == task && chds.indexOf(link.to) >= 0); return !linkExist; }); //enlarge me if inherited children are larger for (var i=0;i Task.prototype.moveUp = function() { //console.debug("moveUp", this); var ret = false; //a row above must exist var row = this.getRow(); //no row no party if (row <=0) return false; //find new row var newRow; for (newRow = row - 1; newRow >= 0; newRow--) { if (this.master.tasks[newRow].level <= this.level) break; } //is a parent or a brother if (this.master.tasks[newRow].level == this.level) { ret = true; //compute descendant var descNumber = 0; for (var i = row + 1; i < this.master.tasks.length; i++) { var desc = this.master.tasks[i]; if (desc.level > this.level) { descNumber++; } else { break; } } //move in memory var blockToMove = this.master.tasks.splice(row, descNumber + 1); var top = this.master.tasks.splice(0, newRow); this.master.tasks = [].concat(top, blockToMove, this.master.tasks); //move on dom var rows = this.master.editor.element.find("tr[taskid]"); var domBlockToMove = rows.slice(row, row + descNumber + 1); rows.eq(newRow).before(domBlockToMove); //recompute depends string this.master.updateDependsStrings(); } else { this.master.setErrorOnTransaction(GanttMaster.messages["TASK_MOVE_INCONSISTENT_LEVEL"], this); ret = false; } return ret; }; Task.prototype.moveDown = function() { //console.debug("moveDown", this); //a row below must exist, and cannot move root task var row = this.getRow(); if (row >= this.master.tasks.length - 1 || row==0) return false; var ret = false; //find nearest brother var newRow; for (newRow = row + 1; newRow < this.master.tasks.length; newRow++) { if (this.master.tasks[newRow].level <= this.level) break; } //is brother if (this.master.tasks[newRow] && this.master.tasks[newRow].level == this.level) { ret = true; //find last desc for (newRow = newRow + 1; newRow < this.master.tasks.length; newRow++) { if (this.master.tasks[newRow].level <= this.level) break; } //compute descendant var descNumber = 0; for (var i = row + 1; i < this.master.tasks.length; i++) { var desc = this.master.tasks[i]; if (desc.level > this.level) { descNumber++; } else { break; } } //move in memory var blockToMove = this.master.tasks.splice(row, descNumber + 1); var top = this.master.tasks.splice(0, newRow - descNumber - 1); this.master.tasks = [].concat(top, blockToMove, this.master.tasks); //move on dom var rows = this.master.editor.element.find("tr[taskid]"); var aft = rows.eq(newRow - 1); var domBlockToMove = rows.slice(row, row + descNumber + 1); aft.after(domBlockToMove); //recompute depends string this.master.updateDependsStrings(); } return ret; }; //<%------------------------------------------------------------------------ LINKS OBJECT ---------------------------------------------------------------%> function Link(taskFrom, taskTo, lagInWorkingDays) { this.from = taskFrom; this.to = taskTo; this.lag = lagInWorkingDays; } //<%------------------------------------------------------------------------ ASSIGNMENT ---------------------------------------------------------------%> function Assignment(id, resourceId, roleId, effort) { this.id = id; this.resourceId = resourceId; this.roleId = roleId; this.effort = effort; } //<%------------------------------------------------------------------------ RESOURCE ---------------------------------------------------------------%> function Resource(id, name) { this.id = id; this.name = name; } //<%------------------------------------------------------------------------ ROLE ---------------------------------------------------------------%> function Role(id, name) { this.id = id; this.name = name; }