Package org.apache.cassandra.dht
Class Range<T extends RingPosition<T>>
java.lang.Object
org.apache.cassandra.dht.AbstractBounds<T>
org.apache.cassandra.dht.Range<T>
- All Implemented Interfaces:
Serializable,Comparable<Range<T>>
- Direct Known Subclasses:
MerkleTree.TreeRange
public class Range<T extends RingPosition<T>>
extends AbstractBounds<T>
implements Comparable<Range<T>>, Serializable
A representation of the range that a node is responsible for on the DHT ring.
A Range is responsible for the tokens between (left, right].
Used by the partitioner and by map/reduce by-token range scans.
Note: this class has a natural ordering that is inconsistent with equals
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classHelper class to check if a token is contained within a given collection of rangesNested classes/interfaces inherited from class org.apache.cassandra.dht.AbstractBounds
AbstractBounds.AbstractBoundsSerializer<T extends RingPosition<T>>, AbstractBounds.Boundary<T extends RingPosition<T>> -
Field Summary
FieldsFields inherited from class org.apache.cassandra.dht.AbstractBounds
left, right, rowPositionSerializer, tokenSerializer -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionasList()static <T extends RingPosition<T>>
voidassertNormalized(List<Range<T>> ranges) intNote: this class has a natural ordering that is inconsistent with equalsbooleanbooleanHelps determine if a given point on the DHT ring is contained in the range in question.static <T extends RingPosition<T>>
booleancontains(T left, T right, T point) static <T extends RingPosition<T>>
List<Range<T>>Given a list of unwrapped ranges sorted by left position, return an equivalent list of ranges but with no overlapping ranges.differenceToFetch(Range<T> rhs) Calculate set of the difference ranges of given two ranges (as current (A, B] and rhs is (C, D]) which node will need to fetch when moving to a given new tokenbooleanprotected Stringprotected Stringbooleanbooleanstatic <T extends RingPosition<T>>
List<Range<T>>intersect(Collection<Range<T>> ranges1, Collection<Range<T>> ranges2) intersectionNonWrapping(Range<T> that) Returns the intersection of this range with the provided one, assuming neither are wrapping.intersectionWith(Range<T> that) static booleanbooleanintersects(AbstractBounds<T> that) booleanintersects(Bounds<T> that) booleanintersects(Range<T> that) booleanstatic <T extends RingPosition<T>>
booleanisInRanges(T token, Iterable<Range<T>> ranges) booleanbooleanChecks if the range truly wraps around.static <T extends RingPosition<T>>
booleanisTrulyWrapAround(T left, T right) booleanstatic <T extends RingPosition<T>>
booleanisWrapAround(T left, T right) Tells if the given range is a wrap around.static Range<PartitionPosition>makeRowRange(Range<Token> tokenBounds) static Range<PartitionPosition>makeRowRange(Token left, Token right) Compute a range of keys corresponding to a given range of token.static <T extends RingPosition<T>>
List<Range<T>>normalize(Collection<Range<T>> ranges) static <T extends RingPosition<T>>
Set<Range<T>>static <T extends RingPosition<T>>
Set<Range<T>>static <T extends RingPosition<T>>
List<Range<T>>sort(Collection<Range<T>> ranges) Given token T and AbstractBounds ?L,R?, returns Pair(?L,T], (T,R?), where ? means that the same type of AbstractBounds is returned as the original.static <T extends RingPosition<T>>
Set<Range<T>>subtract(Collection<Range<T>> ranges, Collection<Range<T>> subtract) subtractAll(Collection<Range<T>> ranges) toString()unwrap()withNewRight(T newRight) Methods inherited from class org.apache.cassandra.dht.AbstractBounds
bounds, bounds, getString, hashCode, intersects, isEmpty, leftBoundary, maxLeft, maxLeft, minRight, minRight, noneStrictlyWrapsAround, rightBoundary, strictlyWrapsAround
-
Field Details
-
serialVersionUID
public static final long serialVersionUID- See Also:
-
-
Constructor Details
-
Range
-
-
Method Details
-
contains
-
contains
-
contains
Helps determine if a given point on the DHT ring is contained in the range in question.- Specified by:
containsin classAbstractBounds<T extends RingPosition<T>>- Parameters:
point- point in question- Returns:
- true if the point contains within the range else false.
-
intersects
- Parameters:
that- range to check for intersection- Returns:
- true if the given range intersects with this range.
-
intersects
-
intersects
- Parameters:
that- range to check for intersection- Returns:
- true if the given range intersects with this range.
-
intersects
-
rangeSet
-
rangeSet
-
intersectionWith
- Parameters:
that-- Returns:
- the intersection of the two Ranges. this can be two disjoint Ranges if one is wrapping and one is not. say you have nodes G and M, with query range (D,T]; the intersection is (M-T] and (D-G]. If there is no intersection, an empty list is returned.
-
intersectionNonWrapping
Returns the intersection of this range with the provided one, assuming neither are wrapping.- Parameters:
that- the other range to return the intersection with. It must not be wrapping.- Returns:
- the intersection of
thisandthat, ornullif both ranges don't intersect.
-
split
Description copied from class:AbstractBoundsGiven token T and AbstractBounds ?L,R?, returns Pair(?L,T], (T,R?), where ? means that the same type of AbstractBounds is returned as the original. Put another way, returns a Pair of everything this AbstractBounds contains up to and including the split position, and everything it contains after (not including the split position). The original AbstractBounds must either contain the position T, or T should be equals to the left bound L. If the split would only yield the same AbstractBound, null is returned instead.- Specified by:
splitin classAbstractBounds<T extends RingPosition<T>>
-
inclusiveLeft
public boolean inclusiveLeft()- Specified by:
inclusiveLeftin classAbstractBounds<T extends RingPosition<T>>
-
inclusiveRight
public boolean inclusiveRight()- Specified by:
inclusiveRightin classAbstractBounds<T extends RingPosition<T>>
-
unwrap
- Specified by:
unwrapin classAbstractBounds<T extends RingPosition<T>>
-
isWrapAround
Tells if the given range is a wrap around. -
isTrulyWrapAround
public boolean isTrulyWrapAround()Checks if the range truly wraps around. This exists only becauseisWrapAround()is a tad dumb and return true if right is the minimum token, no matter what left is, but for most intent and purposes, such range doesn't truly warp around (unwrap produces the identity in this case).Also note that it could be that the remaining uses of
isWrapAround()could be replaced by this method, but that is to be checked carefully at some other time (Sylvain).The one thing this method guarantees is that if it's true, then
unwrap()will return a list with exactly 2 ranges, never one. -
isTrulyWrapAround
-
compareTo
Note: this class has a natural ordering that is inconsistent with equals- Specified by:
compareToin interfaceComparable<T extends RingPosition<T>>
-
subtract
-
subtractAll
-
subtract
public static <T extends RingPosition<T>> Set<Range<T>> subtract(Collection<Range<T>> ranges, Collection<Range<T>> subtract) -
intersect
public static <T extends RingPosition<T>> List<Range<T>> intersect(Collection<Range<T>> ranges1, Collection<Range<T>> ranges2) -
differenceToFetch
Calculate set of the difference ranges of given two ranges (as current (A, B] and rhs is (C, D]) which node will need to fetch when moving to a given new token- Parameters:
rhs- range to calculate difference- Returns:
- set of difference ranges
-
isInRanges
-
equals
-
toString
-
getOpeningString
- Specified by:
getOpeningStringin classAbstractBounds<T extends RingPosition<T>>
-
getClosingString
- Specified by:
getClosingStringin classAbstractBounds<T extends RingPosition<T>>
-
isStartInclusive
public boolean isStartInclusive()- Specified by:
isStartInclusivein classAbstractBounds<T extends RingPosition<T>>
-
isEndInclusive
public boolean isEndInclusive()- Specified by:
isEndInclusivein classAbstractBounds<T extends RingPosition<T>>
-
asList
-
isWrapAround
public boolean isWrapAround() -
normalize
- Returns:
- A copy of the given list of with all ranges unwrapped, sorted by left bound and with overlapping bounds merged.
-
deoverlap
Given a list of unwrapped ranges sorted by left position, return an equivalent list of ranges but with no overlapping ranges. -
withNewRight
- Specified by:
withNewRightin classAbstractBounds<T extends RingPosition<T>>
-
sort
-
makeRowRange
Compute a range of keys corresponding to a given range of token. -
makeRowRange
-
assertNormalized
-