blob: a8c74744a8ff4fb193626d6557a399ceab74e5ef [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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 org.apache.phoenix.hbase.index.covered.filter;
import org.apache.hadoop.hbase.Cell;
import org.apache.hadoop.hbase.KeyValue;
import org.apache.hadoop.hbase.KeyValueUtil;
import org.apache.hadoop.hbase.filter.FilterBase;
import org.apache.hadoop.hbase.util.Bytes;
/**
* Inclusive filter on the maximum timestamp allowed. Excludes all elements greater than (but not
* equal to) the given timestamp, so given ts = 5, a {@link KeyValue} with ts 6 is excluded, but not
* one with ts = 5.
*/
public class MaxTimestampFilter extends FilterBase {
private long ts;
public MaxTimestampFilter(long maxTime) {
this.ts = maxTime;
}
@Override
public Cell getNextCellHint(Cell currentKV) {
// this might be a little excessive right now - better safe than sorry though, so we don't mess
// with other filters too much.
KeyValue kv = null;
try {
kv = KeyValueUtil.ensureKeyValue(currentKV).clone();
} catch (CloneNotSupportedException e) {
// the exception should not happen at all
throw new IllegalArgumentException(e);
}
int offset =kv.getTimestampOffset();
//set the timestamp in the buffer
byte[] buffer = kv.getBuffer();
byte[] ts = Bytes.toBytes(this.ts);
System.arraycopy(ts, 0, buffer, offset, ts.length);
return kv;
}
@Override
public ReturnCode filterKeyValue(Cell v) {
long timestamp = v.getTimestamp();
if (timestamp > ts) {
return ReturnCode.SEEK_NEXT_USING_HINT;
}
return ReturnCode.INCLUDE;
}
}