SelectVolumeForm.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Text;
  6. using System.Windows.Forms;
  7. using DiskAccessLibrary;
  8. using DiskAccessLibrary.LogicalDiskManager;
  9. using Utilities;
  10. namespace ISCSIConsole
  11. {
  12. public partial class SelectVolumeForm : Form
  13. {
  14. private Volume m_selectedVolume;
  15. private bool m_isReadOnly;
  16. public SelectVolumeForm()
  17. {
  18. InitializeComponent();
  19. }
  20. private void SelectPhysicalDiskForm_Load(object sender, EventArgs e)
  21. {
  22. List<Volume> volumes = WindowsVolumeHelper.GetVolumes();
  23. for(int index = 0; index < volumes.Count; index++)
  24. {
  25. Volume volume = volumes[index];
  26. string title = String.Format("Volume {0}", index);
  27. string type = VolumeHelper.GetVolumeTypeString(volume);
  28. string status = VolumeHelper.GetVolumeStatusString(volume);
  29. ulong volumeID = 0;
  30. string name = String.Empty;
  31. if (volume is DynamicVolume)
  32. {
  33. volumeID = ((DynamicVolume)volume).VolumeID;
  34. name = ((DynamicVolume)volume).Name;
  35. }
  36. else if (volume is GPTPartition)
  37. {
  38. name = ((GPTPartition)volume).PartitionName;
  39. }
  40. ListViewItem item = new ListViewItem(title);
  41. item.SubItems.Add(name);
  42. item.SubItems.Add(type);
  43. item.SubItems.Add(status);
  44. item.SubItems.Add(FormattingHelper.GetStandardSizeString(volume.Size));
  45. item.Tag = volume;
  46. listVolumes.Items.Add(item);
  47. }
  48. }
  49. private void btnOK_Click(object sender, EventArgs e)
  50. {
  51. if (listVolumes.SelectedItems.Count > 0)
  52. {
  53. Volume selectedVolume = (Volume)listVolumes.SelectedItems[0].Tag;
  54. if (selectedVolume is DynamicVolume && !((DynamicVolume)selectedVolume).IsOperational)
  55. {
  56. MessageBox.Show("The selected volume is not operational", "Error");
  57. return;
  58. }
  59. if (!chkReadOnly.Checked)
  60. {
  61. bool skipLock = (Environment.OSVersion.Version.Major >= 6 && VolumeInfo.IsOffline(selectedVolume));
  62. if (!skipLock)
  63. {
  64. Guid? volumeGuid = WindowsVolumeHelper.GetWindowsVolumeGuid(selectedVolume);
  65. if (Environment.OSVersion.Version.Major >= 6)
  66. {
  67. // Windows Vista / 7 enforce various limitations on direct write operations to volumes and disks.
  68. // We either have to take the disk(s) offline or use the OS volume handle for write operations.
  69. if (!volumeGuid.HasValue)
  70. {
  71. MessageBox.Show("The selected volume is not recognized by your operating system");
  72. return;
  73. }
  74. selectedVolume = new OperatingSystemVolume(volumeGuid.Value, selectedVolume.BytesPerSector, selectedVolume.Size, chkReadOnly.Checked);
  75. }
  76. bool isLocked = false;
  77. if (volumeGuid.HasValue)
  78. {
  79. isLocked = WindowsVolumeManager.ExclusiveLock(volumeGuid.Value);
  80. }
  81. if (!isLocked)
  82. {
  83. MessageBox.Show("Unable to lock the volume", "Error");
  84. return;
  85. }
  86. }
  87. }
  88. m_selectedVolume = selectedVolume;
  89. m_isReadOnly = chkReadOnly.Checked;
  90. this.DialogResult = DialogResult.OK;
  91. this.Close();
  92. }
  93. else
  94. {
  95. MessageBox.Show("No volume was selected", "Error");
  96. return;
  97. }
  98. }
  99. private IList<PhysicalDisk> GetVolumeDisks(Volume volume)
  100. {
  101. SortedList<int, PhysicalDisk> disks = new SortedList<int,PhysicalDisk>();
  102. if (volume is DynamicVolume)
  103. {
  104. foreach (DiskExtent extent in ((DynamicVolume)volume).Extents)
  105. {
  106. if (extent.Disk is PhysicalDisk)
  107. {
  108. PhysicalDisk disk = (PhysicalDisk)extent.Disk;
  109. if (!disks.ContainsKey(disk.PhysicalDiskIndex))
  110. {
  111. disks.Add(disk.PhysicalDiskIndex, disk);
  112. }
  113. }
  114. }
  115. }
  116. else if (volume is Partition)
  117. {
  118. Partition partition = (Partition)volume;
  119. if (partition.Disk is PhysicalDisk)
  120. {
  121. PhysicalDisk disk = (PhysicalDisk)partition.Disk;
  122. disks.Add(disk.PhysicalDiskIndex, (PhysicalDisk)disk);
  123. }
  124. }
  125. return disks.Values;
  126. }
  127. private void btnCancel_Click(object sender, EventArgs e)
  128. {
  129. this.DialogResult = DialogResult.Cancel;
  130. this.Close();
  131. }
  132. public Volume SelectedVolume
  133. {
  134. get
  135. {
  136. return m_selectedVolume;
  137. }
  138. }
  139. public bool IsReadOnly
  140. {
  141. get
  142. {
  143. return m_isReadOnly;
  144. }
  145. }
  146. private void listPhysicalDisks_ColumnWidthChanging(object sender, ColumnWidthChangingEventArgs e)
  147. {
  148. e.NewWidth = ((ListView)sender).Columns[e.ColumnIndex].Width;
  149. e.Cancel = true;
  150. }
  151. }
  152. }