FsMaker.cs 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. using DiscUtils;
  2. using DiscUtils.Ntfs;
  3. using DiscUtils.Partitions;
  4. using DiscUtils.Streams;
  5. using SvdCli.Storage;
  6. using System;
  7. using System.IO;
  8. namespace SvdCli.DiskUtils
  9. {
  10. internal static class FsMaker
  11. {
  12. public static void MakeNtfsRamDisk(ISvdStorage storage, bool createTempFolder)
  13. {
  14. storage.Init();
  15. using var sss = new SvdStorageStream(storage);
  16. using VirtualDisk disk = new DiscUtils.Raw.Disk(sss, Ownership.None);
  17. BiosPartitionTable.Initialize(disk, WellKnownPartitionType.WindowsNtfs);
  18. var volMgr = new VolumeManager(disk);
  19. using var destNtfs = NtfsFileSystem.Format(volMgr.GetLogicalVolumes()[0], "RamDIsk", new NtfsFormatOptions());
  20. if (createTempFolder) destNtfs.CreateDirectory("Temp");
  21. }
  22. private class SvdStorageStream : Stream
  23. {
  24. private readonly ISvdStorage _storage;
  25. public SvdStorageStream(ISvdStorage storage) => _storage = storage;
  26. public override int Read(byte[] buffer, int offset, int count)
  27. {
  28. var read = _storage.Read(buffer, Position, offset, count);
  29. Position += read;
  30. return read;
  31. }
  32. public override void Write(byte[] buffer, int offset, int count)
  33. {
  34. _storage.Write(buffer, Position, offset, count);
  35. Position += count;
  36. }
  37. public override void Flush() => _storage.Flush();
  38. public override long Seek(long offset, SeekOrigin origin)
  39. {
  40. switch (origin)
  41. {
  42. case SeekOrigin.Begin:
  43. Position = offset;
  44. break;
  45. case SeekOrigin.Current:
  46. Position += offset;
  47. break;
  48. case SeekOrigin.End:
  49. Position = Length + offset;
  50. break;
  51. default:
  52. throw new ArgumentOutOfRangeException(nameof(origin), origin, null);
  53. }
  54. return Position;
  55. }
  56. public override void SetLength(long value)
  57. {
  58. }
  59. public override bool CanRead => true;
  60. public override bool CanSeek => true;
  61. public override bool CanWrite => true;
  62. public override long Length => _storage.BlockSize * (long)_storage.BlockCount;
  63. public override long Position { get; set; }
  64. }
  65. }
  66. }