Interceptor là một trong những khái niệm quan trọng trong lập trình, cho phép chúng ta mở rộng và thay đổi hành vi của các phương thức mà không phải sửa đổi code nguồn gốc. Trong bài viết này, chúng ta sẽ khám phá cách sử dụng Interceptor trong Autofac, một container dependency injection phổ biến trong cộng đồng .NET.
Mình minh họa bằng .NET Framework, các bạn dựa theo đó làm cho ví dụ .NET nha
Giới thiệu về Interceptor
Interceptor là một cơ chế cho phép chúng ta "giữ lại" việc gọi một phương thức và thực hiện các hành động nào đó trước và sau khi phương thức đó được gọi. Điều này thường được sử dụng để thêm logic chung, theo dõi, đo lường hoặc thậm chí thay đổi hành vi của các phương thức.
Cài đặt
Tạo Project ASP.NET MVC. Sau đó, cài đặt các package sau:
Install-Package Autofac.Extensions.DependencyInjection
Install-Package Autofac.Mvc5
Autofac.Extras.DynamicProxy
Bạn cần có service và 1 interceptor để gắn vào service đó.
Thêm IMessageService và MessageServicepublic interface IMessageService
{
string GetMessage();
}
public class MessageService : IMessageService
{
public string GetMessage()
{
return DateTime.Now.ToString();
}
}
Khai báo LoggingInterceptor
using Castle.DynamicProxy;
using System;
//...
public class LoggingInterceptor: IInterceptor
{
public void Intercept(IInvocation invocation)
{
Console.WriteLine($"Before calling method {invocation.Method.Name}");
invocation.Proceed(); //call service method
Console.WriteLine($"After calling method {invocation.Method.Name}");
}
}
Đăng ký Dependency Injection
using AutofacInterceptorExample.Interceptors;
using AutofacInterceptorExample.Services;
using Autofac.Extras.DynamicProxy;
//...
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
var containerBuilder = new ContainerBuilder();
containerBuilder.RegisterType<LoggingInterceptor>();
containerBuilder.RegisterType<MessageService>().As<IMessageService>().EnableInterfaceInterceptors()
.InterceptedBy(typeof(LoggingInterceptor));
containerBuilder.RegisterControllers(typeof(MvcApplication).Assembly);
var container = containerBuilder.Build();
DependencyResolver.SetResolver(new AutofacDependencyResolver(container));
}
}
Cuối cùng ở HomeController, bạn thêm IMessageService vào
using AutofacInterceptorExample.Services;
using System;
using System.Web.Mvc;
//...
public class HomeController : Controller
{
private readonly IMessageService _messageService;
public HomeController(IMessageService messageService)
{
_messageService = messageService;
}
public ActionResult Index()
{
var testMessage = _messageService.GetMessage();
Console.Write(testMessage);
return View();
}
}
Trường hợp bạn muốn khai báo Interceptor tự động, bạn khai báo thêm InterceptorExtension
public static class InterceptorExtension
{
public static IRegistrationBuilder<TLimit, TActivatorData, TSingleRegistrationStyle> EnableInterceptor
<TLimit, TActivatorData, TSingleRegistrationStyle>(
this IRegistrationBuilder<TLimit, TActivatorData, TSingleRegistrationStyle> registration)
{
return registration.EnableInterfaceInterceptors().InterceptedBy(typeof(LoggingInterceptor));
}
}
Trong hàm đăng ký Depednecy Injection, bạn sửa lại như sau:
var containerBuilder = new ContainerBuilder();
containerBuilder.RegisterType<LoggingInterceptor>();
containerBuilder.RegisterType<MessageService>().As<IMessageService>().EnableInterceptor();
Tham khảo
Introduction to Aspect-Oriented Programming (AOP) in .NET with Autofac Interceptors
Chúc các bạn thành công
Nhận xét
Đăng nhận xét