Class HistoricalCsnRangeMatchingRuleImpl

  • All Implemented Interfaces:
    MatchingRuleImpl

    public final class HistoricalCsnRangeMatchingRuleImpl
    extends Object
    implements MatchingRuleImpl
    Extensible matching rule to allow a range search on CSNs for a given replica.

    It uses the same index as HistoricalCsnOrderingMatchingRuleImpl, but emulates a range search on a multivalued attribute. We can do that because the index is ordered by replica id and we're interested on a range search for a single replica only.

    • Constructor Detail

      • HistoricalCsnRangeMatchingRuleImpl

        public HistoricalCsnRangeMatchingRuleImpl()
    • Method Detail

      • getAssertion

        public Assertion getAssertion​(Schema schema,
                                      ByteSequence assertionValue)
                               throws DecodeException
        Description copied from interface: MatchingRuleImpl
        Retrieves the normalized form of the provided assertion value, which is best suited for efficiently performing less than matching operations on that value. The assertion value is guaranteed to be valid against this matching rule's assertion syntax.
        Specified by:
        getAssertion in interface MatchingRuleImpl
        Parameters:
        schema - The schema in which this matching rule is defined.
        assertionValue - The syntax checked assertion value to be normalized.
        Returns:
        The normalized version of the provided assertion value.
        Throws:
        DecodeException - if an syntax error occurred while parsing the value.
      • getSubstringAssertion

        public Assertion getSubstringAssertion​(Schema schema,
                                               ByteSequence subInitial,
                                               List<? extends ByteSequence> subAnyElements,
                                               ByteSequence subFinal)
        Description copied from interface: MatchingRuleImpl
        Retrieves the normalized form of the provided assertion substring values, which is best suited for efficiently performing matching operations on that value.
        Specified by:
        getSubstringAssertion in interface MatchingRuleImpl
        Parameters:
        schema - The schema in which this matching rule is defined.
        subInitial - The normalized substring value fragment that should appear at the beginning of the target value.
        subAnyElements - The normalized substring value fragments that should appear in the middle of the target value.
        subFinal - The normalized substring value fragment that should appear at the end of the target value.
        Returns:
        The normalized version of the provided assertion value.
      • getGreaterOrEqualAssertion

        public Assertion getGreaterOrEqualAssertion​(Schema schema,
                                                    ByteSequence value)
        Description copied from interface: MatchingRuleImpl
        Retrieves the normalized form of the provided assertion value, which is best suited for efficiently performing greater than or equal matching operations on that value. The assertion value is guaranteed to be valid against this matching rule's assertion syntax.
        Specified by:
        getGreaterOrEqualAssertion in interface MatchingRuleImpl
        Parameters:
        schema - The schema in which this matching rule is defined.
        value - The syntax checked assertion value to be normalized.
        Returns:
        The normalized version of the provided assertion value.
      • getLessOrEqualAssertion

        public Assertion getLessOrEqualAssertion​(Schema schema,
                                                 ByteSequence value)
        Description copied from interface: MatchingRuleImpl
        Retrieves the normalized form of the provided assertion value, which is best suited for efficiently performing less than or equal matching operations on that value. The assertion value is guaranteed to be valid against this matching rule's assertion syntax.
        Specified by:
        getLessOrEqualAssertion in interface MatchingRuleImpl
        Parameters:
        schema - The schema in which this matching rule is defined.
        value - The syntax checked assertion value to be normalized.
        Returns:
        The normalized version of the provided assertion value.