MirroredVolume.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /* Copyright (C) 2014 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. namespace DiskAccessLibrary.LogicalDiskManager
  12. {
  13. public class MirroredVolume : DynamicVolume
  14. {
  15. private List<DynamicVolume> m_volumes;
  16. public MirroredVolume(List<DynamicVolume> volumes, Guid volumeGuid, Guid diskGroupGuid) : base(volumeGuid, diskGroupGuid)
  17. {
  18. m_volumes = volumes;
  19. }
  20. public override byte[] ReadSectors(long sectorIndex, int sectorCount)
  21. {
  22. foreach (DynamicVolume volume in m_volumes)
  23. {
  24. if (volume.IsOperational)
  25. {
  26. return volume.ReadSectors(sectorIndex, sectorCount);
  27. }
  28. }
  29. throw new InvalidOperationException("Cannot read from a failed volume");
  30. }
  31. public override void WriteSectors(long sectorIndex, byte[] data)
  32. {
  33. foreach (DynamicVolume volume in m_volumes)
  34. {
  35. volume.WriteSectors(sectorIndex, data);
  36. }
  37. }
  38. public override List<DynamicColumn> Columns
  39. {
  40. get
  41. {
  42. return m_volumes[0].Columns;
  43. }
  44. }
  45. public override long Size
  46. {
  47. get
  48. {
  49. return m_volumes[0].Size;
  50. }
  51. }
  52. public override bool IsHealthy
  53. {
  54. get
  55. {
  56. foreach (DynamicVolume volume in m_volumes)
  57. {
  58. if (!volume.IsHealthy)
  59. {
  60. return false;
  61. }
  62. }
  63. return true;
  64. }
  65. }
  66. /// <summary>
  67. /// A mirrroed volume can operate as long as a single component is operational
  68. /// </summary>
  69. public override bool IsOperational
  70. {
  71. get
  72. {
  73. foreach (DynamicVolume volume in m_volumes)
  74. {
  75. if (volume.IsOperational)
  76. {
  77. return true;
  78. }
  79. }
  80. return false;
  81. }
  82. }
  83. public List<DynamicVolume> Components
  84. {
  85. get
  86. {
  87. return m_volumes;
  88. }
  89. }
  90. }
  91. }