All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.finos.tracdap.common.data.util.Bytes Maven / Gradle / Ivy

Go to download

TRAC D.A.P. data library, interfaces and core functionality for working with primary data

The newest version!
/*
 * Licensed to the Fintech Open Source Foundation (FINOS) under one or
 * more contributor license agreements. See the NOTICE file distributed
 * with this work for additional information regarding copyright ownership.
 * FINOS 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.finos.tracdap.common.data.util;

import org.finos.tracdap.common.exception.EDataSize;

import org.apache.arrow.memory.ArrowBuf;
import org.apache.arrow.memory.BufferAllocator;
import org.finos.tracdap.common.exception.EUnexpected;

import java.nio.ByteBuffer;
import java.util.List;
import java.util.function.Consumer;


public class Bytes {

    // Currently, it is not possible to do zero-copy between managed buffers and gRPC
    // https://github.com/grpc/grpc-java/issues/1054

    // Incoming data has already been copied to create the ByteString
    // Outgoing data needs to be copied before giving to gRPC
    // Because writing to the wire is asynchronous and there is no way to callback for release

    public static ArrowBuf copyToBuffer(byte[] src, BufferAllocator allocator) {

        var buffer = allocator.buffer(src.length);

        buffer.writeBytes(src);

        return buffer;
    }

    public static byte[] copyFromBuffer(ArrowBuf src) {

        if (src.readableBytes() > Integer.MAX_VALUE)
            throw new EUnexpected();

        var array = new byte[(int) src.readableBytes()];

        src.getBytes(src.readerIndex(), array);

        return array;
    }

    public static byte[] copyFromBuffer(List src) {

        if (src.size() == 1)
            return copyFromBuffer(src.get(0));

        long size = readableBytes(src);

        if (size > Integer.MAX_VALUE)
            throw new EUnexpected();

        var array = new byte[(int) size];
        var pos = 0;

        for (var chunk : src) {
            chunk.getBytes(chunk.readerIndex(), array, pos, (int) chunk.readableBytes());
            pos += chunk.readableBytes();
        }

        return array;
    }

    public static ArrowBuf writeToStream(
            ByteBuffer src, ArrowBuf target,
            BufferAllocator allocator, int chunkSize,
            Consumer sink) {

        while (src.remaining() > 0) {

            if (target == null)
                target = allocator.buffer(chunkSize);

            var nBytes = (int) Math.min(src.remaining(), target.writableBytes());
            var bytesPosition = src.position() + nBytes;
            var bufferWriterIndex = target.writerIndex() + nBytes;

            target.setBytes(target.writerIndex(), src, src.position(), nBytes);

            target.writerIndex(bufferWriterIndex);
            src.position(bytesPosition);

            if (target.writableBytes() == 0) {
                sink.accept(target);
                target = null;
            }
        }

        return target;
    }

    public static ArrowBuf writeToStream(
            byte[] src, int off, int len, ArrowBuf target,
            BufferAllocator allocator, int chunkSize,
            Consumer sink) {

        var remaining = len - off;

        while (remaining > 0) {

            if (target == null)
                target = allocator.buffer(chunkSize);

            var nBytes = (int) Math.min(remaining, target.writableBytes());

            target.writeBytes(src, off, nBytes);

            off += nBytes;
            remaining -= nBytes;

            if (target.writableBytes() == 0) {
                sink.accept(target);
                target = null;
            }
        }

        return target;
    }

    public static ArrowBuf writeToStream(
            int byte_, ArrowBuf target,
            BufferAllocator allocator, int chunkSize,
            Consumer sink) {

        if (target == null)
            target = allocator.buffer(chunkSize);

        target.writeByte(byte_);

        if (target.writableBytes() == 0) {
            sink.accept(target);
            target = null;
        }

        return target;
    }

    public static ArrowBuf flushStream(ArrowBuf buffer, Consumer sink) {

        if (buffer != null) {
            if (buffer.readableBytes() > 0)
                sink.accept(buffer);
            else
                buffer.close();
        }

        return null;
    }

    public static ArrowBuf closeStream(ArrowBuf buffer) {

        if (buffer != null)
            buffer.close();

        return null;
    }

    public static void readFromStream(ArrowBuf src, Consumer sink) {

        try (src) {

            while (src.readableBytes() > 0) {

                var nBytes = (int) Math.min(src.readableBytes(), Integer.MAX_VALUE);
                var target = ByteBuffer.allocateDirect(nBytes);

                src.getBytes(src.readerIndex(), target);
                src.readerIndex(src.readerIndex() + nBytes);

                target.flip();

                sink.accept(target);
            }
        }
    }

    public static ByteBuffer readFromBuffer(List src) {

        try {

            var bufferSize = readableBytes(src);

            if (bufferSize > Integer.MAX_VALUE)
                throw new EDataSize("Data size exceeded the limit for a buffered read operation");

            // ArrowBuf does not have a getBytes() method with target offset/size to write directly to ByteBuffer
            // Only solution is to write to a heap-allocated buffer and wrap

            var target = new byte[(int) bufferSize];
            var position = 0;

            for (var chunk : src) {

                var chunkSize = (int) chunk.readableBytes();

                chunk.getBytes(chunk.readerIndex(), target, position, chunkSize);
                chunk.readerIndex(chunk.readerIndex() + chunkSize);

                position += chunkSize;
            }

            return ByteBuffer.wrap(target);
        }
        finally {

            src.forEach(ArrowBuf::close);
            src.clear();
        }
    }

    public static long readableBytes(List src) {

        return src.stream()
                .mapToLong(ArrowBuf::readableBytes)
                .sum();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy