幾十行程式碼實現ASP.NET Core自動依賴注入

青城同學發表於2021-04-15

在開發.NET Core web服務的時候,我們習慣使用自帶的依賴注入容器來進行注入。

於是就會經常進行一個很頻繁的的重複動作:定義一個介面->寫實現類->注入

有時候會忘了寫Add這一步,看到螢幕上的報錯一臉懵逼,然後瞬間反應過來忘了注入了。趕緊補上serviceCollection.AddXXX這句話

雖然說有很多開源框架已經實現了類似的工作,比如AutoFac,Unity等依賴注入框架。但是這些庫都太龐大了,我個人還是喜歡輕量級的實現。

定義一個列舉


[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
    public class AutoInjectAttribute : Attribute
    {
        public AutoInjectAttribute(Type interfaceType, InjectType injectType)
        {
            Type = interfaceType;
            InjectType = injectType;
        }

        public Type Type { get; set; }

        /// <summary>
        /// 注入型別
        /// </summary>
        public InjectType InjectType { get; set; }
    }

定義三種注入型別


/// <summary>
    /// 注入型別
    /// </summary>
    public enum InjectType
    {
        Scope,
        Single,
        Transient
    }

掃描執行目錄下所有的dll,進行自動注入


/// <summary>
    /// 自動依賴注入
    /// </summary>
    public static class AutoInject
    {
        /// <summary>
        /// 自動注入所有的程式集有InjectAttribute標籤
        /// </summary>
        /// <param name="serviceCollection"></param>
        /// <returns></returns>
        public static IServiceCollection AddAutoDi(this IServiceCollection serviceCollection)
        {
            var path = AppDomain.CurrentDomain.BaseDirectory;
            var assemblies = Directory.GetFiles(path, "*.dll").Select(Assembly.LoadFrom).ToList();
            foreach (var assembly in assemblies)
            {
                var types = assembly.GetTypes().Where(a => a.GetCustomAttribute<AutoInjectAttribute>() != null)
                    .ToList();
                if (types.Count <= 0) continue;
                foreach (var type in types)
                {
                    var attr = type.GetCustomAttribute<AutoInjectAttribute>();
                    if (attr?.Type == null) continue;
                    switch (attr.InjectType)
                    {
                        case InjectType.Scope:
                            serviceCollection.AddScoped(attr.Type, type);
                            break;
                        case InjectType.Single:
                            serviceCollection.AddSingleton(attr.Type, type);
                            break;
                        case InjectType.Transient:
                            serviceCollection.AddTransient(attr.Type, type);
                            break;
                        default:
                            throw new ArgumentOutOfRangeException();
                    }
                }
            }

            return serviceCollection;
        }
    }

使用自動依賴注入功能


   public void ConfigureServices(IServiceCollection services)
        {
            services.AddAutoDi();
        }


  public interface ITest
    {
        string Say();
    }

    [AutoInject(typeof(ITest),InjectType.Scope)]
    public class Test : ITest
    {
        public String Say()
        {
            return "test:"+DateTime.Now.ToString();
        }
    }

再次執行程式,所有的貼有AutoInject的所有的實現類,都會被注入到asp.net core的依賴注入容器中。

歡迎關注我的公眾號 青城同學 ,不定時和你分享一些技術和有趣的事情。

相關文章