com.moilioncircle.redis.replicator.util.ByteBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redis-replicator Show documentation
Show all versions of redis-replicator Show documentation
Redis Replicator is a redis RDB and Command parser written in java.
It can parse,filter,broadcast the RDB and Command events in a real time manner.
It also can synchronize redis data to your local cache or to database.
package com.moilioncircle.redis.replicator.util;
import java.io.UnsupportedEncodingException;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.List;
/**
* Created by leon on 8/14/16.
*/
//NonThreadSafe
public class ByteBuilder {
private final ByteBuffer buffer;
private final List list = new ArrayList<>();
private int total = 0;
private ByteBuilder(int cap) {
this.buffer = ByteBuffer.allocate(cap);
}
public static ByteBuilder allocate(int cap) {
return new ByteBuilder(cap);
}
public void put(byte b) {
total++;
if (buffer.hasRemaining()) {
buffer.put(b);
} else {
byte[] temp = new byte[buffer.capacity()];
System.arraycopy(buffer.array(), 0, temp, 0, buffer.capacity());
list.add(temp);
buffer.clear();
buffer.put(b);
}
}
public int length() {
return total;
}
public byte[] array() {
int len = total;
int offset = 0;
byte[] ary = new byte[len];
for (byte[] ba : list) {
System.arraycopy(ba, 0, ary, offset, ba.length);
offset += ba.length;
len -= ba.length;
}
if (len > 0) System.arraycopy(buffer.array(), 0, ary, offset, len);
return ary;
}
@Override
public String toString() {
try {
return new String(array(), "UTF-8");
} catch (UnsupportedEncodingException e) {
return null;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy