// // Copyright (c) 2008-2011, Kenneth Bell // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. // using System; using DiscUtils.Streams; namespace DiscUtils { /// /// Information about a logical disk volume, which may be backed by one or more physical volumes. /// public sealed class LogicalVolumeInfo : VolumeInfo { private Guid _guid; private readonly SparseStreamOpenDelegate _opener; private readonly PhysicalVolumeInfo _physicalVol; internal LogicalVolumeInfo(Guid guid, PhysicalVolumeInfo physicalVolume, SparseStreamOpenDelegate opener, long length, byte biosType, LogicalVolumeStatus status) { _guid = guid; _physicalVol = physicalVolume; _opener = opener; Length = length; BiosType = biosType; Status = status; } /// /// Gets the disk geometry of the underlying storage medium (as used in BIOS calls), may be null. /// public override Geometry BiosGeometry { get { return _physicalVol == null ? Geometry.Null : _physicalVol.BiosGeometry; } } /// /// Gets the one-byte BIOS type for this volume, which indicates the content. /// public override byte BiosType { get; } /// /// The stable identity for this logical volume. /// /// The stability of the identity depends the disk structure. /// In some cases the identity may include a simple index, when no other information /// is available. Best practice is to add disks to the Volume Manager in a stable /// order, if the stability of this identity is paramount. public override string Identity { get { if (_guid != Guid.Empty) { return "VLG" + _guid.ToString("B"); } return "VLP:" + _physicalVol.Identity; } } /// /// Gets the length of the volume (in bytes). /// public override long Length { get; } /// /// Gets the disk geometry of the underlying storage medium, if any (may be Geometry.Null). /// public override Geometry PhysicalGeometry { get { return _physicalVol == null ? Geometry.Null : _physicalVol.PhysicalGeometry; } } /// /// Gets the offset of this volume in the underlying storage medium, if any (may be Zero). /// public override long PhysicalStartSector { get { return _physicalVol == null ? 0 : _physicalVol.PhysicalStartSector; } } /// /// Gets the status of the logical volume, indicating volume health. /// public LogicalVolumeStatus Status { get; } /// /// Gets the underlying physical volume info /// public PhysicalVolumeInfo PhysicalVolume { get { return _physicalVol; } } /// /// Opens a stream with access to the content of the logical volume. /// /// The volume's content as a stream. public override SparseStream Open() { return _opener(); } } }