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

org.apache.hadoop.hbase.io.TimeRange Maven / Gradle / Ivy

There is a newer version: 3.0.0-beta-1
Show newest version
/*
 *
 * 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.hadoop.hbase.io;

import java.io.IOException;

import org.apache.hadoop.hbase.classification.InterfaceAudience;
import org.apache.hadoop.hbase.classification.InterfaceStability;
import org.apache.hadoop.hbase.util.Bytes;

/**
 * Represents an interval of version timestamps. Presumes timestamps between
 * {@link #INITIAL_MIN_TIMESTAMP} and {@link #INITIAL_MAX_TIMESTAMP} only. Gets freaked out if
 * passed a timestamp that is < {@link #INITIAL_MIN_TIMESTAMP},
 * 

* Evaluated according to minStamp <= timestamp < maxStamp * or [minStamp,maxStamp) in interval notation. *

* Only used internally; should not be accessed directly by clients. *

Immutable. Thread-safe. */ @InterfaceAudience.Public @InterfaceStability.Stable public class TimeRange { public static final long INITIAL_MIN_TIMESTAMP = 0L; public static final long INITIAL_MAX_TIMESTAMP = Long.MAX_VALUE; private final long minStamp; private final long maxStamp; private final boolean allTime; /** * Default constructor. * Represents interval [0, Long.MAX_VALUE) (allTime) * @deprecated This is made @InterfaceAudience.Private in the 2.0 line and above */ @Deprecated public TimeRange() { this(INITIAL_MIN_TIMESTAMP, INITIAL_MAX_TIMESTAMP); } /** * Represents interval [minStamp, Long.MAX_VALUE) * @param minStamp the minimum timestamp value, inclusive * @deprecated This is made @InterfaceAudience.Private in the 2.0 line and above */ @Deprecated public TimeRange(long minStamp) { this(minStamp, INITIAL_MAX_TIMESTAMP); } /** * Represents interval [minStamp, Long.MAX_VALUE) * @param minStamp the minimum timestamp value, inclusive * @deprecated This is removed in the 2.0 line and above */ @Deprecated public TimeRange(byte [] minStamp) { this(Bytes.toLong(minStamp)); } /** * Represents interval [minStamp, maxStamp) * @param minStamp the minimum timestamp, inclusive * @param maxStamp the maximum timestamp, exclusive * @throws IOException * @deprecated This is removed in the 2.0 line and above */ @Deprecated public TimeRange(byte [] minStamp, byte [] maxStamp) throws IOException { this(Bytes.toLong(minStamp), Bytes.toLong(maxStamp)); } /** * Represents interval [minStamp, maxStamp) * @param minStamp the minimum timestamp, inclusive * @param maxStamp the maximum timestamp, exclusive * @throws IllegalArgumentException if either <0, * @deprecated This is made @InterfaceAudience.Private in the 2.0 line and above */ @Deprecated public TimeRange(long minStamp, long maxStamp) { check(minStamp, maxStamp); this.minStamp = minStamp; this.maxStamp = maxStamp; this.allTime = isAllTime(minStamp, maxStamp); } private static boolean isAllTime(long minStamp, long maxStamp) { return minStamp == INITIAL_MIN_TIMESTAMP && maxStamp == INITIAL_MAX_TIMESTAMP; } private static void check(long minStamp, long maxStamp) { if (minStamp < 0 || maxStamp < 0) { throw new IllegalArgumentException("Timestamp cannot be negative. minStamp:" + minStamp + ", maxStamp:" + maxStamp); } if (maxStamp < minStamp) { throw new IllegalArgumentException("maxStamp is smaller than minStamp"); } } /** * @return the smallest timestamp that should be considered */ public long getMin() { return minStamp; } /** * @return the biggest timestamp that should be considered */ public long getMax() { return maxStamp; } /** * Check if it is for all time * @return true if it is for all time */ public boolean isAllTime() { return allTime; } /** * Check if the specified timestamp is within this TimeRange. *

* Returns true if within interval [minStamp, maxStamp), false if not. * @param bytes timestamp to check * @param offset offset into the bytes * @return true if within TimeRange, false if not */ public boolean withinTimeRange(byte [] bytes, int offset) { if (allTime) { return true; } return withinTimeRange(Bytes.toLong(bytes, offset)); } /** * Check if the specified timestamp is within this TimeRange. *

* Returns true if within interval [minStamp, maxStamp), false * if not. * @param timestamp timestamp to check * @return true if within TimeRange, false if not */ public boolean withinTimeRange(long timestamp) { assert timestamp >= 0; if (this.allTime) { return true; } // check if >= minStamp return (minStamp <= timestamp && timestamp < maxStamp); } /** * Check if the range has any overlap with TimeRange * @param tr TimeRange * @return True if there is overlap, false otherwise */ // This method came from TimeRangeTracker. We used to go there for this function but better // to come here to the immutable, unsynchronized datastructure at read time. public boolean includesTimeRange(final TimeRange tr) { if (this.allTime) { return true; } assert tr.getMin() >= 0; return getMin() < tr.getMax() && getMax() >= tr.getMin(); } /** * Check if the specified timestamp is within or after this TimeRange. *

* Returns true if greater than minStamp, false if not. * @param timestamp timestamp to check * @return true if within or after TimeRange, false if not */ public boolean withinOrAfterTimeRange(long timestamp) { assert timestamp >= 0; if (allTime) { return true; } // check if >= minStamp return timestamp >= minStamp; } /** * Compare the timestamp to timerange. * @return -1 if timestamp is less than timerange, * 0 if timestamp is within timerange, * 1 if timestamp is greater than timerange */ public int compare(long timestamp) { assert timestamp >= 0; if (this.allTime) { return 0; } if (timestamp < minStamp) { return -1; } return timestamp >= maxStamp? 1: 0; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("maxStamp="); sb.append(this.maxStamp); sb.append(", minStamp="); sb.append(this.minStamp); return sb.toString(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy