MoveExtentOperationBootRecord.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 Utilities;
  11. namespace DiskAccessLibrary
  12. {
  13. public class MoveExtentOperationBootRecord : RAID5ManagerBootRecord
  14. {
  15. public Guid VolumeGuid; // offset 16
  16. public ulong NumberOfCommittedSectors; // for an array, this would be the total of all sectors that can be now read from the new array
  17. public ulong ExtentID;
  18. public ulong OldStartSector;
  19. public ulong NewStartSector;
  20. public ulong BootRecordBackupSector;
  21. public ulong BackupBufferStartSector;
  22. public uint BackupBufferSizeLBA;
  23. public bool RestoreFromBuffer;
  24. public bool RestoreRAID5;
  25. public MoveExtentOperationBootRecord()
  26. {
  27. Operation = RAID5ManagerOperation.MoveExtent;
  28. }
  29. public MoveExtentOperationBootRecord(byte[] buffer) : base(buffer)
  30. {
  31. }
  32. protected override void ReadOperationParameters(byte[] buffer, int offset)
  33. {
  34. VolumeGuid = BigEndianConverter.ToGuid(buffer, offset + 0);
  35. NumberOfCommittedSectors = BigEndianConverter.ToUInt64(buffer, offset + 16);
  36. ExtentID = BigEndianConverter.ToUInt64(buffer, offset + 24);
  37. OldStartSector = BigEndianConverter.ToUInt64(buffer, offset + 32);
  38. NewStartSector = BigEndianConverter.ToUInt64(buffer, offset + 40);
  39. BootRecordBackupSector = BigEndianConverter.ToUInt64(buffer, offset + 48);
  40. BackupBufferStartSector = BigEndianConverter.ToUInt64(buffer, offset + 56);
  41. BackupBufferSizeLBA = BigEndianConverter.ToUInt32(buffer, offset + 64);
  42. RestoreFromBuffer = ByteReader.ReadByte(buffer, offset + 68) == 1;
  43. RestoreRAID5 = ByteReader.ReadByte(buffer, offset + 69) == 1;
  44. }
  45. protected override void WriteOperationParameters(byte[] buffer, int offset)
  46. {
  47. BigEndianWriter.WriteGuidBytes(buffer, offset + 0, VolumeGuid);
  48. BigEndianWriter.WriteUInt64(buffer, offset + 16, NumberOfCommittedSectors);
  49. BigEndianWriter.WriteUInt64(buffer, offset + 24, ExtentID);
  50. BigEndianWriter.WriteUInt64(buffer, offset + 32, OldStartSector);
  51. BigEndianWriter.WriteUInt64(buffer, offset + 40, NewStartSector);
  52. BigEndianWriter.WriteUInt64(buffer, offset + 48, BootRecordBackupSector);
  53. BigEndianWriter.WriteUInt64(buffer, offset + 56, BackupBufferStartSector);
  54. BigEndianWriter.WriteUInt64(buffer, offset + 64, BackupBufferSizeLBA);
  55. ByteWriter.WriteByte(buffer, offset + 68, Convert.ToByte(RestoreFromBuffer));
  56. ByteWriter.WriteByte(buffer, offset + 69, Convert.ToByte(RestoreRAID5));
  57. }
  58. }
  59. }