All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.iq80.leveldb.table.Block Maven / Gradle / Ivy

Go to download

Full deployment of default TransiStore service, using basic storage types, packaged as "fat jar" with its dependencies.

There is a newer version: 0.9.8
Show newest version
/**
 * 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.impl.SeekingIterable;
import org.iq80.leveldb.util.Slice;
import org.iq80.leveldb.util.Slices;

import java.util.Comparator;

import static org.iq80.leveldb.util.SizeOf.SIZE_OF_INT;

/**
 * Binary Structure
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 

*

* * * * * * * * * * * * * * * * * * *
nameoffsetlengthdescription
entries4varyEntries in order by key
restart indexvary4 * restart countIndex of prefix compression restarts
restart count04Number of prefix compression restarts (used as index into entries)
*/ public class Block implements SeekingIterable { private final Slice block; private final Comparator comparator; private final Slice data; private final Slice restartPositions; public Block(Slice block, Comparator comparator) { Preconditions.checkNotNull(block, "block is null"); Preconditions.checkArgument(block.length() >= SIZE_OF_INT, "Block is corrupt: size must be at least %s block", SIZE_OF_INT); Preconditions.checkNotNull(comparator, "comparator is null"); block = block.slice(); this.block = block; this.comparator = comparator; // Keys are prefix compressed. Every once in a while the prefix compression is restarted and the full key is written. // These "restart" locations are written at the end of the file, so you can seek to key without having to read the // entire file sequentially. // key restart count is the last int of the block int restartCount = block.getInt(block.length() - SIZE_OF_INT); if (restartCount > 0) { // restarts are written at the end of the block int restartOffset = block.length() - (1 + restartCount) * SIZE_OF_INT; Preconditions.checkArgument(restartOffset < block.length() - SIZE_OF_INT, "Block is corrupt: restart offset count is greater than block size"); restartPositions = block.slice(restartOffset, restartCount * SIZE_OF_INT); // data starts at 0 and extends to the restart index data = block.slice(0, restartOffset); } else { data = Slices.EMPTY_SLICE; restartPositions = Slices.EMPTY_SLICE; } } public long size() { return block.length(); } @Override public BlockIterator iterator() { return new BlockIterator(data, restartPositions, comparator); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy