ISvdStorage.cs 857 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. Guid Guid { get; }
  14. void Init();
  15. void Exit();
  16. void ReadBlocks(byte[] buffer, ulong blockIndex, uint blockCount);
  17. void WriteBlocks(byte[] buffer, ulong blockIndex, uint blockCount);
  18. int Read(byte[] buffer, long offset, int index, int count);
  19. void Write(byte[] buffer, long offset, int index, int count);
  20. void Flush();
  21. void Trim(params TrimDescriptor[] descriptors);
  22. event EventHandler Mounted;
  23. void FireMountedEvent();
  24. }
  25. }