123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Text;
- using Utilities;
- namespace DiskAccessLibrary
- {
- public partial class RawDiskImage : DiskImage
- {
- const FileOptions FILE_FLAG_NO_BUFFERING = (FileOptions)0x20000000;
- private bool m_isExclusiveLock;
- private FileStream m_stream;
- public RawDiskImage(string rawDiskImagePath) : base(rawDiskImagePath)
- {
- }
-
- 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 additionalNumberOfBytes)
- {
- if (additionalNumberOfBytes % this.BytesPerSector > 0)
- {
- throw new ArgumentException("additionalNumberOfBytes must be a multiple of BytesPerSector");
- }
- long length = this.Size;
- if (!m_isExclusiveLock)
- {
- m_stream = new FileStream(this.Path, FileMode.Open, FileAccess.ReadWrite, FileShare.Read, 0x1000, FILE_FLAG_NO_BUFFERING | FileOptions.WriteThrough);
- }
- m_stream.SetLength(length + additionalNumberOfBytes);
- if (!m_isExclusiveLock)
- {
- m_stream.Close();
- }
- }
- public override int BytesPerSector
- {
- get
- {
- FileInfo info = new FileInfo(this.Path);
- string[] components = info.Name.Split('.');
- if (components.Length >= 3)
- {
- string bytesPerSectorString = components[components.Length - 2];
- int bytesPerSector = Conversion.ToInt32(bytesPerSectorString, BytesPerDiskImageSector);
- return bytesPerSector;
- }
- else
- {
- return BytesPerDiskImageSector;
- }
- }
- }
- public override long Size
- {
- get
- {
- FileInfo info = new FileInfo(this.Path);
- return info.Length;
- }
- }
- }
- }
|