LockUtils.cs 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* Copyright (C) 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 ISCSIConsole
  12. {
  13. public class LockUtils
  14. {
  15. public static void ReleaseDisks(List<Disk> disks)
  16. {
  17. foreach (Disk disk in disks)
  18. {
  19. ReleaseDisk(disk);
  20. }
  21. }
  22. public static void ReleaseDisk(Disk disk)
  23. {
  24. if (disk is DiskImage)
  25. {
  26. ((DiskImage)disk).ReleaseLock();
  27. }
  28. else if (disk is RAMDisk)
  29. {
  30. ((RAMDisk)disk).Free();
  31. }
  32. #if Win32
  33. else if (disk is PhysicalDisk)
  34. {
  35. if (!DiskAccessLibrary.LogicalDiskManager.DynamicDisk.IsDynamicDisk(disk))
  36. {
  37. LockHelper.UnlockBasicDiskAndVolumes((PhysicalDisk)disk);
  38. try
  39. {
  40. ((PhysicalDisk)disk).UpdateProperties();
  41. }
  42. catch (System.IO.IOException)
  43. {
  44. }
  45. }
  46. }
  47. else if (disk is VolumeDisk)
  48. {
  49. bool skippedLock = (Environment.OSVersion.Version.Major >= 6 && VolumeInfo.IsOffline(((VolumeDisk)disk).Volume));
  50. if (!skippedLock)
  51. {
  52. Guid? windowsVolumeGuid = WindowsVolumeHelper.GetWindowsVolumeGuid(((VolumeDisk)disk).Volume);
  53. if (windowsVolumeGuid.HasValue)
  54. {
  55. WindowsVolumeManager.ReleaseLock(windowsVolumeGuid.Value);
  56. }
  57. }
  58. }
  59. #endif
  60. }
  61. }
  62. }