net.spy.memcached.transcoders.TranscoderUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticache-java-cluster-client Show documentation
Show all versions of elasticache-java-cluster-client Show documentation
Amazon ElastiCache Cluster Client is an enhanced Java library to connect to ElastiCache clusters. This client library has been built upon Spymemcached and is released under the Amazon Software License.
/**
* Copyright (C) 2006-2009 Dustin Sallings
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALING
* IN THE SOFTWARE.
*/
package net.spy.memcached.transcoders;
/**
* Utility class for transcoding Java types.
*/
public final class TranscoderUtils {
private final boolean packZeros;
/**
* Get an instance of TranscoderUtils.
*
* @param pack if true, remove all zero bytes from the MSB of the packed num
*/
public TranscoderUtils(boolean pack) {
super();
packZeros = pack;
}
public byte[] encodeNum(long l, int maxBytes) {
byte[] rv = new byte[maxBytes];
for (int i = 0; i < rv.length; i++) {
int pos = rv.length - i - 1;
rv[pos] = (byte) ((l >> (8 * i)) & 0xff);
}
if (packZeros) {
int firstNon0 = 0;
// Just looking for what we can reduce
while (firstNon0 < rv.length && rv[firstNon0] == 0) {
firstNon0++;
}
if (firstNon0 > 0) {
byte[] tmp = new byte[rv.length - firstNon0];
System.arraycopy(rv, firstNon0, tmp, 0, rv.length - firstNon0);
rv = tmp;
}
}
return rv;
}
public byte[] encodeLong(long l) {
return encodeNum(l, 8);
}
public long decodeLong(byte[] b) {
long rv = 0;
for (byte i : b) {
rv = (rv << 8) | (i < 0 ? 256 + i : i);
}
return rv;
}
public byte[] encodeInt(int in) {
return encodeNum(in, 4);
}
public int decodeInt(byte[] in) {
assert in.length <= 4 : "Too long to be an int (" + in.length + ") bytes";
return (int) decodeLong(in);
}
public byte[] encodeByte(byte in) {
return new byte[] { in };
}
public byte decodeByte(byte[] in) {
assert in.length <= 1 : "Too long for a byte";
byte rv = 0;
if (in.length == 1) {
rv = in[0];
}
return rv;
}
public byte[] encodeBoolean(boolean b) {
byte[] rv = new byte[1];
rv[0] = (byte) (b ? '1' : '0');
return rv;
}
public boolean decodeBoolean(byte[] in) {
assert in.length == 1 : "Wrong length for a boolean";
return in[0] == '1';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy