You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
136 lines
3.8 KiB
136 lines
3.8 KiB
using System; |
|
using System.Collections.Generic; |
|
using System.Text; |
|
|
|
namespace MessagePack.Internal |
|
{ |
|
public static class ByteArrayComparer |
|
{ |
|
#if ENABLE_UNSAFE_MSGPACK |
|
|
|
#if NETSTANDARD1_4 |
|
|
|
static readonly bool Is32Bit = (IntPtr.Size == 4); |
|
|
|
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)] |
|
public static int GetHashCode(byte[] bytes, int offset, int count) |
|
{ |
|
if (Is32Bit) |
|
{ |
|
return unchecked((int)FarmHash.Hash32(bytes, offset, count)); |
|
} |
|
else |
|
{ |
|
return unchecked((int)FarmHash.Hash64(bytes, offset, count)); |
|
} |
|
} |
|
|
|
#endif |
|
|
|
#if NETSTANDARD1_4 |
|
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)] |
|
#endif |
|
public static unsafe bool Equals(byte[] xs, int xsOffset, int xsCount, byte[] ys) |
|
{ |
|
return Equals(xs, xsOffset, xsCount, ys, 0, ys.Length); |
|
} |
|
|
|
#if NETSTANDARD1_4 |
|
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)] |
|
#endif |
|
public static unsafe bool Equals(byte[] xs, int xsOffset, int xsCount, byte[] ys, int ysOffset, int ysCount) |
|
{ |
|
if (xs == null || ys == null || xsCount != ysCount) |
|
{ |
|
return false; |
|
} |
|
|
|
fixed (byte* p1 = xs) |
|
fixed (byte* p2 = ys) |
|
{ |
|
var x1 = p1 + xsOffset; |
|
var x2 = p2 + ysOffset; |
|
|
|
var length = xsCount; |
|
var loooCount = length / 8; |
|
|
|
for (var i = 0; i < loooCount; i++, x1 += 8, x2 += 8) |
|
{ |
|
if (*(long*)x1 != *(long*)x2) |
|
{ |
|
return false; |
|
} |
|
} |
|
|
|
if ((length & 4) != 0) |
|
{ |
|
if (*(int*)x1 != *(int*)x2) |
|
{ |
|
return false; |
|
} |
|
x1 += 4; |
|
x2 += 4; |
|
} |
|
|
|
if ((length & 2) != 0) |
|
{ |
|
if (*(short*)x1 != *(short*)x2) |
|
{ |
|
return false; |
|
} |
|
x1 += 2; |
|
x2 += 2; |
|
} |
|
|
|
if ((length & 1) != 0) |
|
{ |
|
if (*x1 != *x2) |
|
{ |
|
return false; |
|
} |
|
} |
|
return true; |
|
} |
|
} |
|
|
|
#else |
|
#if NETSTANDARD1_4 |
|
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)] |
|
#endif |
|
public static bool Equals(byte[] xs, int xsOffset, int xsCount, byte[] ys) |
|
{ |
|
if (xs == null || ys == null || xsCount != ys.Length) |
|
{ |
|
return false; |
|
} |
|
|
|
for (int i = 0; i < ys.Length; i++) |
|
{ |
|
if (xs[xsOffset++] != ys[i]) return false; |
|
} |
|
|
|
return true; |
|
} |
|
|
|
#if NETSTANDARD1_4 |
|
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)] |
|
#endif |
|
public static bool Equals(byte[] xs, int xsOffset, int xsCount, byte[] ys, int ysOffset, int ysCount) |
|
{ |
|
if (xs == null || ys == null || xsCount != ysCount) |
|
{ |
|
return false; |
|
} |
|
|
|
for (int i = 0; i < xsCount; i++) |
|
{ |
|
if (xs[xsOffset++] != ys[ysOffset++]) return false; |
|
} |
|
|
|
return true; |
|
} |
|
|
|
#endif |
|
|
|
} |
|
} |