12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- using System;
- namespace SvdCli.Storage.Implements
- {
- public class StandaloneBddImageStorage : ISvdStorage
- {
- // TODO: StandaloneBddImageStorage
- public string ProductId { get; } = "Svd BddImage";
- public string ProductVersion { get; } = "1.0";
- public Guid Guid { get; } = Guid.NewGuid();
- public uint BlockSize { get; } = 512;
- public ulong BlockCount { get; }
- public uint MaxTransferLength { get; }
- public bool SupportTrim { get; }
- public bool WriteProtect { get; }
- public event EventHandler Mounted;
- public void Init()
- {
- throw new NotImplementedException();
- }
- public void Exit()
- {
- throw new NotImplementedException();
- }
- public void ReadBlocks(byte[] buffer, ulong blockIndex, uint blockCount)
- {
- throw new NotImplementedException();
- }
- public void WriteBlocks(byte[] buffer, ulong blockIndex, uint blockCount)
- {
- throw new NotImplementedException();
- }
- public int Read(byte[] buffer, long offset, int index, int count)
- {
- throw new NotImplementedException();
- }
- public void Write(byte[] buffer, long offset, int index, int count)
- {
- throw new NotImplementedException();
- }
- public void Flush()
- {
- throw new NotImplementedException();
- }
- public void Trim(params TrimDescriptor[] descriptors)
- {
- throw new NotImplementedException();
- }
- public void FireMountedEvent()
- {
- Mounted?.Invoke(this, EventArgs.Empty);
- }
- }
- }
|