com.palantir.atlasdb.keyvalue.rocksdb.impl.TimestampRangeIterator.java Source code

Java tutorial

Introduction

Here is the source code for com.palantir.atlasdb.keyvalue.rocksdb.impl.TimestampRangeIterator.java

Source

/**
 * Copyright 2015 Palantir Technologies
 *
 * Licensed under the BSD-3 License (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://opensource.org/licenses/BSD-3-Clause
 *
 * 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.palantir.atlasdb.keyvalue.rocksdb.impl;

import java.util.Set;

import org.rocksdb.RocksIterator;

import com.google.common.collect.Sets;
import com.palantir.atlasdb.keyvalue.api.Cell;
import com.palantir.atlasdb.keyvalue.api.RangeRequest;
import com.palantir.atlasdb.keyvalue.rocksdb.impl.ColumnFamilyMap.ColumnFamily;
import com.palantir.util.Pair;

public class TimestampRangeIterator extends RangeIterator<Set<Long>> {

    TimestampRangeIterator(ColumnFamily table, RocksIterator it, RangeRequest range, long maxTimestamp) {
        super(table, it, range, maxTimestamp);
    }

    @Override
    protected Set<Long> processCell(Pair<Cell, Long> cellAndInitialTs) {
        Cell cell = cellAndInitialTs.lhSide;
        Set<Long> ret = Sets.newHashSet();
        if (cellAndInitialTs.rhSide < maxTimestamp) {
            ret.add(cellAndInitialTs.rhSide);
        }
        for (it.next(); it.isValid(); it.next()) {
            Pair<Cell, Long> cellAndTs = RocksDbKeyValueServices.parseCellAndTs(it.key());
            if (!cellAndTs.lhSide.equals(cell)) {
                break;
            }
            if (cellAndTs.rhSide < maxTimestamp) {
                ret.add(cellAndTs.rhSide);
            }
        }
        return ret.isEmpty() ? null : ret;
    }
}