infinispan.org.iq80.leveldb.table.Footer Maven / Gradle / Ivy
/**
* Copyright (C) 2011 the original author or authors.
* See the notice.md file distributed with this work for additional
* information regarding copyright ownership.
*
* 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 org.iq80.leveldb.table;
import com.google.common.base.Preconditions;
import org.iq80.leveldb.util.Slice;
import org.iq80.leveldb.util.SliceInput;
import org.iq80.leveldb.util.Slices;
import org.iq80.leveldb.util.SliceOutput;
import static org.iq80.leveldb.table.BlockHandle.readBlockHandle;
import static org.iq80.leveldb.table.BlockHandle.writeBlockHandleTo;
import static org.iq80.leveldb.util.SizeOf.SIZE_OF_LONG;
public class Footer
{
public static final int ENCODED_LENGTH = (BlockHandle.MAX_ENCODED_LENGTH * 2) + SIZE_OF_LONG;
private final BlockHandle metaindexBlockHandle;
private final BlockHandle indexBlockHandle;
Footer(BlockHandle metaindexBlockHandle, BlockHandle indexBlockHandle)
{
this.metaindexBlockHandle = metaindexBlockHandle;
this.indexBlockHandle = indexBlockHandle;
}
public BlockHandle getMetaindexBlockHandle()
{
return metaindexBlockHandle;
}
public BlockHandle getIndexBlockHandle()
{
return indexBlockHandle;
}
public static Footer readFooter(Slice slice)
{
Preconditions.checkNotNull(slice, "slice is null");
Preconditions.checkArgument(slice.length() == ENCODED_LENGTH, "Expected slice.size to be %s but was %s", ENCODED_LENGTH, slice.length());
SliceInput sliceInput = slice.input();
// read metaindex and index handles
BlockHandle metaindexBlockHandle = readBlockHandle(sliceInput);
BlockHandle indexBlockHandle = readBlockHandle(sliceInput);
// skip padding
sliceInput.setPosition(ENCODED_LENGTH - SIZE_OF_LONG);
// verify magic number
long magicNumber = sliceInput.readUnsignedInt() | (sliceInput.readUnsignedInt() << 32);
Preconditions.checkArgument(magicNumber == TableBuilder.TABLE_MAGIC_NUMBER, "File is not a table (bad magic number)");
return new Footer(metaindexBlockHandle, indexBlockHandle);
}
public static Slice writeFooter(Footer Footer)
{
Slice slice = Slices.allocate(ENCODED_LENGTH);
writeFooter(Footer, slice.output());
return slice;
}
public static void writeFooter(Footer footer, SliceOutput sliceOutput)
{
// remember the starting write index so we can calculate the padding
int startingWriteIndex = sliceOutput.size();
// write metaindex and index handles
writeBlockHandleTo(footer.getMetaindexBlockHandle(), sliceOutput);
writeBlockHandleTo(footer.getIndexBlockHandle(), sliceOutput);
// write padding
sliceOutput.writeZero(ENCODED_LENGTH - SIZE_OF_LONG - (sliceOutput.size() - startingWriteIndex));
// write magic number as two (little endian) integers
sliceOutput.writeInt((int) TableBuilder.TABLE_MAGIC_NUMBER);
sliceOutput.writeInt((int) (TableBuilder.TABLE_MAGIC_NUMBER >>> 32));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy