blob: 65430258b55d8bfe7767f48a02f68cea93fe9962 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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.apache.cassandra.db;
import java.nio.ByteBuffer;
import java.util.UUID;
import org.apache.cassandra.utils.vint.VIntCoding;
public final class TypeSizes
{
private TypeSizes(){}
private static final int BOOL_SIZE = 1;
private static final int SHORT_SIZE = 2;
private static final int INT_SIZE = 4;
private static final int LONG_SIZE = 8;
private static final int UUID_SIZE = 16;
/** assumes UTF8 */
public static int sizeof(String value)
{
int length = encodedUTF8Length(value);
assert length <= Short.MAX_VALUE;
return sizeof((short) length) + length;
}
public static int encodedUTF8Length(String st)
{
int strlen = st.length();
int utflen = 0;
for (int i = 0; i < strlen; i++)
{
int c = st.charAt(i);
if ((c >= 0x0001) && (c <= 0x007F))
utflen++;
else if (c > 0x07FF)
utflen += 3;
else
utflen += 2;
}
return utflen;
}
public static int sizeofWithShortLength(ByteBuffer value)
{
return sizeof((short) value.remaining()) + value.remaining();
}
public static int sizeofWithLength(ByteBuffer value)
{
return sizeof(value.remaining()) + value.remaining();
}
public static int sizeofWithVIntLength(ByteBuffer value)
{
return sizeofUnsignedVInt(value.remaining()) + value.remaining();
}
public static int sizeof(boolean value)
{
return BOOL_SIZE;
}
public static int sizeof(short value)
{
return SHORT_SIZE;
}
public static int sizeof(int value)
{
return INT_SIZE;
}
public static int sizeof(long value)
{
return LONG_SIZE;
}
public static int sizeof(UUID value)
{
return UUID_SIZE;
}
public static int sizeofVInt(long value)
{
return VIntCoding.computeVIntSize(value);
}
public static int sizeofUnsignedVInt(long value)
{
return VIntCoding.computeUnsignedVIntSize(value);
}
}