以下のコードでByteBuf
からバイト配列を効率的に取得する方法は?配列を取得してシリアル化する必要があります。
package testingNetty;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.ChannelInboundHandlerAdapter;
public class ServerHandler extends ChannelInboundHandlerAdapter {
@Override
public void channelRead(ChannelHandlerContext ctx, Object msg) {
System.out.println("Message receive");
ByteBuf buff = (ByteBuf) msg;
// There is I need get bytes from buff and make serialization
byte[] bytes = BuffConvertor.GetBytes(buff);
}
@Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {
// Close the connection when an exception is raised.
cause.printStackTrace();
ctx.close();
}
}
_ByteBuf buf = ...
byte[] bytes = new byte[buf.readableBytes()];
buf.readBytes(bytes);
_
ReaderIndexを変更したくない場合:
_ByteBuf buf = ...
byte[] bytes = new byte[buf.readableBytes()];
int readerIndex = buf.readerIndex();
buf.getBytes(readerIndex, bytes);
_
メモリのコピーを最小限にしたい場合は、ByteBuf
のバッキング配列を使用できます(利用可能な場合)。
_ByteBuf buf = ...
byte[] bytes;
int offset;
int length = buf.readableBytes();
if (buf.hasArray()) {
bytes = buf.array();
offset = buf.arrayOffset();
} else {
bytes = new byte[length];
buf.getBytes(buf.readerIndex(), bytes);
offset = 0;
}
_
次の理由により、buf.array()
を単純に使用できないことに注意してください。
ByteBuf
sにバッキング配列があるわけではありません。一部はオフヒープバッファーです(つまり、ダイレクトメモリ)ByteBuf
にバッキング配列がある(つまり、buf.hasArray()
がtrue
を返す)場合でも、バッファーが他のバッファーのスライスまたはプールされたバッファ:buf.array()[0] == buf.getByte(0)
buf.array().length == buf.capacity()