// /*************************************************************************** // Aaru Data Preservation Suite // ---------------------------------------------------------------------------- // // Filename : DiscStructureCapabilities.cs // Author(s) : Natalia Portillo // // Component : Device structures decoders. // // --[ Description ] ---------------------------------------------------------- // // Decodes SCSI DISC STRUCTURE structures. // // --[ License ] -------------------------------------------------------------- // // This library is free software; you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; either version 2.1 of the // License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, see . // // ---------------------------------------------------------------------------- // Copyright © 2011-2025 Natalia Portillo // ****************************************************************************/ using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; namespace Aaru.Decoders.SCSI; [SuppressMessage("ReSharper", "InconsistentNaming")] [SuppressMessage("ReSharper", "MemberCanBeInternal")] [SuppressMessage("ReSharper", "MemberCanBePrivate.Global")] [SuppressMessage("ReSharper", "NotAccessedField.Global")] [SuppressMessage("ReSharper", "UnusedMember.Global")] [SuppressMessage("ReSharper", "UnusedType.Global")] public static class DiscStructureCapabilities { public static Capability[] Decode(byte[] response) { var len = (ushort)((response[0] << 8) + response[1]); if(len + 2 != response.Length) return null; List caps = []; uint offset = 4; while(offset < response.Length) { var cap = new Capability { FormatCode = response[offset], SDS = (response[offset + 1] & 0x80) == 0x80, RDS = (response[offset + 1] & 0x40) == 0x40 }; caps.Add(cap); offset += 4; } return caps.ToArray(); } #region Nested type: Capability public struct Capability { /// READ/SEND DISC STRUCTURE format code public byte FormatCode; /// Supported in SEND DISC STRUCTURE public bool SDS; /// Supported in READ DISC STRUCTURE public bool RDS; } #endregion }