123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Text;
- using Utilities;
- namespace DiskAccessLibrary
- {
- public partial class RawDiskImage : DiskImage
- {
- public const int DefaultBytesPerSector = 512;
- const FileOptions FILE_FLAG_NO_BUFFERING = (FileOptions)0x20000000;
- private bool m_isExclusiveLock;
- private FileStream m_stream;
- private int m_bytesPerSector;
- private long m_size;
-
-
- public RawDiskImage(string rawDiskImagePath) : base(rawDiskImagePath)
- {
- m_bytesPerSector = DetectBytesPerSector(rawDiskImagePath);
- m_size = new FileInfo(rawDiskImagePath).Length;
- }
-
-
- public RawDiskImage(string rawDiskImagePath, int bytesPerSector) : base(rawDiskImagePath)
- {
- m_bytesPerSector = bytesPerSector;
- m_size = new FileInfo(rawDiskImagePath).Length;
- }
-
- public override bool ExclusiveLock()
- {
- if (!m_isExclusiveLock)
- {
- m_isExclusiveLock = true;
- FileAccess fileAccess = IsReadOnly ? FileAccess.Read : FileAccess.ReadWrite;
-
-
- m_stream = new FileStream(this.Path, FileMode.Open, fileAccess, FileShare.Read, 0x1000, FILE_FLAG_NO_BUFFERING | FileOptions.WriteThrough);
- return true;
- }
- else
- {
- return false;
- }
- }
- public override bool ReleaseLock()
- {
- if (m_isExclusiveLock)
- {
- m_isExclusiveLock = false;
- m_stream.Close();
- return true;
- }
- else
- {
- return false;
- }
- }
-
-
-
- public override byte[] ReadSectors(long sectorIndex, int sectorCount)
- {
- CheckBoundaries(sectorIndex, sectorCount);
- if (!m_isExclusiveLock)
- {
-
-
- m_stream = new FileStream(this.Path, FileMode.Open, FileAccess.Read, FileShare.Read, 0x1000, FILE_FLAG_NO_BUFFERING | FileOptions.WriteThrough);
- }
- long offset = sectorIndex * BytesPerSector;
- m_stream.Seek(offset, SeekOrigin.Begin);
- byte[] result = new byte[BytesPerSector * sectorCount];
- m_stream.Read(result, 0, BytesPerSector * sectorCount);
- if (!m_isExclusiveLock)
- {
- m_stream.Close();
- }
- return result;
- }
- public override void WriteSectors(long sectorIndex, byte[] data)
- {
- if (IsReadOnly)
- {
- throw new UnauthorizedAccessException("Attempted to perform write on a readonly disk");
- }
- CheckBoundaries(sectorIndex, data.Length / this.BytesPerSector);
- if (!m_isExclusiveLock)
- {
-
-
-
- m_stream = new FileStream(this.Path, FileMode.Open, FileAccess.ReadWrite, FileShare.Read, 0x1000, FILE_FLAG_NO_BUFFERING | FileOptions.WriteThrough);
- }
- long offset = sectorIndex * BytesPerSector;
- m_stream.Seek(offset, SeekOrigin.Begin);
- m_stream.Write(data, 0, data.Length);
- if (!m_isExclusiveLock)
- {
- m_stream.Close();
- }
- }
-
- public override void Extend(long numberOfAdditionalBytes)
- {
- if (numberOfAdditionalBytes % this.BytesPerSector > 0)
- {
- throw new ArgumentException("numberOfAdditionalBytes must be a multiple of BytesPerSector");
- }
- #if Win32
-
-
- bool hasManageVolumePrivilege = SecurityUtils.ObtainManageVolumePrivilege();
- #endif
- if (!m_isExclusiveLock)
- {
- m_stream = new FileStream(this.Path, FileMode.Open, FileAccess.ReadWrite, FileShare.Read, 0x1000, FILE_FLAG_NO_BUFFERING | FileOptions.WriteThrough);
- }
- else
- {
-
- ReleaseLock();
- ExclusiveLock();
- }
- m_stream.SetLength(m_size + numberOfAdditionalBytes);
- m_size += numberOfAdditionalBytes;
- #if Win32
- if (hasManageVolumePrivilege)
- {
- try
- {
- FileStreamUtils.SetValidLength(m_stream, m_size);
- }
- catch (IOException)
- {
- }
- }
- #endif
- if (!m_isExclusiveLock)
- {
- m_stream.Close();
- }
- }
- public override int BytesPerSector
- {
- get
- {
- return m_bytesPerSector;
- }
- }
- public override long Size
- {
- get
- {
- return m_size;
- }
- }
-
-
-
- public static RawDiskImage Create(string path, long size)
- {
- int bytesPerSector = DetectBytesPerSector(path);
- return Create(path, size, bytesPerSector);
- }
-
-
-
- internal static RawDiskImage Create(string path, long size, int bytesPerSector)
- {
- if (size % bytesPerSector > 0)
- {
- throw new ArgumentException("size must be a multiple of bytesPerSector");
- }
- #if Win32
-
-
- bool hasManageVolumePrivilege = SecurityUtils.ObtainManageVolumePrivilege();
- #endif
- FileStream stream = new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.None);
- try
- {
- stream.SetLength(size);
- }
- catch (IOException)
- {
- stream.Close();
- try
- {
-
- File.Delete(path);
- }
- catch (IOException)
- {
- }
- throw;
- }
- #if Win32
- if (hasManageVolumePrivilege)
- {
- try
- {
- FileStreamUtils.SetValidLength(stream, size);
- }
- catch (IOException)
- {
- }
- }
- #endif
- stream.Close();
- return new RawDiskImage(path, bytesPerSector);
- }
- public static int DetectBytesPerSector(string path)
- {
- FileInfo info = new FileInfo(path);
- string[] components = info.Name.Split('.');
- if (components.Length >= 3)
- {
- string bytesPerSectorString = components[components.Length - 2];
- int bytesPerSector = Conversion.ToInt32(bytesPerSectorString, DefaultBytesPerSector);
- return bytesPerSector;
- }
- else
- {
- return DefaultBytesPerSector;
- }
- }
- }
- }
|