LockHelper.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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 DiskAccessLibrary;
  11. namespace DiskAccessLibrary
  12. {
  13. public enum LockStatus
  14. {
  15. Success,
  16. CannotLockDisk,
  17. CannotLockVolume,
  18. }
  19. public partial class LockHelper
  20. {
  21. /// <summary>
  22. /// Will lock physical basic disk and all volumes on it.
  23. /// If the operation is not completed successfully, all locks will be releases.
  24. /// </summary>
  25. public static LockStatus LockBasicDiskAndVolumesOrNone(PhysicalDisk disk)
  26. {
  27. bool success = disk.ExclusiveLock();
  28. if (!success)
  29. {
  30. return LockStatus.CannotLockDisk;
  31. }
  32. List<Partition> partitions = BasicDiskHelper.GetPartitions(disk);
  33. List<Guid> volumeGuids = new List<Guid>();
  34. foreach (Partition partition in partitions)
  35. {
  36. Guid? windowsVolumeGuid = WindowsVolumeHelper.GetWindowsVolumeGuid(partition);
  37. if (windowsVolumeGuid.HasValue)
  38. {
  39. volumeGuids.Add(windowsVolumeGuid.Value);
  40. }
  41. else
  42. {
  43. return LockStatus.CannotLockVolume;
  44. }
  45. }
  46. success = LockAllMountedVolumesOrNone(volumeGuids);
  47. if (!success)
  48. {
  49. disk.ReleaseLock();
  50. return LockStatus.CannotLockVolume;
  51. }
  52. return LockStatus.Success;
  53. }
  54. public static void UnlockBasicDiskAndVolumes(PhysicalDisk disk)
  55. {
  56. List<Partition> partitions = BasicDiskHelper.GetPartitions(disk);
  57. foreach (Partition partition in partitions)
  58. {
  59. Guid? windowsVolumeGuid = WindowsVolumeHelper.GetWindowsVolumeGuid(partition);
  60. if (windowsVolumeGuid.HasValue)
  61. {
  62. if (WindowsVolumeManager.IsMounted(windowsVolumeGuid.Value))
  63. {
  64. WindowsVolumeManager.ReleaseLock(windowsVolumeGuid.Value);
  65. }
  66. }
  67. }
  68. disk.ReleaseLock();
  69. }
  70. public static bool LockAllMountedVolumesOrNone(List<Guid> volumeGuids)
  71. {
  72. bool success = true;
  73. int lockIndex;
  74. for (lockIndex = 0; lockIndex < volumeGuids.Count; lockIndex++)
  75. {
  76. // NOTE: The fact that a volume does not have mount points, does not mean it is not mounted and cannot be accessed by Windows
  77. success = WindowsVolumeManager.ExclusiveLockIfMounted(volumeGuids[lockIndex]);
  78. if (!success)
  79. {
  80. break;
  81. }
  82. }
  83. if (!success)
  84. {
  85. // release the volumes that were locked
  86. for (int index = 0; index < lockIndex; index++)
  87. {
  88. WindowsVolumeManager.ReleaseLock(volumeGuids[lockIndex]);
  89. }
  90. }
  91. return success;
  92. }
  93. }
  94. }