blob: cd713d6ef858c0a91fd0f05244a1e5b98c0af5c9 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.datasketches.memory;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.nio.channels.Channels;
import java.nio.channels.WritableByteChannel;
import java.util.concurrent.ThreadLocalRandom;
import org.testng.Assert;
import org.testng.annotations.Test;
@SuppressWarnings("javadoc")
public class MemoryWriteToTest {
@Test
public void testOnHeap() throws IOException {
testWriteTo(createRandomBytesMemory(0));
testWriteTo(createRandomBytesMemory(7));
testWriteTo(createRandomBytesMemory(1023));
testWriteTo(createRandomBytesMemory(10_000));
testWriteTo(createRandomBytesMemory(CompareAndCopy.UNSAFE_COPY_THRESHOLD_BYTES * 5));
testWriteTo(createRandomBytesMemory((CompareAndCopy.UNSAFE_COPY_THRESHOLD_BYTES * 5) + 10));
}
@Test
public void testOnHeapInts() throws IOException {
testWriteTo(createRandomIntsMemory(0));
testWriteTo(createRandomIntsMemory(7));
testWriteTo(createRandomIntsMemory(1023));
testWriteTo(createRandomIntsMemory(10_000));
testWriteTo(createRandomIntsMemory(CompareAndCopy.UNSAFE_COPY_THRESHOLD_BYTES * 5));
testWriteTo(createRandomIntsMemory((CompareAndCopy.UNSAFE_COPY_THRESHOLD_BYTES * 5) + 10));
}
@Test
public void testOffHeap() throws IOException {
try (WritableHandle handle =
WritableMemory.allocateDirect((CompareAndCopy.UNSAFE_COPY_THRESHOLD_BYTES * 5) + 10)) {
WritableMemory mem = handle.get();
testWriteTo(mem.region(0, 0));
testOffHeap(mem, 7);
testOffHeap(mem, 1023);
testOffHeap(mem, 10_000);
testOffHeap(mem, CompareAndCopy.UNSAFE_COPY_THRESHOLD_BYTES * 5);
testOffHeap(mem, (CompareAndCopy.UNSAFE_COPY_THRESHOLD_BYTES * 5) + 10);
}
}
private static void testOffHeap(WritableMemory mem, int size) throws IOException {
createRandomBytesMemory(size).copyTo(0, mem, 0, size);
testWriteTo(mem.region(0, size));
}
private static Memory createRandomBytesMemory(int size) {
byte[] bytes = new byte[size];
ThreadLocalRandom.current().nextBytes(bytes);
return Memory.wrap(bytes);
}
private static Memory createRandomIntsMemory(int size) {
int[] ints = ThreadLocalRandom.current().ints(size).toArray();
return Memory.wrap(ints);
}
private static void testWriteTo(Memory mem) throws IOException {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
try (WritableByteChannel out = Channels.newChannel(baos)) {
mem.writeTo(0, mem.getCapacity(), out);
}
byte[] result = baos.toByteArray();
Assert.assertTrue(mem.equals(Memory.wrap(result)));
}
}