DiskGroupDatabase.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /* Copyright (C) 2014-2016 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
  2. *
  3. * You can redistribute this program and/or modify it under the terms of
  4. * the GNU Lesser Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. */
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Text;
  10. using Utilities;
  11. using DiskAccessLibrary;
  12. namespace DiskAccessLibrary.LogicalDiskManager
  13. {
  14. public partial class DiskGroupDatabase : VolumeManagerDatabase
  15. {
  16. List<DynamicDisk> m_disks = new List<DynamicDisk>(); // when updating the database, all dynamic disks in the group should be added
  17. public DiskGroupDatabase(List<DynamicDisk> disks, VolumeManagerDatabaseHeader databaseHeader, List<DatabaseRecord> databaseRecords, KernelUpdateLog kernelUpdateLog)
  18. : base(databaseHeader, databaseRecords, kernelUpdateLog)
  19. {
  20. m_disks = disks;
  21. }
  22. public override void WriteDatabaseHeader()
  23. {
  24. foreach (DynamicDisk disk in m_disks)
  25. {
  26. VolumeManagerDatabaseHeader.WriteToDisk(disk, this.DatabaseHeader);
  27. }
  28. }
  29. public override void WriteDatabaseRecordFragment(DatabaseRecordFragment fragment)
  30. {
  31. foreach (DynamicDisk disk in m_disks)
  32. {
  33. VolumeManagerDatabase.WriteDatabaseRecordFragment(disk, fragment, (int)this.DatabaseHeader.BlockSize);
  34. }
  35. }
  36. public override void SetKernelUpdateLogLastEntry(ulong committedTransactionID, ulong pendingTransactionID)
  37. {
  38. foreach (DynamicDisk disk in m_disks)
  39. {
  40. this.KernelUpdateLog.SetLastEntry(disk, committedTransactionID, pendingTransactionID);
  41. }
  42. }
  43. public static DiskGroupDatabase ReadFromDisks(List<DynamicDisk> disks, Guid diskGroupGuid)
  44. {
  45. List<DiskGroupDatabase> diskGroupDatabaseList = ReadFromDisks(disks);
  46. foreach (DiskGroupDatabase database in diskGroupDatabaseList)
  47. {
  48. if (database.DiskGroupGuid == diskGroupGuid)
  49. {
  50. return database;
  51. }
  52. }
  53. return null;
  54. }
  55. public static List<DiskGroupDatabase> ReadFromDisks(List<DynamicDisk> disks)
  56. {
  57. Dictionary<Guid, List<DynamicDisk>> groups = new Dictionary<Guid, List<DynamicDisk>>();
  58. foreach (DynamicDisk disk in disks)
  59. {
  60. Guid diskGroupGuid = disk.PrivateHeader.DiskGroupGuid;
  61. if (groups.ContainsKey(diskGroupGuid))
  62. {
  63. groups[diskGroupGuid].Add(disk);
  64. }
  65. else
  66. {
  67. List<DynamicDisk> list = new List<DynamicDisk>();
  68. list.Add(disk);
  69. groups.Add(diskGroupGuid, list);
  70. }
  71. }
  72. List<DiskGroupDatabase> result = new List<DiskGroupDatabase>();
  73. foreach (List<DynamicDisk> groupDisks in groups.Values)
  74. {
  75. VolumeManagerDatabase database = VolumeManagerDatabase.ReadFromDisk(groupDisks[0]);
  76. if (database != null && !database.IsDirty)
  77. {
  78. DiskGroupDatabase groupDatabase = new DiskGroupDatabase(groupDisks, database.DatabaseHeader, database.DatabaseRecords, database.KernelUpdateLog);
  79. // if there is issue with one disk we skip the group entirely
  80. if (!groupDatabase.IsDirty)
  81. {
  82. result.Add(groupDatabase);
  83. }
  84. }
  85. }
  86. return result;
  87. }
  88. public override bool IsDirty
  89. {
  90. get
  91. {
  92. return !this.IsIdenticalAcrossAllDisks || base.IsDirty;
  93. }
  94. }
  95. public bool IsIdenticalAcrossAllDisks
  96. {
  97. get
  98. {
  99. // Make sure database is identical across disks
  100. for (int index = 1; index < m_disks.Count; index++)
  101. {
  102. VolumeManagerDatabase seconary = VolumeManagerDatabase.ReadFromDisk(m_disks[index]);
  103. if (seconary.IsDirty)
  104. {
  105. return false;
  106. }
  107. if (this.DatabaseHeader.DiskGroupGuidString != seconary.DatabaseHeader.DiskGroupGuidString ||
  108. this.DatabaseHeader.DiskGroupName != seconary.DatabaseHeader.DiskGroupName)
  109. {
  110. return false;
  111. }
  112. if (this.DatabaseHeader.CommitTransactionID != seconary.DatabaseHeader.CommitTransactionID)
  113. {
  114. return false;
  115. }
  116. }
  117. return true;
  118. }
  119. }
  120. public bool AreDisksMissing
  121. {
  122. get
  123. {
  124. List<DiskRecord> diskRecords = this.DiskRecords;
  125. foreach (DiskRecord diskRecord in diskRecords)
  126. {
  127. if (DynamicDiskHelper.FindDisk(m_disks, diskRecord.DiskGuid) == null)
  128. {
  129. return true;
  130. }
  131. }
  132. return false;
  133. }
  134. }
  135. public List<DynamicDisk> Disks
  136. {
  137. get
  138. {
  139. return m_disks;
  140. }
  141. }
  142. }
  143. }