com.facebook.presto.orc.stream.LongOutputStreamDwrf Maven / Gradle / Ivy
The newest version!
/*
* 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
*
* 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 com.facebook.presto.orc.stream;
import com.facebook.presto.orc.ColumnWriterOptions;
import com.facebook.presto.orc.DwrfDataEncryptor;
import com.facebook.presto.orc.OrcOutputBuffer;
import com.facebook.presto.orc.checkpoint.LongStreamCheckpoint;
import com.facebook.presto.orc.checkpoint.LongStreamDwrfCheckpoint;
import com.facebook.presto.orc.metadata.Stream;
import com.facebook.presto.orc.metadata.Stream.StreamKind;
import com.google.common.collect.ImmutableList;
import org.openjdk.jol.info.ClassLayout;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
import static com.facebook.presto.orc.stream.LongDecode.writeVLong;
import static com.google.common.base.Preconditions.checkState;
import static java.lang.Math.toIntExact;
import static java.util.Objects.requireNonNull;
public class LongOutputStreamDwrf
implements LongOutputStream
{
private static final int INSTANCE_SIZE = ClassLayout.parseClass(LongOutputStreamDwrf.class).instanceSize();
private final StreamKind streamKind;
private final OrcOutputBuffer buffer;
private final boolean signed;
private final List checkpoints = new ArrayList<>();
private boolean closed;
public LongOutputStreamDwrf(ColumnWriterOptions columnWriterOptions, Optional dwrfEncryptor, boolean signed, StreamKind streamKind)
{
this.streamKind = requireNonNull(streamKind, "streamKind is null");
this.buffer = new OrcOutputBuffer(columnWriterOptions, dwrfEncryptor);
this.signed = signed;
}
@Override
public void writeLong(long value)
{
checkState(!closed);
writeVLong(buffer, value, signed);
}
@Override
public void recordCheckpoint()
{
checkState(!closed);
checkpoints.add(new LongStreamDwrfCheckpoint(buffer.getCheckpoint()));
}
@Override
public void close()
{
closed = true;
buffer.close();
}
@Override
public List getCheckpoints()
{
checkState(closed);
return ImmutableList.copyOf(checkpoints);
}
@Override
public StreamDataOutput getStreamDataOutput(int column, int sequence)
{
return new StreamDataOutput(buffer::writeDataTo, new Stream(column, sequence, streamKind, toIntExact(buffer.getOutputDataSize()), true));
}
@Override
public long getBufferedBytes()
{
return buffer.estimateOutputDataSize();
}
@Override
public long getRetainedBytes()
{
// NOTE: we do not include checkpoints because they should be small and it would be annoying to calculate the size
return INSTANCE_SIZE + buffer.getRetainedSize();
}
@Override
public void reset()
{
closed = false;
buffer.reset();
checkpoints.clear();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy