| | |
| | | |
| | | private static ThreadJob threadJob ; |
| | | |
| | | protected void resetDemo(){ |
| | | if(threadJob != null){ |
| | | threadJob.stop() ; |
| | | threadJob = null ; |
| | | } |
| | | cache = null ; |
| | | } |
| | | |
| | | protected void demo(){ |
| | | if(cache == null){ |
| | | UgRtuTask tpo = this.sv.selectLastTask() ; |
| | |
| | | threadJob = new ThreadJob() { |
| | | @Override |
| | | public Object execute() throws Exception { |
| | | runDemo() ; |
| | | while(!this.stop){ |
| | | if(!runDemo()){ |
| | | this.stop = true ; |
| | | }else{ |
| | | try { |
| | | Thread.sleep(500); |
| | | } catch (InterruptedException e) { |
| | | e.printStackTrace(); |
| | | } |
| | | } |
| | | } |
| | | return null; |
| | | } |
| | | }; |
| | |
| | | } |
| | | } |
| | | } |
| | | private void runDemo(){ |
| | | boolean hasRunning = true ; |
| | | while (true){ |
| | | for(UpgradeRtu rtu : cache.ugRtuStateList){ |
| | | this.rtuUpgrade(rtu) ; |
| | | } |
| | | hasRunning = this.statisticsNowUpgradeState() ; |
| | | if(!hasRunning){ |
| | | break ; |
| | | } |
| | | try { |
| | | Thread.sleep(500); |
| | | } catch (InterruptedException e) { |
| | | e.printStackTrace(); |
| | | } |
| | | private boolean runDemo(){ |
| | | for(UpgradeRtu rtu : cache.ugRtuStateList){ |
| | | this.rtuUpgrade(rtu) ; |
| | | } |
| | | return this.statisticsNowUpgradeState() ; |
| | | } |
| | | private void rtuUpgrade(UpgradeRtu rtu){ |
| | | if(rtu.lastDownDt == null){ |
| | |
| | | return ; |
| | | } |
| | | int n = Integer.parseInt(new CreateRandom().create(2)) ; |
| | | if(n == 44 || n == 45 || n == 54){ |
| | | if(n == 4 |
| | | || n == 14 |
| | | || n == 24 |
| | | || n == 34 |
| | | || n == 44 |
| | | || n == 54 |
| | | || n == 64 |
| | | || n == 74 |
| | | || n == 84 |
| | | || n == 95 |
| | | || n == 45 |
| | | || n == 46 |
| | | || n == 47 |
| | | || n == 48 |
| | | || n == 49){ |
| | | if(rtu.currentPackage == 1){ |
| | | //1包死 |
| | | rtu.state = UpgradeRtu.STATE_FAILONE ; |
| | | return ; |
| | | } |
| | | } |
| | | |
| | | if(n == 40 |
| | | || n == 41 |
| | | || n == 42 |
| | | || n == 43 |
| | | || n == 44 |
| | | || n == 45){ |
| | | if(rtu.currentPackage != 1){ |
| | | //升死 |
| | | rtu.state = UpgradeRtu.STATE_FAIL ; |
| | | return ; |
| | | } |
| | | } |
| | | |
| | | if(rtu.currentPackage == rtu.totalPackage){ |
| | | //升级结束 |
| | | rtu.state = UpgradeRtu.STATE_SUCCESS ; |
| | |
| | | return ; |
| | | } |
| | | |
| | | rtu.state = UpgradeRtu.STATE_RUNNING ; |
| | | rtu.currentPackage += 1 ; |
| | | rtu.currentRamAddr = 0x00 + UpgradeRtu.RAMADDRADD ; |
| | | rtu.lastDownDt = DateTime.yyyy_MM_dd_HH_mm_ss() ; |
| | | rtu.reTryTimes = 0 ; |
| | | rtu.isOver = false ; |
| | | if(rtu.state != UpgradeRtu.STATE_FAILONE && |
| | | rtu.state != UpgradeRtu.STATE_FAIL){ |
| | | rtu.state = UpgradeRtu.STATE_RUNNING ; |
| | | rtu.currentPackage += 1 ; |
| | | rtu.currentRamAddr = 0x00 + UpgradeRtu.RAMADDRADD ; |
| | | rtu.lastDownDt = DateTime.yyyy_MM_dd_HH_mm_ss() ; |
| | | rtu.reTryTimes = 0 ; |
| | | rtu.isOver = false ; |
| | | } |
| | | |
| | | } |
| | | |
| | | /** |
| | |
| | | boolean hasRunning = false ; |
| | | if(cache.ugRtuStateList != null && cache.ugRtuStateList.size() > 0){ |
| | | cache.ugOverallState.init(); |
| | | cache.ugOverallState.rtuTotal = cache.ugRtuStateList.size() ; |
| | | for(UpgradeRtu rtu : cache.ugRtuStateList){ |
| | | if(rtu.state == UpgradeRtu.STATE_OFFLINE){ |
| | | cache.ugOverallState.offLineTotal ++ ; |