BddImage.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using SvdCli.Storage;
  2. using System.IO;
  3. namespace SvdCli.ImageUtils.BlockDifferencingDiskImage
  4. {
  5. internal static class BddImage
  6. {
  7. public static void CreateStandaloneBddImage(string path, uint blockSize, uint blockCount)
  8. {
  9. using var stream = File.Create(path);
  10. const int kb16 = CapacityUnits.KiloByte * 16;
  11. const int kb64 = CapacityUnits.KiloByte * 64;
  12. stream.WriteByte((byte)'B'); // Signature BDD2
  13. stream.WriteByte((byte)'D');
  14. stream.WriteByte((byte)'D');
  15. stream.WriteByte((byte)'2');
  16. stream.WriteByte(0); // Standalone
  17. stream.WriteLeu32(blockSize);
  18. stream.WriteLeu32(blockCount);
  19. stream.Position = kb16 + 8 * blockCount;
  20. //align to 64kb
  21. stream.SetLength(stream.Position + (kb64 - (stream.Position % kb64)));
  22. }
  23. private static void WriteLeu32(this Stream stream, uint value)
  24. {
  25. var buf = new[]
  26. {
  27. (byte)(value),
  28. (byte)(value>>8),
  29. (byte)(value>>16),
  30. (byte)(value>>24),
  31. };
  32. stream.Write(buf, 0, buf.Length);
  33. }
  34. }
  35. }