Intercept async method that returns generic Task<> via DynamicProxy

后端 未结 5 1358
一生所求
一生所求 2020-12-05 13:11

My questions is related to this post Intercept the call to an async method using DynamicProxy

I want to implement interceptor that works with async methods that retu

相关标签:
5条回答
  • 2020-12-05 13:47

    Having a need to intercept methods returning Task<TResult>, I've created an extension to Castle.Core that simplifies the process.

    Castle.Core.AsyncInterceptor

    The package is available to download on NuGet.

    The solution is largely based on the answer from @silas-reinagel, but simplifies it by providing a new interface to implement IAsyncInterceptor. There are also further abstractions to that make interception similar to implementing Interceptor.

    See the readme of the project for further details.

    0 讨论(0)
  • 2020-12-05 13:51

    After extensive research, I was able to create a solution that works for intercepting Synchronous Methods as well as Async Task and Async Task< TResult >.

    Here is my code for an Exception Handling interceptor that works on all those method types, using Castle Dynamic Proxy. This pattern is adaptable for doing any sort of intercept you wish. The syntax will be a little cleaner for standard BeforeInvoke/AfterInvoke actions, but the concept should be the same.

    (Other note: the IExceptionHandler interface in the example is a custom type, and not a common object.)

        private class AsyncExceptionHandlingInterceptor : IInterceptor
        {
            private static readonly MethodInfo handleAsyncMethodInfo = typeof(AsyncExceptionHandlingInterceptor).GetMethod("HandleAsyncWithResult", BindingFlags.Instance | BindingFlags.NonPublic);
            private readonly IExceptionHandler _handler;
    
            public AsyncExceptionHandlingInterceptor(IExceptionHandler handler)
            {
                _handler = handler;
            }
    
            public void Intercept(IInvocation invocation)
            {
                var delegateType = GetDelegateType(invocation);
                if (delegateType == MethodType.Synchronous)
                {
                    _handler.HandleExceptions(() => invocation.Proceed());
                }
                if (delegateType == MethodType.AsyncAction)
                {
                    invocation.Proceed();
                    invocation.ReturnValue = HandleAsync((Task)invocation.ReturnValue);
                }
                if (delegateType == MethodType.AsyncFunction)
                {
                    invocation.Proceed();
                    ExecuteHandleAsyncWithResultUsingReflection(invocation);
                }
            }
    
            private void ExecuteHandleAsyncWithResultUsingReflection(IInvocation invocation)
            {
                var resultType = invocation.Method.ReturnType.GetGenericArguments()[0];
                var mi = handleAsyncMethodInfo.MakeGenericMethod(resultType);
                invocation.ReturnValue = mi.Invoke(this, new[] { invocation.ReturnValue });
            }
    
            private async Task HandleAsync(Task task)
            {
                await _handler.HandleExceptions(async () => await task);
            }
    
            private async Task<T> HandleAsyncWithResult<T>(Task<T> task)
            {
                return await _handler.HandleExceptions(async () => await task);
            }
    
            private MethodType GetDelegateType(IInvocation invocation)
            {
                var returnType = invocation.Method.ReturnType;
                if (returnType == typeof(Task))
                    return MethodType.AsyncAction;
                if (returnType.IsGenericType && returnType.GetGenericTypeDefinition() == typeof(Task<>))
                    return MethodType.AsyncFunction;
                return MethodType.Synchronous;
            }
    
            private enum MethodType
            {
                Synchronous,
                AsyncAction,
                AsyncFunction
            }
        }
    
    0 讨论(0)
  • 2020-12-05 13:52

    I've done this way:

    invocation.Proceed(); 
    object response;
    Type type = invocation.ReturnValue?.GetType();
    if (type != null && typeof(Task).IsAssignableFrom(type))
    {
        var resultProperty = type.GetProperty("Result");
        response = resultProperty.GetValue(invocation.ReturnValue);
    }
    
    0 讨论(0)
  • 2020-12-05 14:04

    The solutions from @Silas Reinagel and @thepirat000 didn't work for me, and I was not successful using Castle.Core.AsyncInterceptor solution from @James Skimming.

    In my case, I'm intercepting an async method returning Task, and it should execute "after invocation.Proceed() code" only if there was no exception during the invocation.Proceed(). At the end I used @James Skimming's code sample, so this solution works only for intercepting async methods returning Task and not Task<TResult>:

    public void Intercept(IInvocation invocation)
    {
        _stepPriorInvocation();
    
        invocation.Proceed();
        Func<Task> continuation = async () =>
        {
            await (Task)invocation.ReturnValue;
    
            _stepAfterSuccessfulInvocation();
        };
    
        invocation.ReturnValue = continuation();
    
        void _stepPriorInvocation()
        {
        }
    
        void _stepAfterSuccessfulInvocation()
        {
        }
    }
    
    
    0 讨论(0)
  • 2020-12-05 14:12

    A better solution would be to use the dynamic keyword to bypass the compiler type checking and resolve the operation at run time:

    public void Intercept(IInvocation invocation)
    {
        invocation.Proceed();
        var method = invocation.MethodInvocationTarget;
        var isAsync = method.GetCustomAttribute(typeof(AsyncStateMachineAttribute)) != null;
        if (isAsync && typeof(Task).IsAssignableFrom(method.ReturnType))
        {
            invocation.ReturnValue = InterceptAsync((dynamic)invocation.ReturnValue);
        }
    }
    
    private static async Task InterceptAsync(Task task)
    {
        await task.ConfigureAwait(false);
        // do the continuation work for Task...
    }
    
    private static async Task<T> InterceptAsync<T>(Task<T> task)
    {
        T result = await task.ConfigureAwait(false);
        // do the continuation work for Task<T>...
        return result;
    }
    
    0 讨论(0)
提交回复
热议问题