using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection.Extensions; using System; using System.Linq; using System.Reflection; using Znyc.Recruitment.Admin.Commons.DbContextCore; using Znyc.Recruitment.Admin.Commons.DependencyInjection; using Znyc.Recruitment.Admin.Commons.Entitys; using Znyc.Recruitment.Admin.Commons.Helpers; using Znyc.Recruitment.Admin.Commons.IDbContext; using Znyc.Recruitment.Admin.Commons.IRepositories; using Znyc.Recruitment.Admin.Commons.Options; using Znyc.Recruitment.Admin.Commons.Repositories; namespace Znyc.Recruitment.Admin.Commons.Extensions { /// /// IServiceCollection自定义扩展 /// public static class AppServiceCollectionExtensions { #region 注入控制器Controler /// /// 注入Controler /// /// /// /// public static IServiceCollection RegisterControllers(this IServiceCollection service, string controllerAssemblyName) { if (service == null) { throw new ArgumentNullException(nameof(service)); } if (string.IsNullOrEmpty(controllerAssemblyName)) { throw new ArgumentNullException(nameof(controllerAssemblyName)); } Assembly controllerAssembly = RuntimeHelper.GetAssembly(controllerAssemblyName); if (controllerAssembly == null) { throw new DllNotFoundException($"the dll \"{controllerAssemblyName}\" not be found"); } //过滤掉非接口及泛型接口 System.Collections.Generic.IEnumerable types = controllerAssembly.GetTypes().Where(t => { TypeInfo typeInfo = t.GetTypeInfo(); return typeInfo.IsClass && !typeInfo.IsAbstract && !typeInfo.IsGenericType && t.IsAssignableFrom(typeof(Controller)); }); foreach (Type type in types) { service.AddScoped(type); } return service; } #endregion 注入控制器Controler /// /// 添加自动扫描注入Service服务和Respository仓储 /// /// 需要注意的是,遵循如下约定: /// IUserService --> UserService, IUserRepository --> UserRepository. /// /// /// 服务集合 /// 服务集合 public static IServiceCollection AddAutoScanInjection(this IServiceCollection services) { RuntimeHelper.GetAllZnycAssemblies().ToList().ForEach(a => { a.GetTypes().Where(t => typeof(IPrivateDependency).IsAssignableFrom(t) && t.IsClass).ToList().ForEach( t => { Type serviceType = t.GetInterface($"I{t.Name}"); if ((serviceType ?? t).GetInterface(typeof(ISingletonDependency).Name) != null) { if (serviceType != null) { services.AddSingleton(serviceType, t); } else { services.AddSingleton(t); } } else if ((serviceType ?? t).GetInterface(typeof(IScopedDependency).Name) != null) { if (serviceType != null) { services.AddScoped(serviceType, t); } else { services.AddScoped(t); } } else if ((serviceType ?? t).GetInterface(typeof(ITransientDependency).Name) != null) { if (serviceType != null) { services.AddTransient(serviceType, t); } else { services.AddTransient(t); } } else { if (serviceType != null) { services.AddTransient(serviceType, t); } else { services.AddTransient(t); } } }); }); return services; } #region 用DI批量注入接口程序集中对应的实现类,接口和实现类在一个程序集中。 /// /// 用DI批量注入接口程序集中对应的实现类。 /// 针对每一次服务提供请求,IServiceProvider对象总是创建一个新的服务实例 /// /// 需要注意的是,这里有如下约定: /// IUserService --> UserService, IUserRepository --> UserRepository. /// /// /// /// 接口程序集的名称(不包含文件扩展名) /// public static IServiceCollection AddTransientAssembly(this IServiceCollection service, string interfaceAssemblyName) { if (service == null) { throw new ArgumentNullException(nameof(service)); } if (string.IsNullOrEmpty(interfaceAssemblyName)) { throw new ArgumentNullException(nameof(interfaceAssemblyName)); } Assembly assembly = RuntimeHelper.GetAssembly(interfaceAssemblyName); if (assembly == null) { throw new DllNotFoundException($"the dll \"{interfaceAssemblyName}\" not be found"); } //过滤掉非接口及泛型接口 System.Collections.Generic.IEnumerable types = assembly.GetTypes().Where(t => t.GetTypeInfo().IsInterface && !t.GetTypeInfo().IsGenericType); foreach (Type type in types) { string implementTypeName = type.Name.Substring(1); Type implementType = RuntimeHelper.GetImplementType(implementTypeName, type); if (implementType != null) { service.AddTransient(type, implementType); } } return service; } /// /// 用DI批量注入接口程序集中对应的实现类。 /// 在同一个作用域内只初始化一个实例 ,可以理解为每一个请求只创建一个实例,同一个请求会在一个作用域内。在Scooped的生存周期内,如果容器释放 它也就被释放了 /// /// 需要注意的是,这里有如下约定: /// IUserService --> UserService, IUserRepository --> UserRepository. /// /// /// /// 接口程序集的名称(不包含文件扩展名) /// public static IServiceCollection AddScopedAssembly(this IServiceCollection service, string interfaceAssemblyName) { if (service == null) { throw new ArgumentNullException(nameof(service)); } if (string.IsNullOrEmpty(interfaceAssemblyName)) { throw new ArgumentNullException(nameof(interfaceAssemblyName)); } Assembly assembly = RuntimeHelper.GetAssembly(interfaceAssemblyName); if (assembly == null) { throw new DllNotFoundException($"the dll \"{interfaceAssemblyName}\" not be found"); } //过滤掉非接口及泛型接口 System.Collections.Generic.IEnumerable types = assembly.GetTypes().Where(t => t.GetTypeInfo().IsInterface && !t.GetTypeInfo().IsGenericType); foreach (Type type in types) { string implementTypeName = type.Name.Substring(1); Type implementType = RuntimeHelper.GetImplementType(implementTypeName, type); if (implementType != null) { service.AddScoped(type, implementType); } } return service; } /// /// 用DI批量注入接口程序集中对应的实现类。 /// 整个应用程序生命周期以内只创建一个实例,后续每个请求都使用相同的实例。如果应用程序需要单例行为,建议让服务容器管理服务的生命周期,而不是在自己的类中实现单例模式。 /// /// 需要注意的是,这里有如下约定: /// IUserService --> UserService, IUserRepository --> UserRepository. /// /// /// /// 接口程序集的名称(不包含文件扩展名) /// public static IServiceCollection AddSingletonAssembly(this IServiceCollection service, string interfaceAssemblyName) { if (service == null) { throw new ArgumentNullException(nameof(service)); } if (string.IsNullOrEmpty(interfaceAssemblyName)) { throw new ArgumentNullException(nameof(interfaceAssemblyName)); } Assembly assembly = RuntimeHelper.GetAssembly(interfaceAssemblyName); if (assembly == null) { throw new DllNotFoundException($"the dll \"{interfaceAssemblyName}\" not be found"); } //过滤掉非接口及泛型接口 System.Collections.Generic.IEnumerable types = assembly.GetTypes().Where(t => t.GetTypeInfo().IsInterface && !t.GetTypeInfo().IsGenericType); foreach (Type type in types) { string implementTypeName = type.Name.Substring(1); Type implementType = RuntimeHelper.GetImplementType(implementTypeName, type); if (implementType != null) { service.AddSingleton(type, implementType); } } return service; } #endregion 用DI批量注入接口程序集中对应的实现类,接口和实现类在一个程序集中。 #region 用DI批量注入接口程序集中对应的实现类,接口和实现类在独立的程序集中。 /// /// 用DI批量注入接口程序集中对应的实现类。 /// /// /// 接口程序集的名称(不包含文件扩展名) /// 实现程序集的名称(不包含文件扩展名) /// public static IServiceCollection AddScopedAssembly(this IServiceCollection service, string interfaceAssemblyName, string implementAssemblyName) { if (service == null) { throw new ArgumentNullException(nameof(service)); } if (string.IsNullOrEmpty(interfaceAssemblyName)) { throw new ArgumentNullException(nameof(interfaceAssemblyName)); } if (string.IsNullOrEmpty(implementAssemblyName)) { throw new ArgumentNullException(nameof(implementAssemblyName)); } Assembly interfaceAssembly = RuntimeHelper.GetAssembly(interfaceAssemblyName); if (interfaceAssembly == null) { throw new DllNotFoundException($"the dll \"{interfaceAssemblyName}\" not be found"); } Assembly implementAssembly = RuntimeHelper.GetAssembly(implementAssemblyName); if (implementAssembly == null) { throw new DllNotFoundException($"the dll \"{implementAssemblyName}\" not be found"); } //过滤掉非接口及泛型接口 System.Collections.Generic.IEnumerable types = interfaceAssembly.GetTypes() .Where(t => t.GetTypeInfo().IsInterface && !t.GetTypeInfo().IsGenericType); foreach (Type type in types) { //过滤掉抽象类、泛型类以及非class TypeInfo implementType = implementAssembly.DefinedTypes .FirstOrDefault(t => t.IsClass && !t.IsAbstract && !t.IsGenericType && t.GetInterfaces().Any(b => b.Name == type.Name)); if (implementType != null) { service.AddScoped(type, implementType.AsType()); } } return service; } /// /// 用DI批量注入接口程序集中对应的实现类。 /// /// /// 接口程序集的名称(不包含文件扩展名) /// 实现程序集的名称(不包含文件扩展名) /// public static IServiceCollection AddTransientAssembly(this IServiceCollection service, string interfaceAssemblyName, string implementAssemblyName) { if (service == null) { throw new ArgumentNullException(nameof(service)); } if (string.IsNullOrEmpty(interfaceAssemblyName)) { throw new ArgumentNullException(nameof(interfaceAssemblyName)); } if (string.IsNullOrEmpty(implementAssemblyName)) { throw new ArgumentNullException(nameof(implementAssemblyName)); } Assembly interfaceAssembly = RuntimeHelper.GetAssembly(interfaceAssemblyName); if (interfaceAssembly == null) { throw new DllNotFoundException($"the dll \"{interfaceAssemblyName}\" not be found"); } Assembly implementAssembly = RuntimeHelper.GetAssembly(implementAssemblyName); if (implementAssembly == null) { throw new DllNotFoundException($"the dll \"{implementAssemblyName}\" not be found"); } //过滤掉非接口及泛型接口 System.Collections.Generic.IEnumerable types = interfaceAssembly.GetTypes() .Where(t => t.GetTypeInfo().IsInterface && !t.GetTypeInfo().IsGenericType); foreach (Type type in types) { //过滤掉抽象类、泛型类以及非class TypeInfo implementType = implementAssembly.DefinedTypes .FirstOrDefault(t => t.IsClass && !t.IsAbstract && !t.IsGenericType && t.GetInterfaces().Any(b => b.Name == type.Name)); if (implementType != null) { service.AddTransient(type, implementType.AsType()); } } return service; } /// /// 用DI批量注入接口程序集中对应的实现类。 /// /// /// 接口程序集的名称(不包含文件扩展名) /// 实现程序集的名称(不包含文件扩展名) /// public static IServiceCollection AddSingletonAssembly(this IServiceCollection service, string interfaceAssemblyName, string implementAssemblyName) { if (service == null) { throw new ArgumentNullException(nameof(service)); } if (string.IsNullOrEmpty(interfaceAssemblyName)) { throw new ArgumentNullException(nameof(interfaceAssemblyName)); } if (string.IsNullOrEmpty(implementAssemblyName)) { throw new ArgumentNullException(nameof(implementAssemblyName)); } Assembly interfaceAssembly = RuntimeHelper.GetAssembly(interfaceAssemblyName); if (interfaceAssembly == null) { throw new DllNotFoundException($"the dll \"{interfaceAssemblyName}\" not be found"); } Assembly implementAssembly = RuntimeHelper.GetAssembly(implementAssemblyName); if (implementAssembly == null) { throw new DllNotFoundException($"the dll \"{implementAssemblyName}\" not be found"); } //过滤掉非接口及泛型接口 System.Collections.Generic.IEnumerable types = interfaceAssembly.GetTypes() .Where(t => t.GetTypeInfo().IsInterface && !t.GetTypeInfo().IsGenericType); foreach (Type type in types) { //过滤掉抽象类、泛型类以及非class TypeInfo implementType = implementAssembly.DefinedTypes .FirstOrDefault(t => t.IsClass && !t.IsAbstract && !t.IsGenericType && t.GetInterfaces().Any(b => b.Name == type.Name)); if (implementType != null) { service.AddSingleton(type, implementType.AsType()); } } return service; } #endregion 用DI批量注入接口程序集中对应的实现类,接口和实现类在独立的程序集中。 #region 数据库上下文相关服务注入 /// /// 注册数据库上下文工厂 /// /// /// /// public static IServiceCollection AddDbContextFactory(this IServiceCollection services, Action action) { if (services == null) { throw new ArgumentNullException(nameof(services)); } DbContextFactory factory = DbContextFactory.Instance; factory.ServiceCollection = services; action?.Invoke(factory); return factory.ServiceCollection; } /// /// 注入数据库上下文 /// /// /// /// /// 数据库上下文配置参数 /// public static IServiceCollection AddDbContext(this IServiceCollection services, DbContextOption option) where IT : IDbContextCore where T : BaseDbContext, IT { if (services == null) { throw new ArgumentNullException(nameof(services)); } if (option == null) { throw new ArgumentNullException(nameof(option)); } services.AddSingleton(option); return services.AddDbContext(option); } /// /// 注入数据库上下文 /// /// /// /// /// public static IServiceCollection AddDbContext(this IServiceCollection services) where IT : IDbContextCore where T : BaseDbContext, IT { if (services == null) { throw new ArgumentNullException(nameof(services)); } return services.AddDbContext(); } /// /// 获取数据库上下文 /// /// /// 上下文标签名称 /// /// public static object GetDbContext(this IServiceProvider provider, string dbContextTagName, Type serviceType) { if (provider == null) { throw new ArgumentNullException(nameof(provider)); } object implService = provider.GetRequiredService(serviceType); DbContextOption option = provider.GetServices() .FirstOrDefault(m => m.dbConfigName == dbContextTagName); object context = Activator.CreateInstance(implService.GetType(), option); return context; } #endregion 数据库上下文相关服务注入 #region 注册仓储Repositories /// /// 注册仓储Repositories /// /// /// /// public static IServiceCollection RegisterDefaultRepositories(this IServiceCollection services) where T : DbContext, new() { Assembly assembly = Assembly.GetExecutingAssembly(); System.Collections.Generic.List list = assembly.GetTypes().Where(t => t.GetCustomAttributes() .Any(a => a.ContextType == typeof(T)) && !t.GetCustomAttributes().Any() && !t.FullName.Contains("Migrations")).ToList(); if (list.Any()) { foreach (Type type in list) { Type pkType = GetPrimaryKeyType(type); Type implType = GetRepositoryType(type, pkType); if (pkType != null) { services.TryAddScoped(typeof(IRepository<,>).MakeGenericType(type, pkType), implType); } } } return services; } /// /// 获取继承仓储BaseRepository的所有仓储类型 /// /// /// /// private static Type GetRepositoryType(Type entityType, Type primaryKeyType) { return typeof(BaseRepository<,>).MakeGenericType(entityType, primaryKeyType); } /// /// 获取继承Entity的所有实体类型主键类型 /// /// /// private static Type GetPrimaryKeyType(Type entityType) { foreach (Type interfaceType in entityType.GetTypeInfo().GetInterfaces()) { if (interfaceType.GetTypeInfo().IsGenericType && interfaceType.GetGenericTypeDefinition() == typeof(Entity)) { return interfaceType.GenericTypeArguments[0]; } } return null; } #endregion 注册仓储Repositories } }