RawImageStorage.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. using System;
  2. using System.IO;
  3. namespace SvdCli.Storage.Implements
  4. {
  5. public class RawImageStorage : ISvdStorage
  6. {
  7. private readonly string _imageFilePath;
  8. private FileStream _fileStream;
  9. private bool _sparse;
  10. public string ProductId { get; } = "Svd RawImage Disk";
  11. public string ProductVersion { get; } = "1.0";
  12. public uint BlockSize { get; } = 512;
  13. public uint MaxTransferLength { get; } = 64 * CapacityUnits.KiloByte;
  14. public bool SupportTrim { get; }
  15. public ulong BlockCount { get; }
  16. public bool WriteProtect { get; }
  17. public event EventHandler Mounted;
  18. public RawImageStorage(string imageFilePath, bool readOnly = false)
  19. {
  20. _imageFilePath = imageFilePath;
  21. WriteProtect = readOnly;
  22. SupportTrim = !readOnly;
  23. BlockCount = (ulong)new FileInfo(_imageFilePath).Length / BlockSize;
  24. }
  25. public void Init()
  26. {
  27. if (null != _fileStream) return;
  28. var access = WriteProtect ? FileAccess.Read : FileAccess.ReadWrite;
  29. _fileStream = new FileStream(_imageFilePath, FileMode.Open, access, FileShare.None, (int)MaxTransferLength);
  30. if (false == WriteProtect) _sparse = _fileStream.SetSparse();
  31. }
  32. public void Exit()
  33. {
  34. if (null == _fileStream) return;
  35. if (false == WriteProtect)
  36. {
  37. lock (_fileStream)
  38. {
  39. _fileStream.Flush(true);
  40. }
  41. }
  42. lock (_fileStream)
  43. {
  44. _fileStream.Close();
  45. _fileStream = null;
  46. }
  47. }
  48. public void ReadBlocks(byte[] buffer, ulong blockIndex, uint blockCount)
  49. {
  50. lock (_fileStream)
  51. {
  52. _fileStream.Position = (long)(blockIndex * BlockSize);
  53. var length = (int)(blockCount * BlockSize);
  54. var offset = 0;
  55. while (length > 0)
  56. {
  57. var read = _fileStream.Read(buffer, offset, length);
  58. length -= read;
  59. offset += read;
  60. }
  61. }
  62. }
  63. public void WriteBlocks(byte[] buffer, ulong blockIndex, uint blockCount)
  64. {
  65. lock (_fileStream)
  66. {
  67. _fileStream.Position = (long)(blockIndex * BlockSize);
  68. _fileStream.Write(buffer, 0, (int)(blockCount * BlockSize));
  69. }
  70. }
  71. public int Read(byte[] buffer, long offset, int index, int count)
  72. {
  73. lock (_fileStream)
  74. {
  75. _fileStream.Position = offset;
  76. return _fileStream.Read(buffer, index, count);
  77. }
  78. }
  79. public void Write(byte[] buffer, long offset, int index, int count)
  80. {
  81. lock (_fileStream)
  82. {
  83. _fileStream.Position = offset;
  84. _fileStream.Write(buffer, index, count);
  85. }
  86. }
  87. public void Flush()
  88. {
  89. lock (_fileStream) _fileStream.Flush(true);
  90. }
  91. public void Trim(params TrimDescriptor[] descriptors)
  92. {
  93. lock (_fileStream)
  94. {
  95. foreach (var trim in descriptors)
  96. {
  97. if (_sparse && _fileStream.Trim(trim.Offset, trim.Length)) continue;
  98. _fileStream.Position = trim.Offset;
  99. var totalLength = (int)trim.Length;
  100. var buffer = new byte[Math.Min(64 * 1024, totalLength)];
  101. while (0 < totalLength)
  102. {
  103. _fileStream.Write(buffer, 0, buffer.Length);
  104. totalLength -= buffer.Length;
  105. }
  106. }
  107. }
  108. }
  109. public void FireMountedEvent()
  110. {
  111. Mounted?.Invoke(this, EventArgs.Empty);
  112. }
  113. }
  114. }