Skip to content

This project demonstrates when we invoking some method we can pass the method as a parameter to another method. If we design the second method for separating of concerns (SoC), we can use Aspect Oriented Programing (AOP). we can catch method attributes, and we can call BeforeAspects() and AfterAspects().

Notifications You must be signed in to change notification settings

atillatan/robo-aspect-framework

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

robo-aspect-framework

This project demonstrates when we invoking some method we can pass the method as a parameter to another method. If we design the second method for separating of concerns (SoC), we can use Aspect Oriented Programing (AOP). we can catch method attributes, and we can call BeforeAspects() and AfterAspects().

Service Example

public class PersonService : BaseService, IPersonService
{
    [Cache]
    [Log]
    public virtual string Method1(int x)
    {
        return $"input is {x}";
    }
}

Invoking Methods

PersonService personService = new PersonService();

var result = personService.Invoke<string>(() => personService.Method1(3));

ServiceExtension

namespace AspectExample.Services
{
    public static class ServiceExtension
    {
        public static Task<TResult> InvokeAsync<TResult>(this BaseService instance, Expression<Func<object>> function) where TResult : class
        {
            return Task.Run(() => Application.Invoke<TResult>(function, instance));
        }

        public static TResult Invoke<TResult>(this BaseService instance, Expression<Func<object>> function) where TResult : class
        {
            return Application.Invoke<TResult>(function, instance);
        }

        public static object Invoke(this BaseService instance, Expression<Func<object>> function)
        {
            return Application.Invoke<object>(function, instance);
        }
    }
}

Invoker

public static class Invoker
{
    public static object Invoke(InvokeContext context)
    {
        if (context == null)
        {
            throw new ArgumentNullException(nameof(context));
        }

        Expression<Func<object>> _function = context.Request.Function;
        object _instance = context.Request.Instance;

        var timer = Stopwatch.StartNew();
        if (_instance == null) throw new Exception("Service is null!");
        var fbody = _function.Body as MethodCallExpression;
        if (fbody == null || fbody.Method == null) throw new Exception("Expression must be a method call.");
        string methodName = fbody.Method.Name;
        dynamic result = null;

        List<object> args = new List<object>();

        foreach (var argument in fbody.Arguments)
        {
            var constant = argument as ConstantExpression;
            if (constant != null)
            {
                args.Add(constant.Value);
            }
        }

        IEnumerable<Attribute> aspects = _instance.GetType().GetMethod(methodName).GetCustomAttributes(true);

        RunBeforeAspects(context, aspects);

        //if cache aspect or other aspects, returns response.
        if (context?.Result?.Value != null)
        {
            return context.Result.Value;
        }

        try
        {
            result = fbody.Method.Invoke(_instance, args.ToArray<object>());
            Type t = context.Result.ResultType;
            context.Result.Value = result;
        }
        catch (Exception e)
        {
            throw e;
        }
        finally
        {
            timer.Stop();
            Console.WriteLine($"{methodName}() method invoked in :{Convert.ToDouble(timer.ElapsedMilliseconds)}ms ");
        }

        RunAfterAspects(context, aspects);

        return result;
    }

    private static void RunBeforeAspects(InvokeContext context, IEnumerable<Attribute> aspects)
    {
        foreach (var aspect in aspects)
        {
            if (aspect.GetType().GetTypeInfo().BaseType == typeof(AspectBase))
            {
                ((IAspect)aspect).OnBefore(context);
            }
        }
    }

    private static void RunAfterAspects(InvokeContext context, IEnumerable<Attribute> aspects)
    {
        foreach (var aspect in aspects)
        {
            if (aspect.GetType().GetTypeInfo().BaseType == typeof(AspectBase))
            {
                ((IAspect)aspect).OnAfter(context);
            }
        }
    }
}

About

This project demonstrates when we invoking some method we can pass the method as a parameter to another method. If we design the second method for separating of concerns (SoC), we can use Aspect Oriented Programing (AOP). we can catch method attributes, and we can call BeforeAspects() and AfterAspects().

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages