-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Slice code from level db Tuples and blocks only support fixed with data
- Loading branch information
Showing
30 changed files
with
3,004 additions
and
270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
218 changes: 218 additions & 0 deletions
218
src/main/java/com/facebook/presto/BasicSliceOutput.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,218 @@ | ||
/* | ||
* Copyright 2009 Red Hat, Inc. | ||
* | ||
* Red Hat 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 com.facebook.presto; | ||
|
||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.nio.ByteBuffer; | ||
import java.nio.channels.FileChannel; | ||
import java.nio.channels.ScatteringByteChannel; | ||
import java.nio.charset.Charset; | ||
|
||
public class BasicSliceOutput extends SliceOutput | ||
{ | ||
private final Slice slice; | ||
private int size; | ||
|
||
protected BasicSliceOutput(Slice slice) | ||
{ | ||
this.slice = slice; | ||
} | ||
|
||
@Override | ||
public void reset() | ||
{ | ||
size = 0; | ||
} | ||
|
||
@Override | ||
public int size() | ||
{ | ||
return size; | ||
} | ||
|
||
@Override | ||
public boolean isWritable() | ||
{ | ||
return writableBytes() > 0; | ||
} | ||
|
||
@Override | ||
public int writableBytes() | ||
{ | ||
return slice.length() - size; | ||
} | ||
|
||
@Override | ||
public void writeByte(int value) | ||
{ | ||
slice.setByte(size++, value); | ||
} | ||
|
||
@Override | ||
public void writeShort(int value) | ||
{ | ||
slice.setShort(size, value); | ||
size += 2; | ||
} | ||
|
||
@Override | ||
public void writeInt(int value) | ||
{ | ||
slice.setInt(size, value); | ||
size += 4; | ||
} | ||
|
||
@Override | ||
public void writeLong(long value) | ||
{ | ||
slice.setLong(size, value); | ||
size += 8; | ||
} | ||
|
||
@Override | ||
public void writeBytes(byte[] source, int sourceIndex, int length) | ||
{ | ||
slice.setBytes(size, source, sourceIndex, length); | ||
size += length; | ||
} | ||
|
||
@Override | ||
public void writeBytes(byte[] source) | ||
{ | ||
writeBytes(source, 0, source.length); | ||
} | ||
|
||
@Override | ||
public void writeBytes(Slice source) | ||
{ | ||
writeBytes(source, 0, source.length()); | ||
} | ||
|
||
@Override | ||
public void writeBytes(SliceInput source, int length) | ||
{ | ||
if (length > source.available()) { | ||
throw new IndexOutOfBoundsException(); | ||
} | ||
writeBytes(source.readBytes(length)); | ||
} | ||
|
||
@Override | ||
public void writeBytes(Slice source, int sourceIndex, int length) | ||
{ | ||
slice.setBytes(size, source, sourceIndex, length); | ||
size += length; | ||
} | ||
|
||
@Override | ||
public void writeBytes(ByteBuffer source) | ||
{ | ||
int length = source.remaining(); | ||
slice.setBytes(size, source); | ||
size += length; | ||
} | ||
|
||
@Override | ||
public int writeBytes(InputStream in, int length) | ||
throws IOException | ||
{ | ||
int writtenBytes = slice.setBytes(size, in, length); | ||
if (writtenBytes > 0) { | ||
size += writtenBytes; | ||
} | ||
return writtenBytes; | ||
} | ||
|
||
@Override | ||
public int writeBytes(ScatteringByteChannel in, int length) | ||
throws IOException | ||
{ | ||
int writtenBytes = slice.setBytes(size, in, length); | ||
if (writtenBytes > 0) { | ||
size += writtenBytes; | ||
} | ||
return writtenBytes; | ||
} | ||
|
||
@Override | ||
public int writeBytes(FileChannel in, int position, int length) | ||
throws IOException | ||
{ | ||
int writtenBytes = slice.setBytes(size, in, position, length); | ||
if (writtenBytes > 0) { | ||
size += writtenBytes; | ||
} | ||
return writtenBytes; | ||
} | ||
|
||
@Override | ||
public void writeZero(int length) | ||
{ | ||
if (length == 0) { | ||
return; | ||
} | ||
if (length < 0) { | ||
throw new IllegalArgumentException( | ||
"length must be 0 or greater than 0."); | ||
} | ||
int nLong = length >>> 3; | ||
int nBytes = length & 7; | ||
for (int i = nLong; i > 0; i--) { | ||
writeLong(0); | ||
} | ||
if (nBytes == 4) { | ||
writeInt(0); | ||
} | ||
else if (nBytes < 4) { | ||
for (int i = nBytes; i > 0; i--) { | ||
writeByte((byte) 0); | ||
} | ||
} | ||
else { | ||
writeInt(0); | ||
for (int i = nBytes - 4; i > 0; i--) { | ||
writeByte((byte) 0); | ||
} | ||
} | ||
} | ||
|
||
@Override | ||
public Slice slice() | ||
{ | ||
return slice.slice(0, size); | ||
} | ||
|
||
@Override | ||
public ByteBuffer toByteBuffer() | ||
{ | ||
return slice.toByteBuffer(0, size); | ||
} | ||
|
||
@Override | ||
public String toString() | ||
{ | ||
return getClass().getSimpleName() + '(' + | ||
"size=" + size + ", " + | ||
"capacity=" + slice.length() + | ||
')'; | ||
} | ||
|
||
public String toString(Charset charset) | ||
{ | ||
return slice.toString(0, size, charset); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,71 @@ | ||
package com.facebook.presto; | ||
|
||
import com.google.common.base.Preconditions; | ||
import io.airlift.units.DataSize; | ||
import io.airlift.units.DataSize.Unit; | ||
|
||
public class BlockBuilder | ||
{ | ||
public void append(Object value) | ||
private static final DataSize DEFAULT_MAX_BLOCK_SIZE = new DataSize(64, Unit.KILOBYTE); | ||
|
||
private final long startPosition; | ||
private final TupleInfo tupleInfo; | ||
private final int maxBlockSize; | ||
private final DynamicSliceOutput sliceOutput; | ||
|
||
public BlockBuilder(long startPosition, TupleInfo tupleInfo) | ||
{ | ||
this(startPosition, tupleInfo, DEFAULT_MAX_BLOCK_SIZE); | ||
} | ||
|
||
public BlockBuilder(long startPosition, TupleInfo tupleInfo, DataSize blockSize) | ||
{ | ||
Preconditions.checkArgument(startPosition >= 0, "startPosition is negative"); | ||
Preconditions.checkNotNull(blockSize, "blockSize is null"); | ||
|
||
this.startPosition = startPosition; | ||
this.tupleInfo = tupleInfo; | ||
maxBlockSize = (int) blockSize.toBytes(); | ||
sliceOutput = new DynamicSliceOutput((int) blockSize.toBytes()); | ||
} | ||
|
||
public boolean isFull() | ||
{ | ||
return sliceOutput.size() > maxBlockSize; | ||
} | ||
|
||
public void append(byte value) | ||
{ | ||
sliceOutput.write(value); | ||
} | ||
|
||
public void append(int value) | ||
{ | ||
sliceOutput.writeInt(value); | ||
} | ||
|
||
public void append(long value) | ||
{ | ||
sliceOutput.writeLong(value); | ||
} | ||
|
||
public void append(byte[] value) | ||
{ | ||
sliceOutput.writeBytes(value); | ||
} | ||
|
||
public void append(Slice value) | ||
{ | ||
sliceOutput.writeBytes(value); | ||
} | ||
|
||
public void append(Tuple tuple) | ||
{ | ||
tuple.writeTo(sliceOutput); | ||
} | ||
|
||
public ValueBlock build() | ||
public UncompressedValueBlock build() | ||
{ | ||
return null; | ||
return new UncompressedValueBlock(startPosition, tupleInfo, sliceOutput.slice()); | ||
} | ||
} |
Oops, something went wrong.