Here you can find the source of packByteBufferIntoSingleByteArray( ByteBuffer[] byteBufferArr)
Parameter | Description |
---|---|
byteBufferArr | a parameter |
public static byte[] packByteBufferIntoSingleByteArray( ByteBuffer[] byteBufferArr)
//package com.java2s; /*/*from w w w . jav a 2 s . co m*/ * 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. */ import java.nio.ByteBuffer; public class Main { /** * This method will form one single byte [] for all the high card dims. * * @param byteBufferArr * @return */ public static byte[] packByteBufferIntoSingleByteArray( ByteBuffer[] byteBufferArr) { // for empty array means there is no data to remove dictionary. if (null == byteBufferArr || byteBufferArr.length == 0) { return null; } int noOfCol = byteBufferArr.length; short toDetermineLengthOfByteArr = 2; short offsetLen = (short) (noOfCol * 2 + toDetermineLengthOfByteArr); int totalBytes = calculateTotalBytes(byteBufferArr) + offsetLen; ByteBuffer buffer = ByteBuffer.allocate(totalBytes); // write the length of the byte [] as first short buffer.putShort((short) (totalBytes - toDetermineLengthOfByteArr)); // writing the offset of the first element. buffer.putShort(offsetLen); // prepare index for byte [] for (int index = 0; index < byteBufferArr.length - 1; index++) { ByteBuffer individualCol = byteBufferArr[index]; int noOfBytes = individualCol.capacity(); buffer.putShort((short) (offsetLen + noOfBytes)); offsetLen += noOfBytes; individualCol.rewind(); } // put actual data. for (int index = 0; index < byteBufferArr.length; index++) { ByteBuffer individualCol = byteBufferArr[index]; buffer.put(individualCol.array()); } buffer.rewind(); return buffer.array(); } /** * This method will form one single byte [] for all the high card dims. * For example if you need to pack 2 columns c1 and c2 , it stores in following way * <total_len(short)><offsetLen(short)><offsetLen+c1_len(short)><c1(byte[])><c2(byte[])> * @param byteBufferArr * @return */ public static byte[] packByteBufferIntoSingleByteArray( byte[][] byteBufferArr) { // for empty array means there is no data to remove dictionary. if (null == byteBufferArr || byteBufferArr.length == 0) { return null; } int noOfCol = byteBufferArr.length; short toDetermineLengthOfByteArr = 2; short offsetLen = (short) (noOfCol * 2 + toDetermineLengthOfByteArr); int totalBytes = calculateTotalBytes(byteBufferArr) + offsetLen; ByteBuffer buffer = ByteBuffer.allocate(totalBytes); // write the length of the byte [] as first short buffer.putShort((short) (totalBytes - toDetermineLengthOfByteArr)); // writing the offset of the first element. buffer.putShort(offsetLen); // prepare index for byte [] for (int index = 0; index < byteBufferArr.length - 1; index++) { int noOfBytes = byteBufferArr[index].length; buffer.putShort((short) (offsetLen + noOfBytes)); offsetLen += noOfBytes; } // put actual data. for (int index = 0; index < byteBufferArr.length; index++) { buffer.put(byteBufferArr[index]); } buffer.rewind(); return buffer.array(); } /** * To calculate the total bytes in byte Buffer[]. * * @param byteBufferArr * @return */ private static int calculateTotalBytes(ByteBuffer[] byteBufferArr) { int total = 0; for (int index = 0; index < byteBufferArr.length; index++) { total += byteBufferArr[index].capacity(); } return total; } /** * To calculate the total bytes in byte Buffer[]. * * @param byteBufferArr * @return */ private static int calculateTotalBytes(byte[][] byteBufferArr) { int total = 0; for (int index = 0; index < byteBufferArr.length; index++) { total += byteBufferArr[index].length; } return total; } }