blob: 9af575bbcfdad061c490bd3f39030fb6d8c92478 [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.iotdb.tsfile.encoding.encoder;
import org.apache.iotdb.tsfile.file.metadata.enums.TSEncoding;
import java.io.ByteArrayOutputStream;
/**
* This class includes code modified from Michael Burman's gorilla-tsc project.
*
* <p>Copyright: 2016-2018 Michael Burman and/or other contributors
*
* <p>Project page: https://github.com/burmanm/gorilla-tsc
*
* <p>License: http://www.apache.org/licenses/LICENSE-2.0
*/
public abstract class GorillaEncoderV2 extends Encoder {
protected boolean firstValueWasWritten = false;
protected int storedLeadingZeros = Integer.MAX_VALUE;
protected int storedTrailingZeros = 0;
private byte buffer = 0;
protected int bitsLeft = Byte.SIZE;
protected GorillaEncoderV2() {
super(TSEncoding.GORILLA);
}
@Override
public final long getMaxByteSize() {
return 0;
}
protected void reset() {
firstValueWasWritten = false;
storedLeadingZeros = Integer.MAX_VALUE;
storedTrailingZeros = 0;
buffer = 0;
bitsLeft = Byte.SIZE;
}
/** Stores a 0 and increases the count of bits by 1. */
protected void skipBit(ByteArrayOutputStream out) {
bitsLeft--;
flipByte(out);
}
/** Stores a 1 and increases the count of bits by 1. */
protected void writeBit(ByteArrayOutputStream out) {
buffer |= (1 << (bitsLeft - 1));
bitsLeft--;
flipByte(out);
}
/**
* Writes the given long value using the defined amount of least significant bits.
*
* @param value The long value to be written
* @param bits How many bits are stored to the stream
*/
protected void writeBits(long value, int bits, ByteArrayOutputStream out) {
while (bits > 0) {
int shift = bits - bitsLeft;
if (shift >= 0) {
buffer |= (byte) ((value >> shift) & ((1 << bitsLeft) - 1));
bits -= bitsLeft;
bitsLeft = 0;
} else {
shift = bitsLeft - bits;
buffer |= (byte) (value << shift);
bitsLeft -= bits;
bits = 0;
}
flipByte(out);
}
}
protected void flipByte(ByteArrayOutputStream out) {
if (bitsLeft == 0) {
out.write(buffer);
buffer = 0;
bitsLeft = Byte.SIZE;
}
}
}