/Main/Source/Components/Targets/DatabaseTargetTextStorage.cs

# · C# · 311 lines · 255 code · 49 blank · 7 comment · 43 complexity · 1510a23574302a57ac27e447587bda6b MD5 · raw file

  1. using System;
  2. using System.IO;
  3. using System.Xml;
  4. using System.Xml.XPath;
  5. using System.Reflection;
  6. using System.Collections.Generic;
  7. using BplusDotNet;
  8. namespace Sandcastle.Components.Targets
  9. {
  10. public sealed class DatabaseTargetTextStorage : DatabaseTargetStorage
  11. {
  12. #region Private Fields
  13. private int _count;
  14. private bool _isSystem;
  15. private bool _isExisted;
  16. private string _treeFileName;
  17. private string _blockFileName;
  18. private BplusTree _plusTree;
  19. private MemoryTargetStorage _quickStorage;
  20. private DatabaseTargetCache _targetCache;
  21. #endregion
  22. #region Constructors and Destructor
  23. public DatabaseTargetTextStorage(bool isSystem, bool createNotFound)
  24. : base(isSystem, createNotFound)
  25. {
  26. _isSystem = isSystem;
  27. string assemblyPath = Path.GetDirectoryName(
  28. Assembly.GetExecutingAssembly().Location);
  29. string workingDir = Path.Combine(assemblyPath, "Data");
  30. this.Initialize(workingDir, createNotFound);
  31. }
  32. public DatabaseTargetTextStorage(bool isSystem, bool createNotFound,
  33. string workingDir)
  34. : base(isSystem, createNotFound, workingDir)
  35. {
  36. _isSystem = isSystem;
  37. this.Initialize(workingDir, createNotFound);
  38. }
  39. #endregion
  40. #region Public Properties
  41. public override bool Exists
  42. {
  43. get
  44. {
  45. return (_isExisted && _count != 0);
  46. }
  47. }
  48. public override int Count
  49. {
  50. get
  51. {
  52. return _count;
  53. }
  54. }
  55. public override Target this[string id]
  56. {
  57. get
  58. {
  59. Target target = null;
  60. if (_plusTree == null)
  61. {
  62. return target;
  63. }
  64. if (_quickStorage != null)
  65. {
  66. target = _quickStorage[id];
  67. if (target != null)
  68. {
  69. return target;
  70. }
  71. }
  72. if (_targetCache != null)
  73. {
  74. target = _targetCache[id];
  75. if (target != null)
  76. {
  77. return target;
  78. }
  79. }
  80. if (_plusTree.ContainsKey(id))
  81. {
  82. target = TargetsReader.Read(_plusTree[id]);
  83. if (target != null && _targetCache != null)
  84. {
  85. _targetCache.Add(target);
  86. }
  87. }
  88. return target;
  89. }
  90. }
  91. public override DatabaseTargetCache Cache
  92. {
  93. get
  94. {
  95. return _targetCache;
  96. }
  97. }
  98. #endregion
  99. #region Public Methods
  100. public override bool Contains(string id)
  101. {
  102. if (String.IsNullOrEmpty(id) || _plusTree == null)
  103. {
  104. return false;
  105. }
  106. return _plusTree.ContainsKey(id);
  107. }
  108. public override void Add(Target target)
  109. {
  110. if (target == null || _plusTree == null)
  111. {
  112. return;
  113. }
  114. if (!_plusTree.ContainsKey(target.id))
  115. {
  116. _count++;
  117. }
  118. _plusTree[target.id] = TargetsWriter.Write(target);
  119. }
  120. public override void Clear()
  121. {
  122. }
  123. #endregion
  124. #region Private Methods
  125. private void Initialize(string workingDir, bool createNotFound)
  126. {
  127. if (String.IsNullOrEmpty(workingDir))
  128. {
  129. throw new InvalidOperationException();
  130. }
  131. _quickStorage = new MemoryTargetStorage();
  132. if (!Directory.Exists(workingDir))
  133. {
  134. Directory.CreateDirectory(workingDir);
  135. }
  136. if (_isSystem)
  137. {
  138. _treeFileName = Path.Combine(workingDir, "LinkT2.6.10621.1.dat");
  139. _blockFileName = Path.Combine(workingDir, "LinkB2.6.10621.1.dat");
  140. }
  141. else
  142. {
  143. string tempFile = Path.GetFileNameWithoutExtension(
  144. Path.GetTempFileName());
  145. _treeFileName = Path.Combine(workingDir, tempFile + "Tree.dat");
  146. _blockFileName = Path.Combine(workingDir, tempFile + "Block.dat");
  147. }
  148. if (File.Exists(_treeFileName) && File.Exists(_blockFileName))
  149. {
  150. _isExisted = true;
  151. _plusTree = hBplusTree.ReOpen(_treeFileName, _blockFileName);
  152. if (_plusTree.ContainsKey("$DataCount$"))
  153. {
  154. _count = Convert.ToInt32(_plusTree["$DataCount$"]);
  155. }
  156. this.AddQuickTargets();
  157. //if (_count > 0)
  158. //{
  159. //}
  160. }
  161. else
  162. {
  163. _count = 0;
  164. if (createNotFound)
  165. {
  166. _plusTree = hBplusTree.Initialize(_treeFileName,
  167. _blockFileName, 64);
  168. }
  169. }
  170. if (_plusTree != null)
  171. {
  172. _targetCache = new DatabaseTargetCache(100);
  173. }
  174. }
  175. private void AddQuickTargets()
  176. {
  177. string dataDir = Environment.ExpandEnvironmentVariables(
  178. @"%DXROOT%\Data\Reflection");
  179. dataDir = Path.GetFullPath(dataDir);
  180. if (!Directory.Exists(dataDir))
  181. {
  182. return;
  183. }
  184. string[] quickList
  185. = {
  186. "System.xml",
  187. "System.Xml.xml",
  188. "System.Drawing.xml",
  189. "System.Collections.xml",
  190. "System.Collections.Generic.xml",
  191. "System.Collections.ObjectModel.xml",
  192. "System.Collections.Specialized.xml",
  193. "System.Text.xml",
  194. "System.Windows.xml",
  195. "System.Windows.Media.xml",
  196. };
  197. foreach (string fileName in quickList)
  198. {
  199. string filePath = Path.Combine(dataDir, fileName);
  200. if (File.Exists(filePath))
  201. {
  202. this.AddTargets(filePath, ReferenceLinkType.None);
  203. }
  204. }
  205. }
  206. private void AddTargets(string file, ReferenceLinkType type)
  207. {
  208. try
  209. {
  210. XPathDocument document = new XPathDocument(file);
  211. // This will only load into the memory...
  212. TargetCollectionXmlUtilities.AddTargets(_quickStorage,
  213. document.CreateNavigator(), type);
  214. }
  215. catch
  216. {
  217. }
  218. }
  219. #endregion
  220. #region IDisposable Members
  221. protected override void Dispose(bool disposing)
  222. {
  223. if (_plusTree != null)
  224. {
  225. try
  226. {
  227. // Save the system reflection database, if newly created...
  228. if (_isSystem)
  229. {
  230. if (!_isExisted)
  231. {
  232. // Add some metadata...
  233. _plusTree["$DataCount$"] = _count.ToString();
  234. _plusTree["$DataVersion$"] = "2.6.10621.1";
  235. _plusTree.Commit();
  236. }
  237. }
  238. _plusTree.Shutdown();
  239. _plusTree = null;
  240. // For the non-system reflection database, delete after use...
  241. if (!_isSystem)
  242. {
  243. if (!String.IsNullOrEmpty(_treeFileName) &&
  244. File.Exists(_treeFileName))
  245. {
  246. File.Delete(_treeFileName);
  247. }
  248. if (!String.IsNullOrEmpty(_blockFileName) &&
  249. File.Exists(_blockFileName))
  250. {
  251. File.Delete(_blockFileName);
  252. }
  253. }
  254. }
  255. catch
  256. {
  257. }
  258. }
  259. }
  260. #endregion
  261. }
  262. }