ISvdStorage.cs 837 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. namespace SvdCli.Storage
  3. {
  4. public interface ISvdStorage
  5. {
  6. string ProductId { get; }
  7. string ProductVersion { get; }
  8. uint BlockSize { get; }
  9. ulong BlockCount { get; }
  10. uint MaxTransferLength { get; }
  11. bool SupportTrim { get; }
  12. bool WriteProtect { get; }
  13. void Init();
  14. void Exit();
  15. void ReadBlocks(byte[] buffer, ulong blockIndex, uint blockCount);
  16. void WriteBlocks(byte[] buffer, ulong blockIndex, uint blockCount);
  17. int Read(byte[] buffer, long offset, int index, int count);
  18. void Write(byte[] buffer, long offset, int index, int count);
  19. void Flush();
  20. void Trim(params TrimDescriptor[] descriptors);
  21. event EventHandler Mounted;
  22. void FireMountedEvent();
  23. }
  24. }