org.asynchttpclient.netty.util.ByteBufUtils.java Source code

Java tutorial

Introduction

Here is the source code for org.asynchttpclient.netty.util.ByteBufUtils.java

Source

/*
 * Copyright (c) 2015 AsyncHttpClient Project. All rights reserved.
 *
 * This program is licensed to you under the Apache License Version 2.0,
 * and you may not use this file except in compliance with the Apache License Version 2.0.
 * You may obtain a copy of the Apache License Version 2.0 at
 *     http://www.apache.org/licenses/LICENSE-2.0.
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the Apache License Version 2.0 is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
 */
package org.asynchttpclient.netty.util;

import static java.nio.charset.StandardCharsets.*;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.CompositeByteBuf;
import io.netty.buffer.Unpooled;

import java.nio.charset.CharacterCodingException;
import java.nio.charset.Charset;

public final class ByteBufUtils {

    private ByteBufUtils() {
    }

    public static String byteBuf2String(Charset charset, ByteBuf buf) throws CharacterCodingException {
        if (charset == UTF_8 || charset == US_ASCII) {
            return Utf8ByteBufCharsetDecoder.decodeUtf8(buf);
        } else {
            return buf.toString(charset);
        }
    }

    public static String byteBuf2String(Charset charset, ByteBuf... bufs) throws CharacterCodingException {
        if (charset == UTF_8 || charset == US_ASCII) {
            return Utf8ByteBufCharsetDecoder.decodeUtf8(bufs);
        } else {
            CompositeByteBuf composite = Unpooled.compositeBuffer(bufs.length);

            try {
                for (ByteBuf buf : bufs) {
                    buf.retain();
                    composite.addComponent(buf);
                }

                return composite.toString(charset);

            } finally {
                composite.release();
            }
        }
    }

    public static byte[] byteBuf2Bytes(ByteBuf buf) {
        int readable = buf.readableBytes();
        int readerIndex = buf.readerIndex();
        if (buf.hasArray()) {
            byte[] array = buf.array();
            if (buf.arrayOffset() == 0 && readerIndex == 0 && array.length == readable) {
                return array;
            }
        }
        byte[] array = new byte[readable];
        buf.getBytes(readerIndex, array);
        return array;
    }
}