本文整理汇总了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);
}
示例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;
}