1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /* Copyright (C) 2014 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
- *
- * You can redistribute this program and/or modify it under the terms of
- * the GNU Lesser Public License as published by the Free Software Foundation,
- * either version 3 of the License, or (at your option) any later version.
- */
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Text;
- using Utilities;
- namespace DiskAccessLibrary
- {
- public abstract partial class DiskImage : Disk
- {
- // There is no way to specify sector size for IMG/VHD/VMDK.
- public const int BytesPerDiskImageSector = 512;
- private string m_path;
- public DiskImage(string diskImagePath)
- {
- m_path = diskImagePath;
- }
- public void CheckBoundaries(long sectorIndex, int sectorCount)
- {
- if (sectorIndex < 0 || sectorIndex + (sectorCount - 1) >= this.TotalSectors)
- {
- throw new ArgumentOutOfRangeException("Attempted to access data outside of disk");
- }
- }
- public abstract void Extend(long additionalNumberOfBytes);
- public abstract bool ExclusiveLock();
- public abstract bool ReleaseLock();
- public override int BytesPerSector
- {
- get
- {
- return BytesPerDiskImageSector;
- }
- }
- public string Path
- {
- get
- {
- return m_path;
- }
- }
- /// <exception cref="System.IO.IOException"></exception>
- /// <exception cref="System.IO.InvalidDataException"></exception>
- /// <exception cref="System.NotImplementedException"></exception>
- /// <exception cref="System.UnauthorizedAccessException"></exception>
- public static DiskImage GetDiskImage(string path)
- {
- if (path.EndsWith(".vhd", StringComparison.InvariantCultureIgnoreCase))
- {
- return new VirtualHardDisk(path);
- }
- else if (path.EndsWith(".vmdk", StringComparison.InvariantCultureIgnoreCase))
- {
- return new VirtualMachineDisk(path);
- }
- else
- {
- return new RawDiskImage(path);
- }
- }
- }
- }
|