// Copyright (c) Six Labors and contributors. // Licensed under the Apache License, Version 2.0. using System; using System.Buffers; using System.Linq; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using SixLabors.ImageSharp.Memory; using Xunit; // ReSharper disable InconsistentNaming namespace SixLabors.ImageSharp.Tests.Memory { public class Buffer2DTests { // ReSharper disable once ClassNeverInstantiated.Local private class Assert : Xunit.Assert { public static void SpanPointsTo(Span span, Memory buffer, int bufferOffset = 0) where T : struct { ref T actual = ref MemoryMarshal.GetReference(span); ref T expected = ref buffer.Span[bufferOffset]; True(Unsafe.AreSame(ref expected, ref actual), "span does not point to the expected position"); } } private TestMemoryAllocator MemoryAllocator { get; } = new TestMemoryAllocator(); private const int Big = 99999; [Theory] [InlineData(Big, 7, 42)] [InlineData(Big, 1025, 17)] [InlineData(300, 42, 777)] public unsafe void Construct(int bufferCapacity, int width, int height) { this.MemoryAllocator.BufferCapacityInBytes = sizeof(TestStructs.Foo) * bufferCapacity; using (Buffer2D buffer = this.MemoryAllocator.Allocate2D(width, height)) { Assert.Equal(width, buffer.Width); Assert.Equal(height, buffer.Height); Assert.Equal(width * height, buffer.MemoryGroup.TotalLength); Assert.True(buffer.MemoryGroup.BufferLength % width == 0); } } [Theory] [InlineData(Big, 0, 42)] [InlineData(Big, 1, 0)] [InlineData(60, 42, 0)] [InlineData(3, 0, 0)] public unsafe void Construct_Empty(int bufferCapacity, int width, int height) { this.MemoryAllocator.BufferCapacityInBytes = sizeof(TestStructs.Foo) * bufferCapacity; using (Buffer2D buffer = this.MemoryAllocator.Allocate2D(width, height)) { Assert.Equal(width, buffer.Width); Assert.Equal(height, buffer.Height); Assert.Equal(0, buffer.MemoryGroup.TotalLength); Assert.Equal(0, buffer.GetSingleSpan().Length); } } [Fact] public void CreateClean() { using (Buffer2D buffer = this.MemoryAllocator.Allocate2D(42, 42, AllocationOptions.Clean)) { Span span = buffer.GetSingleSpan(); for (int j = 0; j < span.Length; j++) { Assert.Equal(0, span[j]); } } } [Theory] [InlineData(Big, 7, 42, 0, 0)] [InlineData(Big, 7, 42, 10, 0)] [InlineData(Big, 17, 42, 41, 0)] [InlineData(500, 17, 42, 41, 1)] [InlineData(200, 100, 30, 1, 0)] [InlineData(200, 100, 30, 2, 1)] [InlineData(200, 100, 30, 4, 2)] public unsafe void GetRowSpanY(int bufferCapacity, int width, int height, int y, int expectedBufferIndex) { this.MemoryAllocator.BufferCapacityInBytes = sizeof(TestStructs.Foo) * bufferCapacity; using (Buffer2D buffer = this.MemoryAllocator.Allocate2D(width, height)) { Span span = buffer.GetRowSpan(y); Assert.Equal(width, span.Length); int expectedSubBufferOffset = (width * y) - (expectedBufferIndex * buffer.MemoryGroup.BufferLength); Assert.SpanPointsTo(span, buffer.MemoryGroup[expectedBufferIndex], expectedSubBufferOffset); } } [Theory] [InlineData(Big, 42, 8, 0, 0)] [InlineData(Big, 400, 1000, 20, 10)] [InlineData(Big, 99, 88, 98, 87)] [InlineData(500, 200, 30, 42, 13)] [InlineData(500, 200, 30, 199, 29)] public unsafe void Indexer(int bufferCapacity, int width, int height, int x, int y) { this.MemoryAllocator.BufferCapacityInBytes = sizeof(TestStructs.Foo) * bufferCapacity; using (Buffer2D buffer = this.MemoryAllocator.Allocate2D(width, height)) { int bufferIndex = (width * y) / buffer.MemoryGroup.BufferLength; int subBufferStart = (width * y) - (bufferIndex * buffer.MemoryGroup.BufferLength); Span span = buffer.MemoryGroup[bufferIndex].Span.Slice(subBufferStart); ref TestStructs.Foo actual = ref buffer[x, y]; ref TestStructs.Foo expected = ref span[x]; Assert.True(Unsafe.AreSame(ref expected, ref actual)); } } [Fact] public void SwapOrCopyContent() { using (Buffer2D a = this.MemoryAllocator.Allocate2D(10, 5, AllocationOptions.Clean)) using (Buffer2D b = this.MemoryAllocator.Allocate2D(3, 7, AllocationOptions.Clean)) { a[1, 3] = 666; b[1, 3] = 444; Memory aa = a.MemoryGroup.Single(); Memory bb = b.MemoryGroup.Single(); Buffer2D.SwapOrCopyContent(a, b); Assert.Equal(bb, a.MemoryGroup.Single()); Assert.Equal(aa, b.MemoryGroup.Single()); Assert.Equal(new Size(3, 7), a.Size()); Assert.Equal(new Size(10, 5), b.Size()); Assert.Equal(666, b[1, 3]); Assert.Equal(444, a[1, 3]); } } [Theory] [InlineData(100, 20, 0, 90, 10)] [InlineData(100, 3, 0, 50, 50)] [InlineData(123, 23, 10, 80, 13)] [InlineData(10, 1, 3, 6, 3)] [InlineData(2, 2, 0, 1, 1)] [InlineData(5, 1, 1, 3, 2)] public void CopyColumns(int width, int height, int startIndex, int destIndex, int columnCount) { var rnd = new Random(123); using (Buffer2D b = this.MemoryAllocator.Allocate2D(width, height)) { rnd.RandomFill(b.GetSingleSpan(), 0, 1); b.CopyColumns(startIndex, destIndex, columnCount); for (int y = 0; y < b.Height; y++) { Span row = b.GetRowSpan(y); Span s = row.Slice(startIndex, columnCount); Span d = row.Slice(destIndex, columnCount); Xunit.Assert.True(s.SequenceEqual(d)); } } } [Fact] public void CopyColumns_InvokeMultipleTimes() { var rnd = new Random(123); using (Buffer2D b = this.MemoryAllocator.Allocate2D(100, 100)) { rnd.RandomFill(b.GetSingleSpan(), 0, 1); b.CopyColumns(0, 50, 22); b.CopyColumns(0, 50, 22); for (int y = 0; y < b.Height; y++) { Span row = b.GetRowSpan(y); Span s = row.Slice(0, 22); Span d = row.Slice(50, 22); Xunit.Assert.True(s.SequenceEqual(d)); } } } } }