StandaloneBddImageStorage.cs 1.7 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 Guid Guid { get; } = Guid.NewGuid();
  10. public uint BlockSize { get; } = 512;
  11. public ulong BlockCount { get; }
  12. public uint MaxTransferLength { get; }
  13. public bool SupportTrim { get; }
  14. public bool WriteProtect { get; }
  15. public event EventHandler Mounted;
  16. public void Init()
  17. {
  18. throw new NotImplementedException();
  19. }
  20. public void Exit()
  21. {
  22. throw new NotImplementedException();
  23. }
  24. public void ReadBlocks(byte[] buffer, ulong blockIndex, uint blockCount)
  25. {
  26. throw new NotImplementedException();
  27. }
  28. public void WriteBlocks(byte[] buffer, ulong blockIndex, uint blockCount)
  29. {
  30. throw new NotImplementedException();
  31. }
  32. public int Read(byte[] buffer, long offset, int index, int count)
  33. {
  34. throw new NotImplementedException();
  35. }
  36. public void Write(byte[] buffer, long offset, int index, int count)
  37. {
  38. throw new NotImplementedException();
  39. }
  40. public void Flush()
  41. {
  42. throw new NotImplementedException();
  43. }
  44. public void Trim(params TrimDescriptor[] descriptors)
  45. {
  46. throw new NotImplementedException();
  47. }
  48. public void FireMountedEvent()
  49. {
  50. Mounted?.Invoke(this, EventArgs.Empty);
  51. }
  52. }
  53. }