Browse Source

Updates to DiskAccessLibrary

Tal Aloni 8 years ago
parent
commit
2f937dcece

+ 1 - 1
DiskAccessLibrary/LogicalDiskManagerHelpers/AddDiskToArrayHelper.cs

@@ -175,7 +175,7 @@ namespace DiskAccessLibrary.LogicalDiskManager
                     long stripeOffsetInData = (stripeOffsetInColumn * (newArray.Count - 1) + stripeVerticalIndex) * bytesPerStripe;
                     Array.Copy(data, stripeOffsetInData, columnData[columnIndex], stripeOffsetInColumn * bytesPerStripe, bytesPerStripe);
 
-                    parityData = Raid5Volume.XOR(parityData, columnData[columnIndex], stripeOffsetInColumn * bytesPerStripe, bytesPerStripe);
+                    parityData = ByteUtils.XOR(parityData, 0, columnData[columnIndex], stripeOffsetInColumn * bytesPerStripe, bytesPerStripe);
                 }
                 Array.Copy(parityData, 0, columnData[parityColumnIndex], stripeOffsetInColumn * bytesPerStripe, bytesPerStripe);
             });

+ 3 - 27
DiskAccessLibrary/Volumes/Raid5Volume.cs

@@ -98,7 +98,7 @@ namespace DiskAccessLibrary.LogicalDiskManager
                         if (index != readPosition.DiskIndex)
                         {
                             byte[] currentBytes = m_columns[index].ReadSectors(readPosition.SectorIndex, readPosition.SectorCount);
-                            stripeBytes = XOR(stripeBytes, currentBytes);
+                            stripeBytes = ByteUtils.XOR(stripeBytes, currentBytes);
                         }
                     }
                 }
@@ -156,7 +156,7 @@ namespace DiskAccessLibrary.LogicalDiskManager
                         {
                             if (index != missingColumnIndex && index != parityColumnIndex)
                             {
-                                missingBytes = XOR(missingBytes, segment[index]);
+                                missingBytes = ByteUtils.XOR(missingBytes, segment[index]);
                             }
                         }
                         segment[missingColumnIndex] = missingBytes;
@@ -178,7 +178,7 @@ namespace DiskAccessLibrary.LogicalDiskManager
                     {
                         if (index != parityColumnIndex)
                         {
-                            parityBytes = XOR(parityBytes, segment[index]);
+                            parityBytes = ByteUtils.XOR(parityBytes, segment[index]);
                         }
                     }
                     m_columns[parityColumnIndex].WriteSectors(writePosition.SectorIndex, parityBytes);
@@ -291,30 +291,6 @@ namespace DiskAccessLibrary.LogicalDiskManager
                 return true;
             }
         }
-
-        public static byte[] XOR(byte[] array1, byte[] array2)
-        {
-            return XOR(array1, array2, 0, array2.Length);
-        }
-
-        /// <param name="offset">In array 2</param>
-        /// <param name="length">Of bytes in Array 2 to XOR</param>
-        public static byte[] XOR(byte[] array1, byte[] array2, int offset, int length)
-        {
-            if (array1.Length == length)
-            {
-                byte[] result = new byte[length];
-                for (int index = 0; index < length; index++)
-                {
-                    result[index] = (byte)(array1[index] ^ array2[index + offset]);
-                }
-                return result;
-            }
-            else
-            {
-                throw new ArgumentException("Arrays must be of equal length");
-            }
-        }
     }
 
     public class ArrayPosition