当前位置: 首页>>代码示例>>C#>>正文


C# ProgramBlock.GetFormattedError方法代码示例

本文整理汇总了C#中HomeGenie.Automation.ProgramBlock.GetFormattedError方法的典型用法代码示例。如果您正苦于以下问题:C# ProgramBlock.GetFormattedError方法的具体用法?C# ProgramBlock.GetFormattedError怎么用?C# ProgramBlock.GetFormattedError使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在HomeGenie.Automation.ProgramBlock的用法示例。


在下文中一共展示了ProgramBlock.GetFormattedError方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Run

        // TODO: v1.1 !!!IMPORTANT!!! move thread allocation and starting to ProgramEngineBase.cs class
        public void Run(ProgramBlock program, string options)
        {
            if (program.IsRunning)
                return;

            if (program.Engine.ProgramThread != null)
            {
                program.Engine.Stop();
                program.IsRunning = false;
            }

            program.IsRunning = true;
            RaiseProgramModuleEvent(program, Properties.PROGRAM_STATUS, "Running");

            program.TriggerTime = DateTime.UtcNow;

            program.Engine.ProgramThread = new Thread(() =>
            {
                MethodRunResult result = null;
                try
                {
                    result = program.Run(options);
                }
                catch (Exception ex)
                {
                    result = new MethodRunResult();
                    result.Exception = ex;
                }
                //
                if (result != null && result.Exception != null && !result.Exception.GetType().Equals(typeof(System.Reflection.TargetException)))
                {
                    // runtime error occurred, script is being disabled
                    // so user can notice and fix it
                    List<ProgramError> error = new List<ProgramError>() { program.GetFormattedError(result.Exception, false) };
                    program.ScriptErrors = JsonConvert.SerializeObject(error);
                    program.IsEnabled = false;
                    RaiseProgramModuleEvent(program, Properties.RUNTIME_ERROR, "CR: " + result.Exception.Message.Replace('\n', ' ').Replace('\r', ' '));
                }
                program.IsRunning = false;
                program.Engine.ProgramThread = null;
                RaiseProgramModuleEvent(program, Properties.PROGRAM_STATUS, "Idle");
            });
            //
            if (program.ConditionType == ConditionType.Once)
            {
                program.IsEnabled = false;
            }
            //
            try
            {
                program.Engine.ProgramThread.Start();
            }
            catch
            {
                program.Engine.Stop();
                program.IsRunning = false;
                RaiseProgramModuleEvent(program, Properties.PROGRAM_STATUS, "Idle");
            }
            //
            //Thread.Sleep(100);
        }
开发者ID:asm7100,项目名称:HomeGenie,代码行数:62,代码来源:ProgramManager.cs

示例2: WillProgramRun

 private bool WillProgramRun(ProgramBlock program)
 {
     bool isConditionSatisfied = false;
     // evaluate and get result from the code
     lock (program.OperationLock)
     try
     {
         program.WillRun = false;
         //
         var result = program.EvaluateCondition();
         if (result != null && result.Exception != null)
         {
             // runtime error occurred, script is being disabled
             // so user can notice and fix it
             List<ProgramError> error = new List<ProgramError>() { program.GetFormattedError(result.Exception, true) };
             program.ScriptErrors = JsonConvert.SerializeObject(error);
             program.IsEnabled = false;
             RaiseProgramModuleEvent(program, Properties.RuntimeError, "TC: " + result.Exception.Message.Replace('\n', ' ').Replace('\r', ' '));
         }
         else
         {
             isConditionSatisfied = (result != null ? (bool)result.ReturnValue : false);
         }
         //
         bool lastResult = program.LastConditionEvaluationResult;
         program.LastConditionEvaluationResult = isConditionSatisfied;
         //
         if (program.ConditionType == ConditionType.OnSwitchTrue)
         {
             isConditionSatisfied = (isConditionSatisfied == true && isConditionSatisfied != lastResult);
         }
         else if (program.ConditionType == ConditionType.OnSwitchFalse)
         {
             isConditionSatisfied = (isConditionSatisfied == false && isConditionSatisfied != lastResult);
         }
         else if (program.ConditionType == ConditionType.OnTrue || program.ConditionType == ConditionType.Once)
         {
             // noop
         }
         else if (program.ConditionType == ConditionType.OnFalse)
         {
             isConditionSatisfied = !isConditionSatisfied;
         }
     }
     catch (Exception ex)
     {
         // a runtime error occured
         if (!ex.GetType().Equals(typeof(System.Reflection.TargetException)))
         {
             List<ProgramError> error = new List<ProgramError>() { program.GetFormattedError(ex, true) };
             program.ScriptErrors = JsonConvert.SerializeObject(error);
             program.IsEnabled = false;
             RaiseProgramModuleEvent(program, Properties.RuntimeError, "TC: " + ex.Message.Replace('\n', ' ').Replace('\r', ' '));
         }
     }
     return isConditionSatisfied && program.IsEnabled;
 }
开发者ID:jetzfly,项目名称:HomeGenie,代码行数:57,代码来源:ProgramManager.cs


注:本文中的HomeGenie.Automation.ProgramBlock.GetFormattedError方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。