Search in sources :

Example 1 with ValueBlockV1

use of io.datarouter.filesystem.snapshot.block.value.ValueBlockV1 in project datarouter by hotpads.

the class WordTests method testValueBlockV1.

@Test
public void testValueBlockV1() {
    Supplier<ValueBlockV1Encoder> encoderSupplier = ValueBlockV1Encoder::new;
    Ref<ValueBlockV1Encoder> encoder = new Ref<>(encoderSupplier.get());
    int blockSize = 4096;
    List<String> inputs = WordDataset.scanWords(getClass().getSimpleName() + "-testValueBlockV1").list();
    List<byte[]> blocks = Scanner.of(inputs).map(str -> str.getBytes(StandardCharsets.UTF_8)).map(value -> new SnapshotEntry(EmptyArray.BYTE, EmptyArray.BYTE, new byte[][] { value })).concat(value -> {
        encoder.get().add(value, 0);
        if (encoder.get().numBytes() >= blockSize) {
            byte[] block = encoder.get().encode().concat();
            encoder.set(encoderSupplier.get());
            return Scanner.of(block);
        }
        return Scanner.empty();
    }).list();
    if (encoder.get().numRecords() > 0) {
        blocks.add(encoder.get().encode().concat());
    }
    logger.warn("encoded {} value blocks", blocks.size());
    List<String> outputs = Scanner.of(blocks).map(ValueBlockV1::new).concat(ValueBlock::valueCopies).map(bytes -> new String(bytes, StandardCharsets.UTF_8)).list();
    Require.equals(outputs.size(), inputs.size());
    for (int i = 0; i < inputs.size(); ++i) {
        if (ObjectTool.notEquals(outputs.get(i), inputs.get(i))) {
            logger.warn("actual=[{}] expected=[{}]", outputs.get(i), inputs.get(i));
            String message = String.format("actual=[%s] does not equal expected=[%s]", CsvIntByteStringCodec.INSTANCE.encode(outputs.get(i).getBytes(StandardCharsets.UTF_8)), CsvIntByteStringCodec.INSTANCE.encode(inputs.get(i).getBytes(StandardCharsets.UTF_8)));
            throw new IllegalArgumentException(message);
        }
    }
}
Also used : ValueBlockV1(io.datarouter.filesystem.snapshot.block.value.ValueBlockV1) RetainingGroup(io.datarouter.scanner.RetainingGroup) Scanner(io.datarouter.scanner.Scanner) Arrays(java.util.Arrays) LeafBlockV1Encoder(io.datarouter.filesystem.snapshot.block.leaf.LeafBlockV1Encoder) FileIdsAndEndings(io.datarouter.filesystem.snapshot.writer.BlockQueue.FileIdsAndEndings) ByteTool(io.datarouter.bytes.ByteTool) ObjectTool(io.datarouter.util.lang.ObjectTool) LoggerFactory(org.slf4j.LoggerFactory) Test(org.testng.annotations.Test) Supplier(java.util.function.Supplier) LeafBlock(io.datarouter.filesystem.snapshot.block.leaf.LeafBlock) EmptyArray(io.datarouter.bytes.EmptyArray) Assert(org.testng.Assert) SnapshotLeafRecord(io.datarouter.filesystem.snapshot.reader.record.SnapshotLeafRecord) Logger(org.slf4j.Logger) CsvIntByteStringCodec(io.datarouter.bytes.codec.bytestringcodec.CsvIntByteStringCodec) ValueBlockV1Encoder(io.datarouter.filesystem.snapshot.block.value.ValueBlockV1Encoder) SnapshotEntry(io.datarouter.filesystem.snapshot.entry.SnapshotEntry) LeafBlockV1(io.datarouter.filesystem.snapshot.block.leaf.LeafBlockV1) StandardCharsets(java.nio.charset.StandardCharsets) AtomicLong(java.util.concurrent.atomic.AtomicLong) List(java.util.List) ValueBlock(io.datarouter.filesystem.snapshot.block.value.ValueBlock) Ref(io.datarouter.scanner.Ref) Require(io.datarouter.util.Require) Ref(io.datarouter.scanner.Ref) SnapshotEntry(io.datarouter.filesystem.snapshot.entry.SnapshotEntry) ValueBlock(io.datarouter.filesystem.snapshot.block.value.ValueBlock) ValueBlockV1Encoder(io.datarouter.filesystem.snapshot.block.value.ValueBlockV1Encoder) Test(org.testng.annotations.Test)

Aggregations

ByteTool (io.datarouter.bytes.ByteTool)1 EmptyArray (io.datarouter.bytes.EmptyArray)1 CsvIntByteStringCodec (io.datarouter.bytes.codec.bytestringcodec.CsvIntByteStringCodec)1 LeafBlock (io.datarouter.filesystem.snapshot.block.leaf.LeafBlock)1 LeafBlockV1 (io.datarouter.filesystem.snapshot.block.leaf.LeafBlockV1)1 LeafBlockV1Encoder (io.datarouter.filesystem.snapshot.block.leaf.LeafBlockV1Encoder)1 ValueBlock (io.datarouter.filesystem.snapshot.block.value.ValueBlock)1 ValueBlockV1 (io.datarouter.filesystem.snapshot.block.value.ValueBlockV1)1 ValueBlockV1Encoder (io.datarouter.filesystem.snapshot.block.value.ValueBlockV1Encoder)1 SnapshotEntry (io.datarouter.filesystem.snapshot.entry.SnapshotEntry)1 SnapshotLeafRecord (io.datarouter.filesystem.snapshot.reader.record.SnapshotLeafRecord)1 FileIdsAndEndings (io.datarouter.filesystem.snapshot.writer.BlockQueue.FileIdsAndEndings)1 Ref (io.datarouter.scanner.Ref)1 RetainingGroup (io.datarouter.scanner.RetainingGroup)1 Scanner (io.datarouter.scanner.Scanner)1 Require (io.datarouter.util.Require)1 ObjectTool (io.datarouter.util.lang.ObjectTool)1 StandardCharsets (java.nio.charset.StandardCharsets)1 Arrays (java.util.Arrays)1 List (java.util.List)1