StandaloneBddImageStorage.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. using System;
  2. namespace SvdCli.Storage.Implements
  3. {
  4. public class StandaloneBddImageStorage : ISvdStorage
  5. {
  6. // TODO: StandaloneBddImageStorage
  7. public string ProductId { get; } = "Svd BddImage";
  8. public string ProductVersion { get; } = "1.0";
  9. public uint BlockSize { get; } = 512;
  10. public ulong BlockCount { get; }
  11. public uint MaxTransferLength { get; }
  12. public bool SupportTrim { get; }
  13. public bool WriteProtect { get; }
  14. public event EventHandler Mounted;
  15. public void Init()
  16. {
  17. throw new NotImplementedException();
  18. }
  19. public void Exit()
  20. {
  21. throw new NotImplementedException();
  22. }
  23. public void ReadBlocks(byte[] buffer, ulong blockIndex, uint blockCount)
  24. {
  25. throw new NotImplementedException();
  26. }
  27. public void WriteBlocks(byte[] buffer, ulong blockIndex, uint blockCount)
  28. {
  29. throw new NotImplementedException();
  30. }
  31. public int Read(byte[] buffer, long offset, int index, int count)
  32. {
  33. throw new NotImplementedException();
  34. }
  35. public void Write(byte[] buffer, long offset, int index, int count)
  36. {
  37. throw new NotImplementedException();
  38. }
  39. public void Flush()
  40. {
  41. throw new NotImplementedException();
  42. }
  43. public void Trim(params TrimDescriptor[] descriptors)
  44. {
  45. throw new NotImplementedException();
  46. }
  47. public void FireMountedEvent()
  48. {
  49. Mounted?.Invoke(this, EventArgs.Empty);
  50. }
  51. }
  52. }