blob: 3121c8bd84686e60e8314fdb1377f5d1b7d43092 [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.quantiles;
import static org.apache.datasketches.quantiles.Util.LS;
import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertNotEquals;
import static org.testng.Assert.assertNull;
import static org.testng.Assert.assertTrue;
import static org.testng.Assert.fail;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
import org.apache.datasketches.memory.Memory;
import org.apache.datasketches.memory.WritableMemory;
import org.apache.datasketches.SketchesArgumentException;
@SuppressWarnings("javadoc")
public class DirectCompactDoublesSketchTest {
@BeforeMethod
public void setUp() {
DoublesSketch.rand.setSeed(32749); // make sketches deterministic for testing
}
@Test(expectedExceptions = SketchesArgumentException.class)
public void wrapFromUpdateSketch() {
final int k = 4;
final int n = 27;
final UpdateDoublesSketch qs = HeapUpdateDoublesSketchTest.buildAndLoadQS(k, n);
final byte[] qsBytes = qs.toByteArray();
final Memory qsMem = Memory.wrap(qsBytes);
DirectCompactDoublesSketch.wrapInstance(qsMem);
fail();
}
@Test
public void createFromUnsortedUpdateSketch() {
final int k = 4;
final int n = 13;
final UpdateDoublesSketch qs = DoublesSketch.builder().setK(k).build();
for (int i = n; i > 0; --i) {
qs.update(i);
}
final WritableMemory dstMem = WritableMemory.writableWrap(new byte[qs.getCompactStorageBytes()]);
final DirectCompactDoublesSketch compactQs
= DirectCompactDoublesSketch.createFromUpdateSketch(qs, dstMem);
// don't expect equal but new base buffer should be sorted
final double[] combinedBuffer = compactQs.getCombinedBuffer();
final int bbCount = compactQs.getBaseBufferCount();
for (int i = 1; i < bbCount; ++i) {
assert combinedBuffer[i - 1] < combinedBuffer[i];
}
}
@Test
public void wrapFromCompactSketch() {
final int k = 8;
final int n = 177;
final DirectCompactDoublesSketch qs = buildAndLoadDCQS(k, n); // assuming ordered inserts
final byte[] qsBytes = qs.toByteArray();
final Memory qsMem = Memory.wrap(qsBytes);
final DirectCompactDoublesSketch compactQs = DirectCompactDoublesSketch.wrapInstance(qsMem);
DoublesSketchTest.testSketchEquality(qs, compactQs);
assertEquals(qsBytes.length, compactQs.getStorageBytes());
final double[] combinedBuffer = compactQs.getCombinedBuffer();
assertEquals(combinedBuffer.length, compactQs.getCombinedBufferItemCapacity());
}
@Test
public void wrapEmptyCompactSketch() {
final CompactDoublesSketch s1 = DoublesSketch.builder().build().compact();
final Memory mem
= Memory.wrap(ByteBuffer.wrap(s1.toByteArray()).order(ByteOrder.nativeOrder()));
final DoublesSketch s2 = DoublesSketch.wrap(mem);
assertTrue(s2.isEmpty());
assertEquals(s2.getN(), 0);
assertTrue(Double.isNaN(s2.getMinValue()));
assertTrue(Double.isNaN(s2.getMaxValue()));
}
@Test
public void checkEmpty() {
final int k = PreambleUtil.DEFAULT_K;
final DirectCompactDoublesSketch qs1 = buildAndLoadDCQS(k, 0);
assertTrue(Double.isNaN(qs1.getQuantile(0.0)));
assertTrue(Double.isNaN(qs1.getQuantile(1.0)));
assertTrue(Double.isNaN(qs1.getQuantile(0.5)));
final double[] quantiles = qs1.getQuantiles(new double[] {0.0, 0.5, 1.0});
assertNull(quantiles);
final double[] combinedBuffer = qs1.getCombinedBuffer();
assertEquals(combinedBuffer.length, 2 * k);
assertNotEquals(combinedBuffer.length, qs1.getCombinedBufferItemCapacity());
}
@Test
public void checkCheckDirectMemCapacity() {
final int k = 128;
DirectCompactDoublesSketch.checkDirectMemCapacity(k, (2 * k) - 1, (4 + (2 * k)) * 8);
DirectCompactDoublesSketch.checkDirectMemCapacity(k, (2 * k) + 1, (4 + (3 * k)) * 8);
DirectCompactDoublesSketch.checkDirectMemCapacity(k, 0, 8);
try {
DirectCompactDoublesSketch.checkDirectMemCapacity(k, 10000, 64);
fail();
} catch (final SketchesArgumentException e) {
// expected
}
}
@Test(expectedExceptions = SketchesArgumentException.class)
public void checkMemTooSmall() {
final Memory mem = Memory.wrap(new byte[7]);
HeapCompactDoublesSketch.heapifyInstance(mem);
}
static DirectCompactDoublesSketch buildAndLoadDCQS(final int k, final int n) {
return buildAndLoadDCQS(k, n, 0);
}
static DirectCompactDoublesSketch buildAndLoadDCQS(final int k, final int n, final int startV) {
final UpdateDoublesSketch qs = DoublesSketch.builder().setK(k).build();
for (int i = 1; i <= n; i++) {
qs.update(startV + i);
}
final byte[] byteArr = new byte[qs.getCompactStorageBytes()];
final WritableMemory mem = WritableMemory.writableWrap(byteArr);
return (DirectCompactDoublesSketch) qs.compact(mem);
}
@Test
public void printlnTest() {
println("PRINTING: " + this.getClass().getName());
print("PRINTING: " + this.getClass().getName() + LS);
}
static void println(final String s) {
print(s + LS);
}
/**
* @param s value to print
*/
static void print(final String s) {
//System.err.print(s); //disable here
}
}