123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Diagnostics;
- using Aitex.Core.RT.Log;
- using MECF.Framework.Common.Equipment;
- using CyberX8_Core;
- using Aitex.Core.RT.Routine;
- using System.Threading;
- namespace MECF.Framework.Common.Routine
- {
- public class RoutineRunner
- {
- public RState Status => _runnerState;
- private bool IsSubStepRunning(Enum id) => _runnerState == RState.Running && _subState == RState.Running && (_curStep != null && _curStep.GetHashCode() == id.GetHashCode());
- private bool bAllowSubStepStart(Enum id) => _runnerState == RState.Running && _subState == RState.End && !_steps.Contains(id) && _isLoopMode == false;
- private bool bAllowLoopSubStepStart(Enum id) => _runnerState == RState.Running && _subState == RState.End && !_steps.Contains(id) && _isLoopMode;
- public int LoopCounter => _loopCounter;
- public long StepElapsedMS => _subStepTimer.ElapsedMilliseconds;
- private RState _subState = RState.Init;
- private Stack<Enum> _steps = new Stack<Enum>();
- private Stack<Enum> _loopSteps = new Stack<Enum>();
- enum InvalidStep { Invalid = 0x7FFFFFFF, };
- public Enum CurrentStep => _curStep;
- private Enum _curStep = InvalidStep.Invalid;
- private RState _runnerState = RState.Init;
- private string _name;
- private string _loopName;
- private string _module;
- // 缺省最大超时 10 分钟, delay 5 秒
- private const int _defaultTimeout = 600000;
- private const int _defaultDelay = 200;
- private const int _defaultDelay_5s = 5000;
- //用于计时
- Stopwatch _subStepTimer = new Stopwatch();
- private bool _isLoopMode = false;
- private int _loopCounterSP = 0;
- private int _loopCounter = 0;
- private int _subRoutineIndex = -1;
- private IRoutine _subRoutine = null;
- static private int _RunnerToken = 0;
- private Stopwatch _stopwatch = new Stopwatch();
- private string _errorMsg = "";
- public string ErrorMsg { get{ return _errorMsg; } set { _errorMsg = value; } }
- /// <summary>
- /// 完成时长
- /// </summary>
- public long ElapsedMS =>_stopwatch.ElapsedMilliseconds;
- public RoutineRunner()
- {
- _runnerState = RState.Init;
- }
- public void Reset()
- {
- _runnerState = RState.Init;
- _subState = RState.Init;
- _isLoopMode = false;
- _steps.Clear();
- _loopSteps.Clear();
- _stopwatch.Reset();
- _subStepTimer.Reset();
- _errorMsg = "";
- }
- public RState Start(ModuleName module, string name)
- {
- Reset();
- _module = module.ToString();
- _name = $"{name} (Token:{_RunnerToken++})";
- _runnerState = RState.Running;
- _subState = RState.End;
- _stopwatch.Restart();
- Notify("开始");
- return _runnerState;
- }
- public RState Start(string module, string name)
- {
- Reset();
- _module = module;
- _name = $"{name} (Token:{_RunnerToken++})";
- _runnerState = RState.Running;
- _subState = RState.End;
- _stopwatch.Restart();
- Notify("开始");
- return _runnerState;
- }
- /// <summary>
- /// 重试
- /// </summary>
- /// <param name="id"></param>
- /// <returns></returns>
- public RState Retry(Enum id,List<Enum> _preStepIds,string module, string name)
- {
- Reset();
- foreach (Enum item in _preStepIds)
- {
- _steps.Push(item);
- }
- _module = module;
- _name = $"{name} (Token:{_RunnerToken++})";
- _runnerState = RState.Running;
- _subState = RState.End;
- _stopwatch.Restart();
- Notify($"{id} Retry");
- _curStep = id;
- return _runnerState;
- }
- public void Stop(string reason,bool error=false)
- {
- if (Status == RState.Running)
- {
- Alarm(reason, error);
- }
- _runnerState = _subState = RState.Failed;
- _stopwatch.Stop();
- }
- public RoutineRunner Run(Enum id, Func<bool> action, Func<bool> condition, int timeout = _defaultTimeout,bool error=true)
- {
- if (bAllowSubStepStart(id))
- {
- startNewStep(id, action,error);
- }
- else if(IsSubStepRunning(id))
- {
- if (condition())
- {
- _subState = RState.End;
- }
- else if(_subStepTimer.ElapsedMilliseconds >= timeout)
- {
- Alarm($"Step:{id} 超时",error);
- _runnerState = _subState = RState.Timeout;
- _subStepTimer.Reset();
- }
- }
- return this;
- }
- public RoutineRunner RunConditionSubRoutine(Enum id,Func<int> routeIndexAction, IRoutine[] routines, object[] objects)
- {
- if (bAllowSubStepStart(id))
- {
- StartNewStepConditionRoutine(id, routeIndexAction, routines, objects);
- }
- else if(IsSubStepRunning(id))
- {
- if(_subRoutine==null)
- {
- _subState = RState.End;
- }
- else
- {
- if (objects.Length > _subRoutineIndex && _subRoutineIndex != -1)
- {
- _subRoutine.Start(objects[_subRoutineIndex]);
- }
- else
- {
- _subRoutine.Start();
- }
- _subState = RState.End;
- }
- }
- return this;
- }
- public RoutineRunner WaitConditionSubRoutine(Enum id)
- {
- if(bAllowSubStepStart(id))
- {
- Notify($"Step: {id} start ---");
- _steps.Push(id);
- _curStep = id;
- _subState = RState.Running;
- _subStepTimer.Restart();
- }
- else if(IsSubStepRunning(id))
- {
- if(_subRoutine==null)
- {
- _subState= RState.End;
- _subRoutineIndex = -1;
- }
- else
- {
- _subState = _subRoutine.Monitor();
- if(_subState==RState.End||_subState==RState.Failed||_subState==RState.Timeout)
- {
- _subRoutine = null;
- _subRoutineIndex = -1;
- }
- }
- }
- return this;
- }
- public void StartNewStepConditionRoutine(Enum id,Func<int> routeIndexAction, IRoutine[] routines, object[] objects)
- {
- _subRoutineIndex = routeIndexAction();
- if (routines.Length>_subRoutineIndex&&_subRoutineIndex!=-1)
- {
- _subRoutine = routines[_subRoutineIndex];
- }
- else
- {
- _subRoutine = null;
- }
- Notify($"Step: {id} start ---");
- _steps.Push(id);
- _curStep = id;
- _subState = RState.Running;
- _subStepTimer.Restart();
- }
- public RoutineRunner Run(Enum id, Func<bool> action, Func<bool> condition,Func<bool> failedCondition, int timeout = _defaultTimeout,bool error=true)
- {
- if (bAllowSubStepStart(id))
- {
- startNewStep(id, action);
- }
- else if (IsSubStepRunning(id))
- {
- if (condition())
- {
- _subState = RState.End;
- }
- else if(failedCondition())
- {
- _runnerState= _subState = RState.Failed;
- }
- else
- {
- if (_subStepTimer.ElapsedMilliseconds >= timeout)
- {
- Alarm($"Step:{id} 超时", error);
- _runnerState = _subState = RState.Timeout;
- _subStepTimer.Reset();
- }
- }
- }
- return this;
- }
- public RoutineRunner RunIf(Enum id, bool bRun, Func<bool> action, Func<bool> condition, int timeout = _defaultTimeout)
- {
- if(bRun)
- {
- return Run(id, action, condition, timeout);
- }
- return this;
- }
- public RoutineRunner Run(Enum id, Func<bool> action, int delayMS = _defaultDelay)
- {
- if (bAllowSubStepStart(id))
- {
- startNewStep(id, action);
- }
- else if (IsSubStepRunning(id))
- {
- if (_subStepTimer.ElapsedMilliseconds > delayMS)
- {
- _subState = RState.End;
- }
- }
- return this;
- }
- public RoutineRunner RunDelay(Enum id, Func<bool> action, int delayMS = _defaultDelay)
- {
- if (bAllowSubStepStart(id))
- {
- startNewStep(id, () => { return true; });
- }
- else if (IsSubStepRunning(id))
- {
- if (_subStepTimer.ElapsedMilliseconds > delayMS)
- {
- if (!action())
- {
- Alarm($"Step: {id} Failed ");
- _runnerState = _subState = RState.Failed;
- _subStepTimer.Reset();
- }
- else
- {
- _subState = RState.End;
- }
- }
- }
- return this;
- }
- public RoutineRunner RunIf(Enum id, bool bRun, Func<bool> action, int delayMS = _defaultDelay)
- {
- if(bRun)
- {
- return Run(id, action, delayMS);
- }
- return this;
- }
- public RoutineRunner End(Enum id, Func<bool> action, Func<bool> condition, int timeout = _defaultTimeout)
- {
- if (bAllowSubStepStart(id))
- {
- startNewStep(id, action);
- }
- else if (IsSubStepRunning(id))
- {
- if (condition())
- {
- Notify($"结束");
- _runnerState = RState.End;
- _subState = RState.End;
- }
- else
- {
- if (_subStepTimer.ElapsedMilliseconds > timeout)
- {
- Alarm($"Step:{id} 超时");
- _runnerState = RState.Failed;
- _subState = RState.Timeout;
- }
- }
- }
- return this;
- }
- public RoutineRunner End(Enum id, Func<bool> action, int delayMS = _defaultDelay)
- {
- if (bAllowSubStepStart(id))
- {
- startNewStep(id, action);
- }
- else if (IsSubStepRunning(id))
- {
- if (_subStepTimer.ElapsedMilliseconds > delayMS)
- {
- Notify($"结束");
- _runnerState = RState.End;
- _subState = RState.End;
- _stopwatch.Stop();
- }
- }
- return this;
- }
- public RoutineRunner Delay(Enum id, int delayMS = _defaultDelay_5s)
- {
- return Run(id, () => { return true; }, delayMS);
- }
- public RoutineRunner DelayIf(Enum id, bool bRun, int delayMS = _defaultDelay_5s)
- {
- if (bRun)
- {
- return Run(id, () => { return true; }, delayMS);
- }
- return this;
- }
- public RoutineRunner Wait(Enum id, Func<bool> condition, int timeout = _defaultTimeout)
- {
- return Run(id, () => { return true; }, condition, timeout);
- }
- public RoutineRunner WaitIf (Enum id, bool bRun, Func<bool> condition, int timeout = _defaultTimeout)
- {
- if (bRun)
- {
- return Run(id, () => { return true; }, condition, timeout);
- }
- return this;
- }
- public RoutineRunner WaitWithStopCondition(Enum id, Func<bool> condition,Func<bool> stopCondition,int timeout=_defaultTimeout,bool error=true)
- {
- return Run(id, () => { return true; }, condition, stopCondition,timeout,error);
- }
- public RoutineRunner WaitWithStopConditionIf(Enum id, bool bRun, Func<bool> condition, Func<bool> stopCondition, int timeout = _defaultTimeout, bool error = true)
- {
- if (bRun)
- {
- return Run(id, () => { return true; }, condition, stopCondition, timeout, error);
- }
- return this;
- }
- public RoutineRunner LoopWait(Enum id,Func<bool> action,Func<bool> condition,Func<bool> fail)
- {
- if (bAllowSubStepStart(id))
- {
- startNewStep(id, action);
- }
- else if (IsSubStepRunning(id))
- {
- if(condition())
- {
- _subState = RState.End;
- }
- else if(fail())
- {
- Notify($"结束");
- _runnerState = RState.End;
- _subState = RState.End;
- }
- }
- return this;
- }
- public RoutineRunner LoopStart(Enum id, string name, int cycleCount, Func<bool> action, Func<bool> condition, int timeout = _defaultTimeout)
- {
- if(bAllowSubStepStart(id))
- {
- _loopName = name;
- _loopCounterSP = cycleCount;
- _loopCounter = 0;
- _isLoopMode = true;
- startNewLoopStep(id, action);
- }
- else if(bAllowLoopSubStepStart(id))
- {
- startNewLoopStep(id, action);
- }
- else if(IsSubStepRunning(id))
- {
- if (condition())
- {
- _subState = RState.End;
- }
- else if (_subStepTimer.ElapsedMilliseconds >= timeout)
- {
- Alarm($"Step:{id} 超时");
- _runnerState = _subState = RState.Timeout;
- _subStepTimer.Reset();
- }
- }
- return this;
- }
- public RoutineRunner LoopStart(Enum id, string name, int cycleCount, Func<bool> action, int delayMS = _defaultDelay)
- {
- if (bAllowSubStepStart(id))
- {
- _loopName = name;
- _loopCounterSP = cycleCount;
- _loopCounter = 0;
- _isLoopMode = true;
- startNewLoopStep(id, action);
- }
- else if (bAllowLoopSubStepStart(id))
- {
- startNewLoopStep(id, action);
- }
- else if (IsSubStepRunning(id))
- {
- if (_subStepTimer.ElapsedMilliseconds > delayMS)
- {
- _subState = RState.End;
- }
- }
-
- return this;
- }
- public RoutineRunner LoopRun(Enum id, Func<bool> action, Func<bool> condition, int timeout = _defaultTimeout)
- {
- if (bAllowLoopSubStepStart(id))
- {
- startNewLoopStep(id, action);
- }
- else if (IsSubStepRunning(id))
- {
- if (condition())
- {
- _subState = RState.End;
- }
- else if (_subStepTimer.ElapsedMilliseconds >= timeout)
- {
- Alarm($"Step:{id} 超时");
- _runnerState = _subState = RState.Timeout;
- _subStepTimer.Reset();
- }
- }
- return this;
- }
- public RoutineRunner LoopRunIf(Enum id, bool bRun, Func<bool> action, Func<bool> condition, int timeout = _defaultTimeout)
- {
- if(bRun)
- {
- return LoopRun(id, action, condition, timeout);
- }
- return this;
- }
- public RoutineRunner LoopRunIfWithStopStatus(Enum id, bool bRun,Func<bool> condition, Func<bool> failedCondition, int timeout = _defaultTimeout)
- {
- if (bRun)
- {
- if (bAllowLoopSubStepStart(id))
- {
- startNewLoopStep(id, () => { return true; });
- }
- else if (IsSubStepRunning(id))
- {
- if (condition())
- {
- _subState = RState.End;
- }
- else if (failedCondition())
- {
- _runnerState = _subState = RState.Failed;
- }
- else
- {
- if (_subStepTimer.ElapsedMilliseconds >= timeout)
- {
- Alarm($"Step:{id} 超时", true);
- _runnerState = _subState = RState.Timeout;
- _subStepTimer.Reset();
- }
- }
- }
- }
- return this;
- }
- public RoutineRunner LoopRun(Enum id, Func<bool> action, int delayMS = _defaultDelay)
- {
- if (bAllowLoopSubStepStart(id))
- {
- startNewLoopStep(id, action);
- }
- else if (IsSubStepRunning(id))
- {
- if (_subStepTimer.ElapsedMilliseconds > delayMS)
- {
- _subState = RState.End;
- }
- }
- return this;
- }
- public RoutineRunner LoopRunOnlyTimeOutFault(Enum id, Func<bool> action, int delayMS = _defaultDelay)
- {
- if (bAllowLoopSubStepStart(id))
- {
- startNewLoopStep(id, () => { return true; });
- }
- else if (IsSubStepRunning(id))
- {
- if (_subStepTimer.ElapsedMilliseconds > delayMS)
- {
- if (!action())
- {
- Alarm($"{_loopCounter + 1}th [{_loopName}] Loop Step: {id} failed");
- _runnerState = _subState = RState.Failed;
- _subStepTimer.Reset();
- }
- else
- {
- _subState = RState.End;
- }
- }
- }
- return this;
- }
- public RoutineRunner LoopRunIfOnlyTimeOutFault(Enum id, bool bRun, Func<bool> action, int delayMS = _defaultDelay)
- {
- if (bRun)
- {
- return LoopRunOnlyTimeOutFault(id, action, delayMS);
- }
- return this;
- }
- public RoutineRunner LoopRunIf(Enum id, bool bRun, Func<bool> action, int delayMS = _defaultDelay)
- {
- if(bRun)
- {
- return LoopRun(id, action, delayMS);
- }
- return this;
- }
- public RoutineRunner LoopRunWithStopStatus(Enum id, Func<bool> condition, Func<bool> failedCondition, int timeout = _defaultTimeout)
- {
- if (bAllowLoopSubStepStart(id))
- {
- startNewLoopStep(id, () => { return true; });
- }
- else if (IsSubStepRunning(id))
- {
- if (condition())
- {
- _subState = RState.End;
- }
- else if (failedCondition())
- {
- _runnerState = _subState = RState.Failed;
- }
- else
- {
- if (_subStepTimer.ElapsedMilliseconds >= timeout)
- {
- Alarm($"Step:{id} 超时", true);
- _runnerState = _subState = RState.Timeout;
- _subStepTimer.Reset();
- }
- }
- }
- return this;
- }
-
- public RoutineRunner LoopEnd(Enum id, Func<bool> action, Func<bool> condition, int timeout = _defaultTimeout)
- {
- if (bAllowLoopSubStepStart(id))
- {
- startNewLoopStep(id, action);
- }
- else if (IsSubStepRunning(id))
- {
- if (condition())
- {
- Notify($"{_loopCounter + 1}th [{_loopName}] Loop End");
- _subState = RState.End;
- _loopCounter++;
- if (_loopCounter >= _loopCounterSP)
- {
- foreach (var lid in _loopSteps)
- _steps.Push(lid);
- _loopSteps.Clear();
- _isLoopMode = false;
- }
- }
- else if (_subStepTimer.ElapsedMilliseconds >= timeout)
- {
- Alarm($"Step:{id} 超时");
- _runnerState = _subState = RState.Timeout;
- _subStepTimer.Reset();
- }
- }
- return this;
- }
- public RoutineRunner LoopEnd(Enum id, Func<bool> action, int delayMS = _defaultDelay)
- {
- if (bAllowLoopSubStepStart(id))
- {
- startNewLoopStep(id, action);
- }
- else if (IsSubStepRunning(id))
- {
- if (_subStepTimer.ElapsedMilliseconds > delayMS)
- {
- Notify($"{_loopCounter + 1}th [{_loopName}] Loop End");
- _subState = RState.End;
- _loopCounter++;
- if (_loopCounter >= _loopCounterSP)
- {
- foreach (var lid in _loopSteps)
- _steps.Push(lid);
- _loopSteps.Clear();
- _isLoopMode = false;
- }
- }
- }
- return this;
- }
- public RoutineRunner LoopDelay(Enum id, int delayMS)
- {
- return LoopRun(id, () => { return true; }, delayMS);
- }
- public RoutineRunner LoopRunDelay(Enum id, Func<bool> action, int delayMS)
- {
- return LoopRun(id, action, delayMS);
- }
- public RoutineRunner LoopWait(Enum id, Func<bool> condition, int timeout = _defaultTimeout)
- {
- return LoopRun(id, () => { return true; }, condition, timeout);
- }
- public RoutineRunner LoopWaitIf(Enum id, bool bRun, Func<bool> condition, int timeout = _defaultTimeout)
- {
- if (bRun)
- {
- return LoopRun(id, () => { return true; }, condition, timeout);
- }
- return this;
-
- }
- public RoutineRunner LoopRetryStart(Enum id,string name, int cycleCount, Func<bool> action, int delayMS = _defaultDelay)
- {
- if (bAllowSubStepStart(id))
- {
- _loopName = name;
- _loopCounterSP = cycleCount;
- _loopCounter = 0;
- _isLoopMode = true;
- _loopSteps.Clear();
- startNewLoopStep(id, action);
- }
- else if (bAllowLoopSubStepStart(id)&&!_loopSteps.Contains(id))
- {
- startNewLoopStep(id, action);
- }
- else if (IsSubStepRunning(id))
- {
- if (_subStepTimer.ElapsedMilliseconds > delayMS)
- {
- _subState = RState.End;
- }
- }
- return this;
- }
- public RoutineRunner LoopRetrySecondRun(Enum id, Func<bool> action, Func<bool> condition, int timeout = _defaultTimeout)
- {
- if (_loopCounter > _loopCounterSP)
- {
- return this;
- }
- if (bAllowLoopSubStepStart(id)&&_loopCounter>=1&&_loopSteps.Count!=0&&!_loopSteps.Contains(id))
- {
- startNewLoopStep(id, action);
- }
- else if (IsSubStepRunning(id))
- {
- if (condition())
- {
- _subState = RState.End;
- }
- else if (_subStepTimer.ElapsedMilliseconds >= timeout)
- {
- Alarm($"Step:{id} 超时");
- _runnerState = _subState = RState.Timeout;
- _subStepTimer.Reset();
- }
- }
- return this;
- }
- public RoutineRunner LoopRetrySecondRunWithStopStatus(Enum id, Func<bool> condition, Func<bool> failedCondition, int timeout = _defaultTimeout)
- {
- if (_loopCounter > _loopCounterSP)
- {
- return this;
- }
- if (bAllowLoopSubStepStart(id)&&_loopCounter>=1 && _loopSteps.Count != 0 && !_loopSteps.Contains(id))
- {
- startNewLoopStep(id, () => { return true; });
- }
- else if (IsSubStepRunning(id))
- {
- if (condition())
- {
- _subState = RState.End;
- }
- else if (failedCondition())
- {
- _runnerState = _subState = RState.Failed;
- }
- else
- {
- if (_subStepTimer.ElapsedMilliseconds >= timeout)
- {
- Alarm($"Step:{id} 超时", true);
- _runnerState = _subState = RState.Timeout;
- _subStepTimer.Reset();
- }
- }
- }
- return this;
- }
- public RoutineRunner LoopRetryRun(Enum id, Func<bool> action, Func<bool> condition, int timeout = _defaultTimeout)
- {
- if (_loopCounter > _loopCounterSP)
- {
- return this;
- }
-
- if (bAllowLoopSubStepStart(id) && _loopSteps.Count != 0 && !_loopSteps.Contains(id))
- {
- startNewLoopStep(id, action);
- }
- else if (IsSubStepRunning(id))
- {
- if (condition())
- {
- _subState = RState.End;
- }
- else if (_subStepTimer.ElapsedMilliseconds >= timeout)
- {
- Alarm($"Step:{id} 超时");
- _runnerState = _subState = RState.Timeout;
- _subStepTimer.Reset();
- }
- }
- return this;
- }
- public RoutineRunner LoopRetryRunBack(Enum id, Func<bool> action, Func<bool> condition, int timeout = _defaultTimeout)
- {
- if (_loopCounter > _loopCounterSP)
- {
- return this;
- }
- if (bAllowLoopSubStepStart(id) && _loopSteps.Count != 0 && !_loopSteps.Contains(id))
- {
- startNewLoopStep(id, action);
- }
- else if (IsSubStepRunning(id))
- {
- if (condition())
- {
- _subState = RState.End;
- }
- else if (_subStepTimer.ElapsedMilliseconds >= timeout)
- {
- _subState = RState.End;
- _loopCounter++;
- if (_loopCounter <= _loopCounterSP)
- {
- _loopSteps.Clear();
- }
- _subStepTimer.Reset();
- }
- }
- return this;
- }
- public RoutineRunner LoopRetryWait(Enum id, Func<bool> condition, int timeout = _defaultTimeout)
- {
- if (_loopCounter > _loopCounterSP)
- {
- return this;
- }
- return LoopRetryRun(id, () => { return true; }, condition, timeout);
- }
- public RoutineRunner LoopRetryWaitBack(Enum id, Func<bool> condition, int timeout = _defaultTimeout)
- {
- if (_loopCounter > _loopCounterSP)
- {
- return this;
- }
- if (bAllowLoopSubStepStart(id) && _loopSteps.Count != 0 && !_loopSteps.Contains(id))
- {
- startNewLoopStep(id, () => { return true; });
- }
- else if (IsSubStepRunning(id))
- {
- if (condition())
- {
- _subState = RState.End;
- }
- else if (_subStepTimer.ElapsedMilliseconds >= timeout)
- {
- _subState = RState.End;
- _loopCounter++;
- if (_loopCounter <= _loopCounterSP)
- {
- _loopSteps.Clear();
- }
- _subStepTimer.Reset();
- }
- }
- return this;
- }
- public RoutineRunner LoopRetryDelay(Enum id, int delayMS)
- {
- return LoopRetryRun(id, () => { return true; },()=> { return true; }, delayMS);
- }
- public RoutineRunner LoopRetryRunWithStopStatus(Enum id, Func<bool> condition, Func<bool> failedCondition, int timeout = _defaultTimeout)
- {
- if (_loopCounter > _loopCounterSP)
- {
- return this;
- }
- if (bAllowLoopSubStepStart(id) && _loopSteps.Count != 0 && !_loopSteps.Contains(id))
- {
- startNewLoopStep(id, () => { return true; });
- }
- else if (IsSubStepRunning(id))
- {
- if (condition())
- {
- _subState = RState.End;
- }
- else if (failedCondition())
- {
- _runnerState = _subState = RState.Failed;
- }
- else
- {
- if (_subStepTimer.ElapsedMilliseconds >= timeout)
- {
- Alarm($"Step:{id} 超时", true);
- _runnerState = _subState = RState.Timeout;
- _subStepTimer.Reset();
- }
- }
- }
- return this;
- }
- public RoutineRunner LoopRetryRunWithStopStatusBack(Enum id, Func<bool> condition, Func<bool> failedCondition, int timeout = _defaultTimeout)
- {
- if (_loopCounter > _loopCounterSP)
- {
- return this;
- }
- if (bAllowLoopSubStepStart(id) && _loopSteps.Count != 0 && !_loopSteps.Contains(id))
- {
- startNewLoopStep(id, () => { return true; });
- }
- else if (IsSubStepRunning(id))
- {
- if (condition())
- {
- _subState = RState.End;
- }
- else if (failedCondition())
- {
- _subState = RState.End;
- _loopCounter++;
- if (_loopCounter <= _loopCounterSP)
- {
- _loopSteps.Clear();
- }
- _subStepTimer.Reset();
- }
- else
- {
- if (_subStepTimer.ElapsedMilliseconds >= timeout)
- {
- _subState = RState.End;
- _loopCounter++;
- if (_loopCounter <= _loopCounterSP)
- {
- _loopSteps.Clear();
- }
- _subStepTimer.Reset();
- }
- }
- }
- return this;
- }
- public RoutineRunner LoopRetryEnd(Enum id, int delayMS = _defaultDelay)
- {
- if (bAllowLoopSubStepStart(id)&& _loopSteps.Count != 0 && !_loopSteps.Contains(id))
- {
- startNewLoopStep(id, () => { return true; });
- }
- else if (IsSubStepRunning(id))
- {
- foreach (var lid in _loopSteps)
- _steps.Push(lid);
- if (_loopCounter > _loopCounterSP)
- {
- Alarm($"Step:{id} Retry times over {_loopCounterSP}");
- _runnerState = _subState = RState.Timeout;
- _subStepTimer.Reset();
- }
- else
- {
- _subState = RState.End;
- }
- _loopSteps.Clear();
- _isLoopMode = false;
- }
- return this;
- }
- private void startNewStep(Enum id, Func<bool> action,bool error=true)
- {
- if (action())
- {
- Notify($"Step: {id} start ---");
- _steps.Push(id);
- _curStep = id;
- _subState = RState.Running;
- _subStepTimer.Restart();
- }
- else
- {
- Alarm($"Step: {id} failed ",error);
- _runnerState = RState.Failed;
- }
- }
- private void startNewLoopStep(Enum id, Func<bool> action)
- {
- if (action())
- {
- Notify($"{_loopCounter + 1}th [{_loopName}] Loop Step: {id} start ---");
- if (!_loopSteps.Contains(id))
- _loopSteps.Push(id);
- _curStep = id;
- _subState = RState.Running;
- _subStepTimer.Restart();
- }
- else
- {
- Alarm($"{_loopCounter + 1}th [{_loopName}] Loop Step: {id} failed");
- _runnerState = RState.Failed;
- }
- }
- protected void Notify(string message)
- {
- LOG.WriteLog(eEvent.EV_ROUTINE_NOTIFY, _module, _name, message);
- }
- protected void Alarm(string message,bool error=true)
- {
- if (error)
- {
- _errorMsg= message;
- LOG.WriteLog(eEvent.ERR_ROUTINE_FAILED, _module,_name,message);
- }
- else
- {
- LOG.WriteLog(eEvent.EV_ROUTINE_NOTIFY, _module, _name,message);
- }
- }
- }
- static public class HOFs
- {
- public static Func<R> Apply<T1, R>(this Func<T1, R> func, T1 t1)
- => () => func(t1);
- public static Func<R> Apply<T1, T2, R>(this Func<T1, T2, R> func, T1 t1, T2 t2)
- => () => func(t1, t2);
- public static Func<R> Apply<T1, T2, T3, R>(this Func<T1, T2, T3, R> func, T1 t1, T2 t2, T3 t3)
- => () => func(t1, t2, t3);
- public static Func<bool> WrapAction(this Action action)
- => () => { action(); return true; };
- public static Func<bool> WrapAction<T1>(this Action<T1> action, T1 t1)
- => () => { action(t1); return true; };
- public static Func<bool> WrapAction<T1, T2>(this Action<T1, T2> action, T1 t1, T2 t2)
- => () => { action(t1, t2); return true; };
- public static Func<bool> WrapAction<T1, T2, T3>(this Action<T1, T2, T3> action, T1 t1, T2 t2, T3 t3)
- => () => { action(t1, t2, t3); return true; };
- }
- }
|