VolumeHelper.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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 DiskAccessLibrary.LogicalDiskManager;
  11. using Utilities;
  12. namespace DiskAccessLibrary
  13. {
  14. public partial class VolumeHelper
  15. {
  16. public static List<Volume> GetVolumes(List<Disk> disks)
  17. {
  18. List<Volume> result = new List<Volume>();
  19. List<DynamicDisk> dynamicDisks = new List<DynamicDisk>();
  20. // Get partitions:
  21. foreach (Disk disk in disks)
  22. {
  23. if (!DynamicDisk.IsDynamicDisk(disk))
  24. {
  25. List<Partition> partitions = BasicDiskHelper.GetPartitions(disk);
  26. foreach (Partition partition in partitions)
  27. {
  28. result.Add(partition);
  29. }
  30. }
  31. else
  32. {
  33. dynamicDisks.Add(DynamicDisk.ReadFromDisk(disk));
  34. }
  35. }
  36. // Get dynamic volumes
  37. List<DynamicVolume> dynamicVolumes = DynamicVolumeHelper.GetDynamicVolumes(dynamicDisks);
  38. foreach (DynamicVolume volume in dynamicVolumes)
  39. {
  40. result.Add(volume);
  41. }
  42. return result;
  43. }
  44. public static string GetVolumeTypeString(Volume volume)
  45. {
  46. if (volume is SimpleVolume)
  47. {
  48. return "Simple";
  49. }
  50. else if (volume is SpannedVolume)
  51. {
  52. return "Spanned";
  53. }
  54. else if (volume is StripedVolume)
  55. {
  56. return "Striped";
  57. }
  58. else if (volume is MirroredVolume)
  59. {
  60. return "Mirrored";
  61. }
  62. else if (volume is Raid5Volume)
  63. {
  64. return "RAID-5";
  65. }
  66. else if (volume is Partition)
  67. {
  68. return "Partition";
  69. }
  70. else
  71. {
  72. return "Unknown";
  73. }
  74. }
  75. public static string GetVolumeStatusString(Volume volume)
  76. {
  77. if (volume is DynamicVolume)
  78. {
  79. if (volume is MirroredVolume)
  80. {
  81. if (!((MirroredVolume)volume).IsHealthy && ((MirroredVolume)volume).IsOperational)
  82. {
  83. return "Failed Rd";
  84. }
  85. }
  86. else if (volume is Raid5Volume)
  87. {
  88. if (!((Raid5Volume)volume).IsHealthy && ((Raid5Volume)volume).IsOperational)
  89. {
  90. return "Failed Rd";
  91. }
  92. }
  93. if (((DynamicVolume)volume).IsHealthy)
  94. {
  95. return "Healthy";
  96. }
  97. else
  98. {
  99. return "Failed";
  100. }
  101. }
  102. else if (volume is Partition)
  103. {
  104. return "Healthy";
  105. }
  106. else
  107. {
  108. return String.Empty;
  109. }
  110. }
  111. }
  112. }