www/views/jobs/jobs.js

Code
Comments
Other
Rev Date Author Line
7604 25 Feb 19 nicklas 1 /* $Id $
7604 25 Feb 19 nicklas 2   ------------------------------------------------------------------
7604 25 Feb 19 nicklas 3   Copyright (C) 2013 Nicklas Nordborg
7604 25 Feb 19 nicklas 4
7604 25 Feb 19 nicklas 5   This file is part of BASE - BioArray Software Environment.
7604 25 Feb 19 nicklas 6   Available at http://base.thep.lu.se/
7604 25 Feb 19 nicklas 7
7604 25 Feb 19 nicklas 8   BASE is free software; you can redistribute it and/or
7604 25 Feb 19 nicklas 9   modify it under the terms of the GNU General Public License
7604 25 Feb 19 nicklas 10   as published by the Free Software Foundation; either version 3
7604 25 Feb 19 nicklas 11   of the License, or (at your option) any later version.
7604 25 Feb 19 nicklas 12
7604 25 Feb 19 nicklas 13   BASE is distributed in the hope that it will be useful,
7604 25 Feb 19 nicklas 14   but WITHOUT ANY WARRANTY; without even the implied warranty of
7604 25 Feb 19 nicklas 15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7604 25 Feb 19 nicklas 16   GNU General Public License for more details.
7604 25 Feb 19 nicklas 17
7604 25 Feb 19 nicklas 18   You should have received a copy of the GNU General Public License
7604 25 Feb 19 nicklas 19   along with BASE. If not, see <http://www.gnu.org/licenses/>.
7604 25 Feb 19 nicklas 20   ------------------------------------------------------------------
7604 25 Feb 19 nicklas 21
7604 25 Feb 19 nicklas 22   @author Nicklas
7604 25 Feb 19 nicklas 23 */
7604 25 Feb 19 nicklas 24 'use strict';
7604 25 Feb 19 nicklas 25
7604 25 Feb 19 nicklas 26 var Jobs = function()
7604 25 Feb 19 nicklas 27 {
7604 25 Feb 19 nicklas 28   var jobs = {};
7604 25 Feb 19 nicklas 29   
7604 25 Feb 19 nicklas 30   /**
7604 25 Feb 19 nicklas 31     Initialize the page.
7604 25 Feb 19 nicklas 32   */
7604 25 Feb 19 nicklas 33   jobs.initPage = function()
7604 25 Feb 19 nicklas 34   {
7604 25 Feb 19 nicklas 35     var pageId = Doc.getPageId();    
7604 25 Feb 19 nicklas 36     if (pageId == 'view-page')
7604 25 Feb 19 nicklas 37     {
7604 25 Feb 19 nicklas 38       var itemId = Data.get('page-data', 'item-id');
7604 25 Feb 19 nicklas 39       var attributes = {'item-type': 'JOB', 'item-id': itemId};
7604 25 Feb 19 nicklas 40       
7604 25 Feb 19 nicklas 41       Buttons.addClickHandler('btnUsingItems', Buttons.showUsingItems, attributes);
7604 25 Feb 19 nicklas 42       Buttons.addClickHandler('btnDeletePermanently', Buttons.deleteItemPermanently, attributes);
7604 25 Feb 19 nicklas 43       Events.addEventHandler('btnDeletePermanently', 'base-notify', jobs.jobDeleted);
7604 25 Feb 19 nicklas 44       
7604 25 Feb 19 nicklas 45       // Pause/Abort button
7604 25 Feb 19 nicklas 46       Buttons.addClickHandler('btnPause', jobs.pauseJob);
7604 25 Feb 19 nicklas 47       Buttons.addClickHandler('btnAbort', jobs.abortJob);
7604 25 Feb 19 nicklas 48       Buttons.addClickHandler('btnForceError', jobs.forceError);
7604 25 Feb 19 nicklas 49
7604 25 Feb 19 nicklas 50       // Restart job
7604 25 Feb 19 nicklas 51       Buttons.addClickHandler('btnRestartJob', jobs.restartJob);
7604 25 Feb 19 nicklas 52       Buttons.addClickHandler('btnReconfigureJob', jobs.reconfigureJob);
7604 25 Feb 19 nicklas 53       
7604 25 Feb 19 nicklas 54       Buttons.addClickHandler('close', App.closeWindow);
7604 25 Feb 19 nicklas 55       
7604 25 Feb 19 nicklas 56       if (Data.int('page-data', 'auto-update'))
7604 25 Feb 19 nicklas 57       {
7604 25 Feb 19 nicklas 58         jobs.sendProgressUpdateRequest();
7604 25 Feb 19 nicklas 59       }
7604 25 Feb 19 nicklas 60     }
7604 25 Feb 19 nicklas 61     else if (pageId == 'list-page')
7604 25 Feb 19 nicklas 62     {
7604 25 Feb 19 nicklas 63       var attributes = {'item-type': 'JOB'};
7604 25 Feb 19 nicklas 64       var tableAttributes = {'table-id': 'jobs'};
7604 25 Feb 19 nicklas 65       Buttons.addClickHandler('btnDeleteItems', Buttons.deleteItems, tableAttributes);
7604 25 Feb 19 nicklas 66       Buttons.addClickHandler('btnRestoreItems', Buttons.restoreItems, tableAttributes);
7604 25 Feb 19 nicklas 67       Buttons.addClickHandler('btnAbort', jobs.abortJobs, tableAttributes);
7604 25 Feb 19 nicklas 68       Buttons.addClickHandler('btnPause', jobs.pauseJobs, tableAttributes);
7604 25 Feb 19 nicklas 69       Buttons.addClickHandler('btnShareItems', Buttons.shareItems, tableAttributes);
7604 25 Feb 19 nicklas 70       Buttons.addClickHandler('btnSetOwner', Buttons.setOwnerOfItems, tableAttributes);
7604 25 Feb 19 nicklas 71       Buttons.addClickHandler('btnColumns', Buttons.configureColumns, tableAttributes);
7604 25 Feb 19 nicklas 72       Buttons.addClickHandler('btnExport', Buttons.runListPlugin, tableAttributes);
7604 25 Feb 19 nicklas 73       Buttons.addClickHandler('btnImport', Buttons.runListPlugin, tableAttributes);
7604 25 Feb 19 nicklas 74       Buttons.addClickHandler('btnRunPlugin', Buttons.runListPlugin, tableAttributes);
7604 25 Feb 19 nicklas 75
7604 25 Feb 19 nicklas 76       Buttons.addClickHandler('close', App.closeWindow);
7604 25 Feb 19 nicklas 77       Buttons.addClickHandler('btnOk', Buttons.returnSelected, tableAttributes);
7604 25 Feb 19 nicklas 78     }
7604 25 Feb 19 nicklas 79   }
7604 25 Feb 19 nicklas 80   
7604 25 Feb 19 nicklas 81   jobs.jobDeleted = function(event)
7604 25 Feb 19 nicklas 82   {
7604 25 Feb 19 nicklas 83     window.opener.Items.list('JOB'); 
7604 25 Feb 19 nicklas 84     window.close();
7604 25 Feb 19 nicklas 85   }
7604 25 Feb 19 nicklas 86   
7604 25 Feb 19 nicklas 87   jobs.pauseJob = function()
7604 25 Feb 19 nicklas 88   {
7604 25 Feb 19 nicklas 89     var jobId = Data.get('page-data', 'item-id');
7604 25 Feb 19 nicklas 90     var url = 'index.jsp?ID='+App.getSessionId();
7604 25 Feb 19 nicklas 91     url += '&cmd=PauseJob&item_id='+jobId;
7604 25 Feb 19 nicklas 92     location.replace(url);
7604 25 Feb 19 nicklas 93   }
7604 25 Feb 19 nicklas 94
7604 25 Feb 19 nicklas 95   jobs.pauseJobs = function()
7604 25 Feb 19 nicklas 96   {
7604 25 Feb 19 nicklas 97     var frm = document.forms['jobs'];
7604 25 Feb 19 nicklas 98     var numSelected = Table.checkIfSelected('jobs');
7604 25 Feb 19 nicklas 99     if (numSelected == 0) return;
7604 25 Feb 19 nicklas 100     if (!confirm('You are about to pause '+numSelected+' jobs. Continue?'))
7604 25 Feb 19 nicklas 101     {
7604 25 Feb 19 nicklas 102       return;
7604 25 Feb 19 nicklas 103     }
7604 25 Feb 19 nicklas 104     frm.cmd.value = 'PauseJobs';
7604 25 Feb 19 nicklas 105     frm.submit();
7604 25 Feb 19 nicklas 106   }
7604 25 Feb 19 nicklas 107
7604 25 Feb 19 nicklas 108   jobs.abortJobs = function()
7604 25 Feb 19 nicklas 109   {
7604 25 Feb 19 nicklas 110     var frm = document.forms['jobs'];
7604 25 Feb 19 nicklas 111     var numSelected = Table.checkIfSelected('jobs');
7604 25 Feb 19 nicklas 112     if (numSelected == 0) return;
7604 25 Feb 19 nicklas 113     if (!confirm('You are about to abort '+numSelected+' jobs. This can\'t be undone. Continue?'))
7604 25 Feb 19 nicklas 114     {
7604 25 Feb 19 nicklas 115       return;
7604 25 Feb 19 nicklas 116     }
7604 25 Feb 19 nicklas 117     frm.cmd.value = 'AbortJobs';
7604 25 Feb 19 nicklas 118     frm.submit();
7604 25 Feb 19 nicklas 119   }
7604 25 Feb 19 nicklas 120   
7604 25 Feb 19 nicklas 121   jobs.abortJob = function()
7604 25 Feb 19 nicklas 122   {
7604 25 Feb 19 nicklas 123     if (confirm('Are you sure? This action may not be undone'))
7604 25 Feb 19 nicklas 124     {
7604 25 Feb 19 nicklas 125       var jobId = Data.get('page-data', 'item-id');
7604 25 Feb 19 nicklas 126       var url = 'index.jsp?ID='+App.getSessionId();
7604 25 Feb 19 nicklas 127       url += '&cmd=AbortJob&item_id='+jobId;
7604 25 Feb 19 nicklas 128       location.replace(url);
7604 25 Feb 19 nicklas 129     }
7604 25 Feb 19 nicklas 130   }
7604 25 Feb 19 nicklas 131
7604 25 Feb 19 nicklas 132   jobs.forceError = function()
7604 25 Feb 19 nicklas 133   {
7604 25 Feb 19 nicklas 134     var p = 'CAUTION!!\n';
7604 25 Feb 19 nicklas 135     p += 'Use this for jobs that have crashed and can\'t be aborted normally.\n';
7604 25 Feb 19 nicklas 136     var msg = prompt(p, 'Job has crashed');
7604 25 Feb 19 nicklas 137     if (msg == null) return;
7604 25 Feb 19 nicklas 138     
7604 25 Feb 19 nicklas 139     var jobId = Data.get('page-data', 'item-id');
7604 25 Feb 19 nicklas 140     var url = 'index.jsp?ID='+App.getSessionId();
7604 25 Feb 19 nicklas 141     url += '&cmd=ForceError&item_id='+jobId;
7604 25 Feb 19 nicklas 142     url += '&msg='+encodeURIComponent(msg);
7604 25 Feb 19 nicklas 143     location.replace(url);
7604 25 Feb 19 nicklas 144   }
7604 25 Feb 19 nicklas 145
7604 25 Feb 19 nicklas 146   
7604 25 Feb 19 nicklas 147   jobs.restartJob = function(event, options)
7604 25 Feb 19 nicklas 148   {
7604 25 Feb 19 nicklas 149     var parameterVersion = Data.int('page-data', 'job-parameter-version');
7604 25 Feb 19 nicklas 150     var latestVersion = Data.int('page-data', 'latest-parameter-version');
7604 25 Feb 19 nicklas 151     var breakPoint = Data.get('page-data', 'breakpoint');
7604 25 Feb 19 nicklas 152     var jobId = Data.get('page-data', 'item-id');
7604 25 Feb 19 nicklas 153     var clearDryRun = event ? Data.int(event.currentTarget, 'clear-dry-run', 0) : 0;
7604 25 Feb 19 nicklas 154     
7604 25 Feb 19 nicklas 155     var useLatestConfiguration = 0;
7604 25 Feb 19 nicklas 156     var resumeFromBreakPoint = 0;
7604 25 Feb 19 nicklas 157     if (parameterVersion != latestVersion || breakPoint)
7604 25 Feb 19 nicklas 158     {
7604 25 Feb 19 nicklas 159       if (!options)
7604 25 Feb 19 nicklas 160       {
7604 25 Feb 19 nicklas 161         var url = 'restart_job_options.jsp?';
7604 25 Feb 19 nicklas 162         Dialogs.openPopup(url, 'RestartJobOptions', 500, 300);
7604 25 Feb 19 nicklas 163         return;
7604 25 Feb 19 nicklas 164       }
7604 25 Feb 19 nicklas 165       else
7604 25 Feb 19 nicklas 166       {
7604 25 Feb 19 nicklas 167         useLatestConfiguration = options.useLatestConfiguration || 0;
7604 25 Feb 19 nicklas 168         resumeFromBreakPoint = options.resumeFromBreakPoint || 0;
7604 25 Feb 19 nicklas 169       }
7604 25 Feb 19 nicklas 170     }
7604 25 Feb 19 nicklas 171     var url = 'index.jsp?ID='+App.getSessionId();
7604 25 Feb 19 nicklas 172     url += '&cmd=RestartJob&item_id='+jobId;
7604 25 Feb 19 nicklas 173     url += '&useLatestConfiguration='+useLatestConfiguration;
7604 25 Feb 19 nicklas 174     url += '&resumeFromBreakPoint='+resumeFromBreakPoint;
7604 25 Feb 19 nicklas 175     if (clearDryRun) url += '&clearDryRun=' + clearDryRun;
7604 25 Feb 19 nicklas 176     location.replace(url);
7604 25 Feb 19 nicklas 177   }
7604 25 Feb 19 nicklas 178
7604 25 Feb 19 nicklas 179   jobs.reconfigureJob = function()
7604 25 Feb 19 nicklas 180   {
7604 25 Feb 19 nicklas 181     var jobId = Data.get('page-data', 'item-id');
7604 25 Feb 19 nicklas 182     var url = '../../common/plugin/index.jsp?ID='+App.getSessionId();
7604 25 Feb 19 nicklas 183     url += '&cmd=ConfigureJob&job_id='+jobId;
7604 25 Feb 19 nicklas 184     location.replace(url);
7604 25 Feb 19 nicklas 185   }
7604 25 Feb 19 nicklas 186
7604 25 Feb 19 nicklas 187   jobs.sendProgressUpdateRequest = function()
7604 25 Feb 19 nicklas 188   {
7604 25 Feb 19 nicklas 189     var jobId = Data.get('page-data', 'item-id');
7604 25 Feb 19 nicklas 190     var url = 'ajax.jsp?ID='+App.getSessionId();
7604 25 Feb 19 nicklas 191     url += '&cmd=GetProgress&item_id='+jobId+'&'+Math.random();
7604 25 Feb 19 nicklas 192     var request = Ajax.getXmlHttpRequest();
7604 25 Feb 19 nicklas 193     request.open("GET", url, true);
7604 25 Feb 19 nicklas 194     Ajax.setReadyStateHandler(request, jobs.progressUpdateCallback);
7604 25 Feb 19 nicklas 195     request.send(null);
7604 25 Feb 19 nicklas 196   }
7604 25 Feb 19 nicklas 197   
7604 25 Feb 19 nicklas 198   jobs.progressUpdateCallback = function(request)
7604 25 Feb 19 nicklas 199   {
7604 25 Feb 19 nicklas 200     var progress = JSON.parse(request.responseText);
7604 25 Feb 19 nicklas 201     var nextAction = jobs.sendProgressUpdateRequest;
7604 25 Feb 19 nicklas 202     var nextTimeout = 1500;
7604 25 Feb 19 nicklas 203     if (progress && progress.status == 'ok')
7604 25 Feb 19 nicklas 204     {
7604 25 Feb 19 nicklas 205       var status = progress.jobStatus;
7604 25 Feb 19 nicklas 206       var message = progress.message;
7604 25 Feb 19 nicklas 207       var percentComplete = progress.percentComplete;
7604 25 Feb 19 nicklas 208       var runningTime = progress.runningTime;
7604 25 Feb 19 nicklas 209       
7604 25 Feb 19 nicklas 210       if (status != Data.get('page-data', 'job-status')) 
7604 25 Feb 19 nicklas 211       {
7604 25 Feb 19 nicklas 212         nextAction = App.reloadWindow;
7604 25 Feb 19 nicklas 213         nextTimeout = 100;
7604 25 Feb 19 nicklas 214       }
7604 25 Feb 19 nicklas 215       if (status == 'EXECUTING' || status == 'ABORTING')
7604 25 Feb 19 nicklas 216       {
7604 25 Feb 19 nicklas 217         jobs.displayProgress(percentComplete, message, runningTime);
7604 25 Feb 19 nicklas 218       }
7604 25 Feb 19 nicklas 219     }
7604 25 Feb 19 nicklas 220     setTimeout(nextAction, nextTimeout);
7604 25 Feb 19 nicklas 221   }
7604 25 Feb 19 nicklas 222
7604 25 Feb 19 nicklas 223   jobs.displayProgress = function(percentDone, message, runningTime)
7604 25 Feb 19 nicklas 224   {
7604 25 Feb 19 nicklas 225     // Percent complete
7604 25 Feb 19 nicklas 226     var doneElement = Doc.element('percentDone');
7604 25 Feb 19 nicklas 227     var remainElement = Doc.element('percentRemain');
7604 25 Feb 19 nicklas 228     var unknownElement = Doc.element('percentUnknown');
7604 25 Feb 19 nicklas 229     if (percentDone == -1)
7604 25 Feb 19 nicklas 230     {
7604 25 Feb 19 nicklas 231       Doc.hide('percentDone');
7604 25 Feb 19 nicklas 232       Doc.hide('percentRemain');
7604 25 Feb 19 nicklas 233       Doc.show('percentUnknown');
7604 25 Feb 19 nicklas 234       Doc.hide('percentText');
7604 25 Feb 19 nicklas 235     }
7604 25 Feb 19 nicklas 236     else
7604 25 Feb 19 nicklas 237     {
7604 25 Feb 19 nicklas 238       Doc.hide('percentUnknown');
7604 25 Feb 19 nicklas 239       Doc.show('percentText');
7604 25 Feb 19 nicklas 240       Doc.element('percentText').innerHTML = percentDone+'%';
7604 25 Feb 19 nicklas 241       doneElement.style.width = percentDone+'%';
7604 25 Feb 19 nicklas 242       remainElement.style.width = (100-percentDone)+'%';
7604 25 Feb 19 nicklas 243       Doc.showHide('percentDone', percentDone > 0);
7604 25 Feb 19 nicklas 244       Doc.showHide('percentRemain', percentDone < 100);
7604 25 Feb 19 nicklas 245     }
7604 25 Feb 19 nicklas 246
7604 25 Feb 19 nicklas 247     // Message
7604 25 Feb 19 nicklas 248     Doc.element('message').innerHTML = message;
7604 25 Feb 19 nicklas 249
7604 25 Feb 19 nicklas 250     // Running time
7604 25 Feb 19 nicklas 251     Doc.element('runningTime').innerHTML = runningTime;
7604 25 Feb 19 nicklas 252   }
7604 25 Feb 19 nicklas 253   
7604 25 Feb 19 nicklas 254   return jobs;
7604 25 Feb 19 nicklas 255 }();
7604 25 Feb 19 nicklas 256
7604 25 Feb 19 nicklas 257 Doc.onLoad(Jobs.initPage);