Browse Source

Added PeripheralDeviceType enum

Tal Aloni 7 years ago
parent
commit
06f827f580

+ 1 - 0
ISCSI/ISCSI.csproj

@@ -87,6 +87,7 @@
     <Compile Include="Properties\AssemblyInfo.cs" />
     <Compile Include="SCSI\Enums\AddressingMethod.cs" />
     <Compile Include="SCSI\Enums\ModePageCodeName.cs" />
+    <Compile Include="SCSI\Enums\PeripheralDeviceType.cs" />
     <Compile Include="SCSI\Enums\SCSIOpCodeName.cs" />
     <Compile Include="SCSI\Enums\SCSIStatusCodeName.cs" />
     <Compile Include="SCSI\Enums\ServiceAction.cs" />

+ 9 - 0
ISCSI/SCSI/Enums/PeripheralDeviceType.cs

@@ -0,0 +1,9 @@
+
+namespace SCSI
+{
+    public enum PeripheralDeviceType : byte
+    {
+        DirectAccessBlockDevice = 0x00,
+        SequentialAccessDevice = 0x01,
+    }
+}

+ 3 - 3
ISCSI/SCSI/SCSIReturnParameters/StandardInquiryData.cs

@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2016 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
+/* Copyright (C) 2012-2017 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,
@@ -14,7 +14,7 @@ namespace SCSI
     public class StandardInquiryData
     {
         public byte PeripheralQualifier;
-        public byte PeripheralDeviceType;
+        public PeripheralDeviceType PeripheralDeviceType;
         public bool RMB;     // Removable media bit
         public byte Version; // We only support Version == 2
         public bool NormACA; // Normal ACA Supported
@@ -67,7 +67,7 @@ namespace SCSI
         public StandardInquiryData(byte[] buffer, int offset)
         {
             PeripheralQualifier = (byte)(buffer[offset + 0] >> 5);
-            PeripheralDeviceType = (byte)(buffer[offset + 0] & 0x1F);
+            PeripheralDeviceType = (PeripheralDeviceType)(buffer[offset + 0] & 0x1F);
             RMB = (buffer[offset + 1] & 0x80) != 0;
             Version = buffer[offset + 2];
             if (Version != 2)

+ 3 - 3
ISCSI/SCSI/SCSIReturnParameters/VPDPages/BlockDeviceCharacteristicsVPDPage.cs

@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2016 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
+/* Copyright (C) 2012-2017 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,
@@ -14,7 +14,7 @@ namespace SCSI
     public class BlockDeviceCharacteristicsVPDPage
     {
         public byte PeripheralQualifier;
-        public byte PeripheralDeviceType;
+        public PeripheralDeviceType PeripheralDeviceType;
         public VitalProductDataPageName PageCode;
         public byte PageLength;
         public ushort MediumRotationRate;
@@ -29,7 +29,7 @@ namespace SCSI
         public BlockDeviceCharacteristicsVPDPage(byte[] buffer, int offset)
         {
             PeripheralQualifier = (byte)(buffer[offset + 0] >> 5);
-            PeripheralDeviceType = (byte)(buffer[offset + 0] & 0x1F);
+            PeripheralDeviceType = (PeripheralDeviceType)(buffer[offset + 0] & 0x1F);
             PageCode = (VitalProductDataPageName)buffer[offset + 1];
             PageLength = buffer[offset + 3];
             MediumRotationRate = BigEndianConverter.ToUInt16(buffer, offset + 4);

+ 3 - 3
ISCSI/SCSI/SCSIReturnParameters/VPDPages/BlockLimitsVPDPage.cs

@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2016 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
+/* Copyright (C) 2012-2017 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,
@@ -14,7 +14,7 @@ namespace SCSI
     public class BlockLimitsVPDPage
     {
         public byte PeripheralQualifier;
-        public byte PeripheralDeviceType;
+        public PeripheralDeviceType PeripheralDeviceType;
         public VitalProductDataPageName PageCode; // VitalProductDataPageName
         public byte PageLength;
         public ushort OptimalTransferLengthGranularity;
@@ -30,7 +30,7 @@ namespace SCSI
         public BlockLimitsVPDPage(byte[] buffer, int offset)
         {
             PeripheralQualifier = (byte)(buffer[offset + 0] >> 5);
-            PeripheralDeviceType = (byte)(buffer[offset + 0] & 0x1F);
+            PeripheralDeviceType = (PeripheralDeviceType)(buffer[offset + 0] & 0x1F);
             PageCode = (VitalProductDataPageName)buffer[offset + 1];
             PageLength = buffer[offset + 3];
             OptimalTransferLengthGranularity = BigEndianConverter.ToUInt16(buffer, offset + 6);

+ 3 - 3
ISCSI/SCSI/SCSIReturnParameters/VPDPages/DeviceIdentificationVPDPage.cs

@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2016 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
+/* Copyright (C) 2012-2017 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,
@@ -14,7 +14,7 @@ namespace SCSI
     public class DeviceIdentificationVPDPage
     {
         public byte PeripheralQualifier;
-        public byte PeripheralDeviceType;
+        public PeripheralDeviceType PeripheralDeviceType;
         public VitalProductDataPageName PageCode; // VitalProductDataPageName
         public ushort PageLength;
         public List<IdentificationDescriptor> IdentificationDescriptorList = new List<IdentificationDescriptor>();
@@ -27,7 +27,7 @@ namespace SCSI
         public DeviceIdentificationVPDPage(byte[] buffer, int offset)
         {
             PeripheralQualifier = (byte)(buffer[offset + 0] >> 5);
-            PeripheralDeviceType = (byte)(buffer[offset + 0] & 0x1F);
+            PeripheralDeviceType = (PeripheralDeviceType)(buffer[offset + 0] & 0x1F);
             PageCode = (VitalProductDataPageName)buffer[offset + 1];
             PageLength = BigEndianConverter.ToUInt16(buffer, 2);
             int parameterOffset = 4;

+ 3 - 3
ISCSI/SCSI/SCSIReturnParameters/VPDPages/SupportedVitaLProductDataPages.cs

@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2016 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
+/* Copyright (C) 2012-2017 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,
@@ -14,7 +14,7 @@ namespace SCSI
     public class SupportedVitaLProductDataPages
     {
         public byte PeripheralQualifier;
-        public byte PeripheralDeviceType;
+        public PeripheralDeviceType PeripheralDeviceType;
         public byte PageLength;
         public List<byte> SupportedPageList = new List<byte>();
 
@@ -25,7 +25,7 @@ namespace SCSI
         public SupportedVitaLProductDataPages(byte[] buffer, int offset)
         {
             PeripheralQualifier = (byte)(buffer[offset + 0] >> 5);
-            PeripheralDeviceType = (byte)(buffer[offset + 0] & 0x1F);
+            PeripheralDeviceType = (PeripheralDeviceType)(buffer[offset + 0] & 0x1F);
             PageLength = buffer[offset + 3];
             for (int index = 0; index < PageLength; index++)
             { 

+ 3 - 3
ISCSI/SCSI/SCSIReturnParameters/VPDPages/UnitSerialNumberVPDPage.cs

@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2016 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
+/* Copyright (C) 2012-2017 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,
@@ -14,7 +14,7 @@ namespace SCSI
     public class UnitSerialNumberVPDPage
     {
         public byte PeripheralQualifier;
-        public byte PeripheralDeviceType;
+        public PeripheralDeviceType PeripheralDeviceType;
         public VitalProductDataPageName PageCode; // VitalProductDataPageName
         public byte PageLength;
         public string ProductSerialNumber;
@@ -27,7 +27,7 @@ namespace SCSI
         public UnitSerialNumberVPDPage(byte[] buffer, int offset)
         {
             PeripheralQualifier = (byte)(buffer[offset + 0] >> 5);
-            PeripheralDeviceType = (byte)(buffer[offset + 0] & 0x1F);
+            PeripheralDeviceType = (PeripheralDeviceType)(buffer[offset + 0] & 0x1F);
             PageCode = (VitalProductDataPageName)buffer[offset + 1];
             PageLength = buffer[offset + 3];
             ProductSerialNumber = ASCIIEncoding.ASCII.GetString(buffer, offset + 4, PageLength);