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

org.springframework.data.domain.OffsetScrollPosition Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
/*
 * Copyright 2023 the original author or authors.
 *
 * Licensed 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
 *
 *      https://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.springframework.data.domain;

import java.util.Objects;
import java.util.function.IntFunction;

import org.springframework.lang.Nullable;
import org.springframework.util.Assert;

/**
 * A {@link ScrollPosition} based on the offsets within query results.
 *
 * @author Mark Paluch
 * @author Oliver Drotbohm
 * @since 3.1
 */
public final class OffsetScrollPosition implements ScrollPosition {

	private static final OffsetScrollPosition INITIAL = new OffsetScrollPosition(0);

	private final long offset;

	/**
	 * Creates a new {@link OffsetScrollPosition} for the given non-negative offset.
	 *
	 * @param offset must be greater or equal to zero.
	 */
	private OffsetScrollPosition(long offset) {

		Assert.isTrue(offset >= 0, "Offset must not be negative");

		this.offset = offset;
	}

	/**
	 * Creates a new initial {@link OffsetScrollPosition} to start scrolling using offset/limit.
	 *
	 * @return will never be {@literal null}.
	 */
	static OffsetScrollPosition initial() {
		return INITIAL;
	}

	/**
	 * Creates a new {@link OffsetScrollPosition} from an {@code offset}.
	 *
	 * @param offset the non-negative offset to start at.
	 * @return will never be {@literal null}.
	 */
	static OffsetScrollPosition of(long offset) {
		return offset == 0 ? initial() : new OffsetScrollPosition(offset);
	}

	/**
	 * Returns the {@link IntFunction position function} to calculate.
	 *
	 * @param startOffset the start offset to be used. Must not be negative.
	 * @return the offset-based position function.
	 */
	public static IntFunction positionFunction(long startOffset) {

		Assert.isTrue(startOffset >= 0, "Start offset must not be negative");

		return startOffset == 0 ? OffsetPositionFunction.ZERO : new OffsetPositionFunction(startOffset);
	}

	/**
	 * The zero or positive offset.
	 *
	 * @return the offset.
	 */
	public long getOffset() {
		return offset;
	}

	/**
	 * Returns a new {@link OffsetScrollPosition} that has been advanced by the given value. Negative deltas will be
	 * constrained so that the new offset is at least zero.
	 *
	 * @param delta the value to advance the current offset by.
	 * @return will never be {@literal null}.
	 */
	public OffsetScrollPosition advanceBy(long delta) {

		var value = offset + delta;

		return new OffsetScrollPosition(value < 0 ? 0 : value);
	}

	@Override
	public boolean isInitial() {
		return offset == 0;
	}

	@Override
	public boolean equals(@Nullable Object o) {

		if (this == o) {
			return true;
		}

		if (!(o instanceof OffsetScrollPosition that)) {
			return false;
		}

		return offset == that.offset;
	}

	@Override
	public int hashCode() {
		return Objects.hash(offset);
	}

	@Override
	public String toString() {
		return String.format("OffsetScrollPosition [%s]", offset);
	}

	private record OffsetPositionFunction(long startOffset) implements IntFunction {

		static final OffsetPositionFunction ZERO = new OffsetPositionFunction(0);

		@Override
		public OffsetScrollPosition apply(int offset) {

			if (offset < 0) {
				throw new IndexOutOfBoundsException(offset);
			}

			return of(startOffset + offset + 1);
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy