com.tencent.angel.utils.ByteBufferOutputStream Maven / Gradle / Ivy
/*
* Tencent is pleased to support the open source community by making Angel available.
*
* Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved.
*
* Licensed 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
*
* https://opensource.org/licenses/Apache-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 com.tencent.angel.utils;
import java.io.IOException;
import java.io.OutputStream;
import java.nio.ByteBuffer;
import java.util.LinkedList;
import java.util.List;
/**
* Utility to collect data written to an {@link java.io.OutputStream} in {@link java.nio.ByteBuffer}
* s. Copied from avro.
*/
public class ByteBufferOutputStream extends OutputStream {
public static final int BUFFER_SIZE = 8192;
private List buffers;
public ByteBufferOutputStream() {
reset();
}
/**
* Returns all data written and resets the stream to be empty.
*/
public List getBufferList() {
List result = buffers;
reset();
for (ByteBuffer buffer : result)
buffer.flip();
return result;
}
/**
* Prepend a list of ByteBuffers to this stream.
*/
public void prepend(List lists) {
for (ByteBuffer buffer : lists) {
buffer.position(buffer.limit());
}
buffers.addAll(0, lists);
}
/**
* Append a list of ByteBuffers to this stream.
*/
public void append(List lists) {
for (ByteBuffer buffer : lists) {
buffer.position(buffer.limit());
}
buffers.addAll(lists);
}
public void reset() {
buffers = new LinkedList();
buffers.add(ByteBuffer.allocate(BUFFER_SIZE));
}
public void write(ByteBuffer buffer) {
buffers.add(buffer);
}
@Override public void write(int b) {
ByteBuffer buffer = buffers.get(buffers.size() - 1);
if (buffer.remaining() < 1) {
buffer = ByteBuffer.allocate(BUFFER_SIZE);
buffers.add(buffer);
}
buffer.put((byte) b);
}
@Override public void write(byte[] b, int off, int len) {
ByteBuffer buffer = buffers.get(buffers.size() - 1);
int remaining = buffer.remaining();
while (len > remaining) {
buffer.put(b, off, remaining);
len -= remaining;
off += remaining;
buffer = ByteBuffer.allocate(BUFFER_SIZE);
buffers.add(buffer);
remaining = buffer.remaining();
}
buffer.put(b, off, len);
}
/**
* Add a buffer to the output without copying, if possible.
*/
public void writeBuffer(ByteBuffer buffer) throws IOException {
if (buffer.remaining() < BUFFER_SIZE) {
write(buffer.array(), buffer.position(), buffer.remaining());
} else { // append w/o copying bytes
ByteBuffer dup = buffer.duplicate();
dup.position(buffer.limit()); // ready for flip
buffers.add(dup);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy