从字符串C#中检索对象

时间:2018-01-04 11:24:45

标签: c# reflection polly

我有下面的mapper json文件,该文件告诉我一个给定的异常,我想使用哪个错误处理策略。

{
  "ExceptionMappers": [
   {
     "ExceptionName": "TimeoutException",
     "ExceptionType": "Transient",
  "Policy": "WaitAndRetry",
  "WaitType": "Linear"
},
{
  "ExceptionName": "DivideByZeroException",
  "ExceptionType": "Permanent",
  "Policy": "CircuitBreaker"
},
{
  "ExceptionName": "StackOverflowException",
  "ExceptionType": "LogOnly",
  "Policy": "WaitAndRetry",
  "WaitType": "Linear"
}
]
 }

然后使用下面的代码我试图获取异常类型并应用可以调用操作的策略。但是在这里我被困住了,如何从字符串名称中获取异常类型。

   public void Execute(Action action, string exceptionName)
    {
        var filePath = @"appsetting.json";
        var exceptionMapperJson = System.IO.File.ReadAllText(filePath);
        var rootNode = JsonConvert.DeserializeObject<RootObject>(exceptionMapperJson);

        var exceptionNode = rootNode.ExceptionMappers.FirstOrDefault(e => e.ExceptionName.Equals(exceptionName));
        var exceptionObject = Type.GetType(exceptionName);

        if (exceptionNode != null)
        {
            // Here I need the exception from the string value
            Policy.Handle<TimeoutException>().Retry().Execute(action);
        }
        else
        {
            // No Policy applied
            Policy.NoOp().Execute(action);
        }

    }

1 个答案:

答案 0 :(得分:1)

根据@thehennyy的评论,Jon Skeet's answer to a similar question涵盖了当仅在运行时知道泛型类型时如何使用反射来调用泛型方法。与链接答案略有不同:因为.Handle<TException>()Policy上的静态方法,所以将null作为MethodInfo.Invoke()的第一个参数传递。

或者,因为Polly offers Handle clauses which can take a predicate,您可以简单地:

var exceptionType = Type.GetType(exceptionName);
if (exceptionNode != null)
{
    Policy.Handle<Exception>(e => exceptionType.IsAssignableFrom(e.GetType())) // etc
}

live dotnetfiddle example表明它正常运作。

或者,使您的包装器方法本身通用:

public void Execute<TException>(Action action) where TExecption : Exception
{
    // reverses the approach: 
    // you'll want a typeof(TException).Name, to get the string name of the exception from TException

    // Then you can just Policy.Handle<TException>(...) when you construct the policy
}

作为另一项改进,您可以考虑在启动时仅构建一次策略,并将它们放在PolicyRegistry