mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-04-04 06:18:35 +00:00
108 lines
3.0 KiB
Java
108 lines
3.0 KiB
Java
|
/*
|
||
|
* Licensed to Elastic Search and Shay Banon under one
|
||
|
* or more contributor license agreements. See the NOTICE file
|
||
|
* distributed with this work for additional information
|
||
|
* regarding copyright ownership. Elastic Search 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.elasticsearch.common.bytes;
|
||
|
|
||
|
import org.elasticsearch.common.io.stream.StreamInput;
|
||
|
import org.elasticsearch.common.io.stream.StreamOutput;
|
||
|
import org.elasticsearch.transport.netty.ChannelBufferStreamInputFactory;
|
||
|
import org.jboss.netty.buffer.ChannelBuffer;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
import java.io.OutputStream;
|
||
|
|
||
|
/**
|
||
|
*/
|
||
|
public class ChannelBufferBytesReference implements BytesReference {
|
||
|
|
||
|
private final ChannelBuffer buffer;
|
||
|
|
||
|
public ChannelBufferBytesReference(ChannelBuffer buffer) {
|
||
|
this.buffer = buffer;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public byte get(int index) {
|
||
|
return buffer.getByte(buffer.readerIndex() + index);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public int length() {
|
||
|
return buffer.readableBytes();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public BytesReference slice(int from, int length) {
|
||
|
return new ChannelBufferBytesReference(buffer.slice(from, length));
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public StreamInput streamInput() {
|
||
|
return ChannelBufferStreamInputFactory.create(buffer.duplicate());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void writeTo(StreamOutput out, boolean withLength) throws IOException {
|
||
|
if (withLength) {
|
||
|
out.writeVInt(buffer.readableBytes());
|
||
|
}
|
||
|
buffer.getBytes(buffer.readerIndex(), out, length());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void writeTo(OutputStream os) throws IOException {
|
||
|
buffer.getBytes(buffer.readerIndex(), os, length());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public byte[] toBytes() {
|
||
|
return copyBytesArray().toBytes();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public BytesArray toBytesArray() {
|
||
|
if (buffer.hasArray()) {
|
||
|
return new BytesArray(buffer.array(), buffer.arrayOffset() + buffer.readerIndex(), buffer.readableBytes());
|
||
|
}
|
||
|
return copyBytesArray();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public BytesArray copyBytesArray() {
|
||
|
byte[] copy = new byte[buffer.readableBytes()];
|
||
|
buffer.getBytes(buffer.readerIndex(), copy);
|
||
|
return new BytesArray(copy);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean hasArray() {
|
||
|
return buffer.hasArray();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public byte[] array() {
|
||
|
return buffer.array();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public int arrayOffset() {
|
||
|
return buffer.arrayOffset() + buffer.readerIndex();
|
||
|
}
|
||
|
}
|