/EventManagement/EventBusManager.cs

# · C# · 277 lines · 204 code · 47 blank · 26 comment · 37 complexity · 10f6e004af8d895fee59fdc1a3b9aba6 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Diagnostics;
  4. using System.IO;
  5. using System.Xml.Linq;
  6. using System.Xml.XPath;
  7. using System.Reflection;
  8. namespace SharpObjects.EventBus
  9. {
  10. public static class EventBusManager
  11. {
  12. public const string guid = "_{313DD131-BA38-4370-B301-44110922F64B}";
  13. public const string EventBusId = "event_bus" + guid;
  14. public const string ConfigurationFileName = "SharpObjects.EventBus.config";
  15. public const string EventBusDescriptorFileName = "SharpObjects.EventBusDescriptor.json";
  16. private const string SharpObjectsApplicationFolderTemplate = "{0}\\SharpObjects\\";
  17. private static EventBusDescirptor eventBusDescriptor = null;
  18. private static IEventBus eventBusInstance = null;
  19. public static IEventBus EventBus
  20. {
  21. get
  22. {
  23. if (System.Web.HttpContext.Current == null)
  24. {
  25. if(eventBusInstance == null)
  26. {
  27. Initialize();
  28. }
  29. return eventBusInstance;
  30. }
  31. else
  32. {
  33. if (eventBusDescriptor.IsApplicationWide)
  34. {
  35. IEventBus eventBus = (IEventBus)System.Web.HttpContext.Current.Application[EventBusId];
  36. if(eventBus == null)
  37. {
  38. Initialize();
  39. }
  40. return (IEventBus)System.Web.HttpContext.Current.Application[EventBusId];
  41. }
  42. else
  43. {
  44. IEventBus eventBus = (IEventBus)System.Web.HttpContext.Current.Session[EventBusId];
  45. if(eventBus == null)
  46. {
  47. Initialize();
  48. }
  49. return (IEventBus)System.Web.HttpContext.Current.Session[EventBusId];
  50. }
  51. }
  52. }
  53. }
  54. private static void SetEventBus(IEventBus eventBus)
  55. {
  56. if (System.Web.HttpContext.Current == null)
  57. {
  58. eventBusInstance = eventBus;
  59. }
  60. else
  61. {
  62. if(eventBusDescriptor.IsApplicationWide)
  63. {
  64. System.Web.HttpContext.Current.Application[EventBusId] = eventBus;
  65. }
  66. else
  67. {
  68. System.Web.HttpContext.Current.Session[EventBusId] = eventBus;
  69. }
  70. }
  71. }
  72. /*
  73. SharpObjects.EventBus.config file format:
  74. <?xml version="1.0" encoding="utf-8" ?>
  75. <configuration>
  76. <event_bus>
  77. <assembly>SharpObjects.EventBus.dll</assembly>
  78. <type>SharpObjects.EventBus.EventBus</type>
  79. <!-- arguments to pass to the constructor if any -->
  80. <arguments>
  81. </arguments>
  82. <argiment>argument 1</argument>
  83. <argiment>argument 2</argument>
  84. </event_bus>
  85. </configuration>
  86. SharpObjects.EventBusDescriptor.json file sample:
  87. {
  88. "AssemblyPath":"SharpObjects.EventBus.dll",
  89. "TypeName":"SharpObjects.EventBus.EventBus",
  90. "Arguments":null
  91. }
  92. */
  93. static void Initialize()
  94. {
  95. string location = "SharpObjects.EventBus.EventBusFactory()";
  96. try
  97. {
  98. eventBusDescriptor = new EventBusDescirptor()
  99. {
  100. AssemblyPath = "SharpObjects.EventBus.dll",
  101. TypeName = "SharpObjects.EventBus.EventBus"
  102. };
  103. SetEventBus(new EventBus());
  104. Assembly currentAssembly = Assembly.GetExecutingAssembly();
  105. if(currentAssembly != null)
  106. {
  107. string configFilePath = currentAssembly.Location;
  108. string assemblyDirectory = Path.GetDirectoryName(configFilePath);
  109. configFilePath = assemblyDirectory + "\\" + ConfigurationFileName;
  110. string eventBusDescriptorFilePath = assemblyDirectory + "\\" + EventBusDescriptorFileName;
  111. if(File.Exists(eventBusDescriptorFilePath))
  112. {
  113. eventBusDescriptor = GetEventBusDescriptorFromJsonDescriptor(eventBusDescriptorFilePath,
  114. assemblyDirectory);
  115. }
  116. if (eventBusDescriptor == null && File.Exists(configFilePath))
  117. {
  118. eventBusDescriptor = GetEventBusDescriptorFromXmlConfigFile(configFilePath, assemblyDirectory);
  119. }
  120. if (eventBusDescriptor != null)
  121. {
  122. Assembly assembly = Assembly.LoadFrom(eventBusDescriptor.AssemblyPath);
  123. if (assembly == null)
  124. {
  125. return;
  126. }
  127. Type type = assembly.GetType(eventBusDescriptor.TypeName);
  128. if (type == null)
  129. {
  130. return;
  131. }
  132. IEventBus eventBus = (IEventBus)Activator.CreateInstance(type, eventBusDescriptor.Arguments);
  133. SetEventBus(eventBus);
  134. }
  135. }
  136. }
  137. catch (Exception ex)
  138. {
  139. string message = string.Format("SharpObjects.EventBus ERROR.\nLOCATION:{0}\n\n {1}\n\nSTACK TRACE:\n\n{2}",
  140. location, ex.Message, ex.StackTrace);
  141. EventLog.WriteEntry("SharpObjects", message , EventLogEntryType.Error);
  142. }
  143. }
  144. private static EventBusDescirptor GetEventBusDescriptorFromJsonDescriptor(string eventBusDescriptorFilePath, string assemblyDirectory)
  145. {
  146. string location = "SharpObjects.EventBus.GetEventBusDescriptorFromJsonDescriptor()";
  147. try
  148. {
  149. string json = File.ReadAllText(eventBusDescriptorFilePath);
  150. EventBusDescirptor eventBusDescriptor =
  151. (EventBusDescirptor) JsonSerialization.Deserialize<EventBusDescirptor>(json);
  152. if (!Path.IsPathRooted(eventBusDescriptor.AssemblyPath))
  153. {
  154. eventBusDescriptor.AssemblyPath = assemblyDirectory + "\\" + eventBusDescriptor.AssemblyPath;
  155. }
  156. if (!File.Exists(eventBusDescriptor.AssemblyPath))
  157. {
  158. return null;
  159. }
  160. return eventBusDescriptor;
  161. }
  162. catch (Exception ex)
  163. {
  164. string message = string.Format("SharpObjects.EventBus ERROR.\nLOCATION:{0}\n\n {1}\n\nSTACK TRACE:\n\n{2}",
  165. location, ex.Message, ex.StackTrace);
  166. EventLog.WriteEntry("SharpObjects", message, EventLogEntryType.Error);
  167. }
  168. return null;
  169. }
  170. private static EventBusDescirptor GetEventBusDescriptorFromXmlConfigFile(string configFilePath, string assemblyDirectory)
  171. {
  172. string location = "SharpObjects.EventBus.GetEventBusDescriptorFromXmlConfigFile()";
  173. try
  174. {
  175. EventBusDescirptor eventBusDescirptor = new EventBusDescirptor();
  176. XElement root = XElement.Load(configFilePath);
  177. XElement assemblyElement = root.XPathSelectElement("/event_bus/assembly");
  178. XElement typeElement = root.XPathSelectElement("/event_bus/type");
  179. XElement isApplicationwideElement = root.XPathSelectElement("/event_bus/is_applicatoinwide");
  180. if (assemblyElement == null || typeElement == null)
  181. {
  182. return null;
  183. }
  184. string assemblyPath = assemblyElement.Value.Trim();
  185. if (!Path.IsPathRooted(assemblyPath))
  186. {
  187. assemblyPath = assemblyDirectory + "\\" + assemblyPath;
  188. }
  189. if (!File.Exists(assemblyPath))
  190. {
  191. return null;
  192. }
  193. eventBusDescirptor.AssemblyPath = assemblyPath;
  194. eventBusDescirptor.TypeName = typeElement.Value.Trim();
  195. if(isApplicationwideElement != null)
  196. {
  197. if(isApplicationwideElement.Value.Trim().ToLower() == "false")
  198. {
  199. eventBusDescirptor.IsApplicationWide = false;
  200. }
  201. }
  202. IEnumerable<XElement> argumentCollection =
  203. root.XPathSelectElements("/event_bus/arguments/argument");
  204. List<object> argumentList = new List<object>();
  205. argumentList.AddRange(argumentCollection);
  206. if (argumentList.Count > 0)
  207. {
  208. foreach (XElement argumentElement in argumentCollection)
  209. {
  210. argumentList.Add(argumentElement.Value);
  211. }
  212. eventBusDescirptor.Arguments = argumentList.ToArray();
  213. }
  214. return eventBusDescirptor;
  215. }
  216. catch (Exception ex)
  217. {
  218. string message = string.Format("SharpObjects.EventBus ERROR.\nLOCATION:{0}\n\n {1}\n\nSTACK TRACE:\n\n{2}",
  219. location, ex.Message, ex.StackTrace);
  220. EventLog.WriteEntry("SharpObjects", message, EventLogEntryType.Error);
  221. }
  222. return null;
  223. }
  224. }
  225. }