LockHelper.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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.LogicalDiskManager;
  11. namespace DiskAccessLibrary
  12. {
  13. public partial class LockHelper
  14. {
  15. public static LockStatus LockAllOrNone(List<DynamicDisk> disksToLock, List<DynamicVolume> volumesToLock)
  16. {
  17. bool success = DiskLockHelper.LockAllOrNone(disksToLock);
  18. if (!success)
  19. {
  20. return LockStatus.CannotLockDisk;
  21. }
  22. List<Guid> volumeGuids = DynamicVolumeHelper.GetVolumeGuids(volumesToLock);
  23. success = LockAllMountedVolumesOrNone(volumeGuids);
  24. if (!success)
  25. {
  26. DiskLockHelper.ReleaseLock(disksToLock);
  27. return LockStatus.CannotLockVolume;
  28. }
  29. return LockStatus.Success;
  30. }
  31. }
  32. }