C#自定义应用程序上下文对象+IOC自己实现依赖注入
以前的好多代码都丢失了,加上最近时间空一些,于是想起整理一下以前的个人半拉子项目,试试让它们重生。自从养成了架构师视觉 搭建框架之后,越来 越看不上以前搭的框架了。先撸个上下文对象加上实现依赖注入。由于还是要依赖.net 4,所以像Autofac这样的就用不了,于是仿照着实现了。
- /// <summary>
- /// 自定义应用程序上下文对象
- /// </summary>
- public class AppContextExt : IDisposable
- {
- /// <summary>
- /// app.config读取
- /// </summary>
- public Configuration AppConfig { get; set; }
- /// <summary>
- /// 真正的ApplicationContext对象
- /// </summary>
- public ApplicationContext Application_Context { get; set; }
- //服务集合
- public static Dictionary<Type, object> Services = new Dictionary<Type, object>();
- //服务订阅事件集合
- public static Dictionary<Type, IList<Action<object>>> ServiceEvents = new Dictionary<Type, IList<Action<object>>>();
- //上下文对象的单例
- private static AppContextExt _ServiceContext = null;
- private readonly static object lockObj = new object();
- /// <summary>
- /// 禁止外部进行实例化
- /// </summary>
- private AppContextExt()
- {
- }
- /// <summary>
- /// 获取唯一实例,双锁定防止多线程并发时重复创建实例
- /// </summary>
- /// <returns></returns>
- public static AppContextExt GetInstance()
- {
- if (_ServiceContext == null)
- {
- lock (lockObj)
- {
- if (_ServiceContext == null)
- {
- _ServiceContext = new AppContextExt();
- }
- }
- }
- return _ServiceContext;
- }
- /// <summary>
- /// 注入Service到上下文
- /// </summary>
- /// <typeparam name="T">接口对象</typeparam>
- /// <param name="t">Service对象</param>
- /// <param name="servicesChangeEvent">服务实例更新时订阅的消息</param>
- public static void RegisterService<T>(T t, Action<object> servicesChangeEvent = null) where T : class
- {
- if (t == null)
- {
- throw new Exception(string.Format("未将对象实例化,对象名:{0}.", typeof(T).Name));
- }
- if (!Services.ContainsKey(typeof(T)))
- {
- try
- {
- Services.Add(typeof(T), t);
- if (servicesChangeEvent != null)
- {
- var eventList = new List<Action<object>>();
- eventList.Add(servicesChangeEvent);
- ServiceEvents.Add(typeof(T), eventList);
- }
- }
- catch (Exception ex)
- {
- throw ex;
- }
- }
- if (!Services.ContainsKey(typeof(T)))
- {
- throw new Exception(string.Format("注册Service失败,对象名:{0}.", typeof(T).Name));
- }
- }
- /// <summary>
- /// 动态注入dll中的多个服务对象
- /// </summary>
- /// <param name="serviceRuntime"></param>
- public static void RegisterAssemblyServices(string serviceRuntime)
- {
- if (serviceRuntime.IndexOf(".dll") != -1 && !File.Exists(serviceRuntime))
- throw new Exception(string.Format("类库{0}不存在!", serviceRuntime));
- try
- {
- Assembly asb = Assembly.LoadFrom(serviceRuntime);
- var serviceList = asb.GetTypes().Where(t => t.GetCustomAttributes(typeof(ExportAttribute), false).Any()).ToList();
- if (serviceList != null && serviceList.Count > 0)
- {
- foreach (var service in serviceList)
- {
- var ifc = ((ExportAttribute)service.GetCustomAttributes(typeof(ExportAttribute), false).FirstOrDefault()).ContractType;
- //使用默认的构造函数实例化
- var serviceObject = Activator.CreateInstance(service, null);
- if (serviceObject != null)
- Services.Add(ifc, serviceObject);
- else
- throw new Exception(string.Format("实例化对象{0}失败!", service));
- }
- }
- else
- {
- throw new Exception(string.Format("类库{0}里没有Export的Service!", serviceRuntime));
- }
- }
- catch (Exception ex)
- {
- throw ex;
- }
- }
- /// <summary>
- /// 获取Service的实例
- /// </summary>
- /// <typeparam name="T">接口对象</typeparam>
- /// <returns></returns>
- public static T Resolve<T>()
- {
- if (Services.ContainsKey(typeof(T)))
- return (T)Services[typeof(T)];
- return default(T);
- }
- /// <summary>
- /// 重置Service对象,实现热更新
- /// </summary>
- /// <typeparam name="T">接口对象</typeparam>
- /// <param name="t">新的服务对象实例</param>
- public static void ReLoadService<T>(T t)
- {
- if (t == null)
- {
- throw new Exception(string.Format("未将对象实例化,对象名:{0}.", typeof(T).Name));
- }
- if (Services.ContainsKey(typeof(T)))
- {
- try
- {
- Services[typeof(T)] = t;
- if (ServiceEvents.ContainsKey(typeof(T)))
- {
- var eventList = ServiceEvents[typeof(T)];
- foreach (var act in eventList)
- {
- act.Invoke(t);
- }
- }
- }
- catch (Exception ex)
- {
- throw ex;
- }
- }
- else if (!Services.ContainsKey(typeof(T)))
- {
- throw new Exception(string.Format("Service实例不存在!对象名:{0}.", typeof(T).Name));
- }
- }
- /// <summary>
- /// 激活上下文
- /// </summary>
- public void Start()
- {
- GetInstance();
- }
- /// <summary>
- /// 激活上下文
- /// </summary>
- /// <param name="appContext">真正的ApplicationContext对象</param>
- public void Start(ApplicationContext appContext)
- {
- Application_Context = appContext;
- GetInstance();
- }
- /// <summary>
- /// 激活上下文
- /// </summary>
- /// <param name="config">Configuration</param>
- public void Start(Configuration config)
- {
- AppConfig = config;
- GetInstance();
- }
- /// <summary>
- /// 激活上下文
- /// </summary>
- /// <param name="appContext">真正的ApplicationContext对象</param>
- /// <param name="config">Configuration</param>
- public void Start(ApplicationContext appContext, Configuration config)
- {
- AppConfig = config;
- Application_Context = appContext;
- GetInstance();
- }
- /// <summary>
- /// Using支持
- /// </summary>
- public void Dispose()
- {
- Services.Clear();
- ServiceEvents.Clear();
- if (Application_Context != null)
- {
- Application_Context.ExitThread();
- }
- }
- }
使用:
- AppContextExt.GetInstance().Start();
- AppContextExt.RegisterAssemblyServices(AppDomain.CurrentDomain.BaseDirectory + "ModuleService.dll");
- ILogService svr = AppContextExt.Resolve<ILogService>();
- if (svr != null)
- svr.LogInfo("OK");
解决方案截图:
C#自定义应用程序上下文对象+IOC自己实现依赖注入的更多相关文章
- IoC COntainer Create Javabeans 可以通过读取beans.xml 文件来创建一个应用程序上下文对象 依赖反转
Spring初学快速入门 - Spring教程™ https://www.yiibai.com/spring/spring-tutorial-for-beginners.html# pom <? ...
- Spring IOC - 控制反转(依赖注入) - 入门案例 - 获取对象的方式 - 别名标签
1. IOC - 控制反转(依赖注入) 所谓的IOC称之为控制反转,简单来说就是将对象的创建的权利及对象的生命周期的管理过程交 由Spring框架来处理,从此在开发过程中不再需要关注对象的创建和生命周 ...
- 深入分析MVC中通过IOC实现Controller依赖注入的原理
这几天利用空闲时间,我将ASP.NET反编译后的源代码并结合园子里几位大侠的写的文章认真的看了一遍,收获颇丰,同时也摘要了一些学习内容,存入了该篇文章:<ASP.NET运行机制图解>,在对 ...
- 控制反转(IoC)与依赖注入(DI)
前言 最近在学习Spring框架,它的核心就是IoC容器.要掌握Spring框架,就必须要理解控制反转的思想以及依赖注入的实现方式.下面,我们将围绕下面几个问题来探讨控制反转与依赖注入的关系以及在Sp ...
- 控制反转( IoC)和依赖注入(DI)
控制反转( IoC)和依赖注入(DI) tags: 容器 依赖注入 IOC DI 控制反转 引言:如果你看过一些框架的源码或者手册,像是laravel或者tp5之类的,应该会提到容器,依赖注入,控制反 ...
- springboot成神之——ioc容器(依赖注入)
springboot成神之--ioc容器(依赖注入) spring的ioc功能 文件目录结构 lang Chinese English GreetingService MyRepository MyC ...
- Spring的控制反转(IOC)和依赖注入(DI)具体解释
Spring的控制反转(IOC)和依赖注入(DI)具体解释 首先介绍下(IOC)控制反转: 所谓控制反转就是应用本身不负责依赖对象的创建及维护,依赖对象的创建及维护是由外部容器负责的.这样控制器就有应 ...
- 依赖倒置原则(DIP)、控制反转(IoC)、依赖注入(DI)(C#)
理解: 依赖倒置原则(DIP)主程序要依赖于抽象接口,不要依赖于具体实现.高层模块不应该依赖底层模块,两个都应该以来抽象.抽象不应该依赖细节,细节应该依赖抽象.(具体看我上一篇贴子) 依赖倒置原则是六 ...
- Spring升级案例之IOC介绍和依赖注入
Spring升级案例之IOC介绍和依赖注入 一.IOC的概念和作用 1.什么是IOC 控制反转(Inversion of Control, IoC)是一种设计思想,在Java中就是将设计好的对象交给容 ...
随机推荐
- 痞子衡嵌入式:ARM Cortex-M文件那些事(2)- 链接文件(.icf)
大家好,我是痞子衡,是正经搞技术的痞子.今天痞子衡给大家讲的是嵌入式开发里的linker文件. 在前一节课源文件(.c/.h/.s)里,痞子衡给大家系统地介绍了source文件,source文件是嵌入 ...
- Smobiler 4.4 更新预告 Part 2(Smobiler能让你在Visual Studio上开发APP)
Hello Everybody,在Smobiler 4.4中,也为大家带来了新增功能和插件(重点,敲黑板). 新增功能: 1, 企业认证用户可设置路由(即客户端可根据不同的IP地址访问不同的服务器组) ...
- wpf 无缝滚动
很早以前有项目就需要文字无缝滚动的效果但无奈当时技术不到位 人也比较懒惰(大概程序猿都是这个样子吧) 此方法并非只文字无缝其实任何内容都可以 <ScrollViewer Name="s ...
- C# 判断用户是否对路径拥有访问权限
如何获取当前系统用户对文件/文件夹的操作权限? 1.获取安全信息DirectorySecurity DirectorySecurity fileAcl = Directory.GetAccessCon ...
- Qt 给控件QLineEdit添加clicked事件方法
做Qt开发的会知道QLineEdit是默认没有clicked事件的,但是Qt有很好的一套信号/槽机制,而且Qt是基于C++面向对象的思想来设计的,那么我们就很容易通过自己定义一些类,重写QLineEd ...
- ElasticSearch-6.2安装head插件
环境 Windows10企业版X64 JDK-1.8 ElasticSearch-6.2.4 node-v10.1 git客户端 步骤 安装node到K盘.如K:\nodejs. 把NODE_HOME ...
- 忘记时间戳的存在——Yii2超实用的自动更新时间戳的Behavior(改进版)
本文改进了Yii2中内置行为类TimestampBehavior,使得时间戳字段(如created_at,updated_at) 完全自己更新,方便得让你忘记它们的存在. Yii2的内置行为类Time ...
- java-自定义数据排序
导读:由于基本类型的数据都实现了一个共同的接口java.lang.Comparable接口,都实现了该接口下面的compareTo()方法,因此想要利用面向对象实现现实生活中的一些情景再现,比如新闻根 ...
- 混用Int与IntPtr导致GetProcAddress始终返回null
注意NET某些类型在不同平台上的长度 NET中用句柄用得最多的是在DLLIMPORT中,混用int与intptr可能会导致某些API声明在X64平台中表现不正常,如 [DllImport(&quo ...
- 怎么打开iPhone的开发者模式
1.需要连接Xcode 2.打开一个app就有了