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

org.dizitart.no2.common.streams.BoundedStream Maven / Gradle / Ivy

/*
 * Copyright (c) 2017-2021 Nitrite 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
 *
 *       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.dizitart.no2.common.streams;

import org.dizitart.no2.common.RecordStream;
import org.dizitart.no2.common.tuples.Pair;
import org.dizitart.no2.exceptions.ValidationException;

import java.util.Collections;
import java.util.Iterator;
import java.util.NoSuchElementException;

/**
 * @since 1.0
 * @author Anindya Chatterjee.
 */
public class BoundedStream implements RecordStream> {
    private final RecordStream> recordStream;
    private final long skip;
    private final long limit;

    public BoundedStream(Long skip, Long limit, RecordStream> recordStream) {
        this.skip = skip;
        this.limit = limit;

        if (skip < 0) {
            throw new ValidationException("skip parameter must not be negative");
        }
        if (limit < 0) {
            throw new ValidationException("limit parameter must not be negative");
        }

        this.recordStream = recordStream;
    }

    @Override
    public Iterator> iterator() {
        Iterator> iterator = recordStream == null ? Collections.emptyIterator()
            : recordStream.iterator();
        return new BoundedIterator<>(iterator, skip, limit);
    }

    private static class BoundedIterator implements Iterator {
        private final Iterator iterator;
        private final long skip;
        private final long limit;
        private long pos;

        public BoundedIterator(final Iterator iterator, final long skip, final long limit) {
            if (iterator == null) {
                throw new ValidationException("Iterator must not be null");
            }
            if (skip < 0) {
                throw new ValidationException("skip parameter must not be negative");
            }
            if (limit < 0) {
                throw new ValidationException("limit parameter must not be negative");
            }

            this.iterator = iterator;
            this.skip = skip;
            this.limit = limit;
            pos = 0;
            initialize();
        }

        private void initialize() {
            while (pos < skip && iterator.hasNext()) {
                iterator.next();
                pos++;
            }
        }

        @Override
        public boolean hasNext() {
            if (checkBounds()) {
                return false;
            }
            return iterator.hasNext();
        }

        private boolean checkBounds() {
            return pos - skip + 1 > limit;
        }

        @Override
        public T next() {
            if (checkBounds()) {
                throw new NoSuchElementException();
            }
            final T next = iterator.next();
            pos++;
            return next;
        }

        @Override
        public void remove() {
            if (pos <= skip) {
                throw new IllegalStateException("remove() cannot be called before calling next()");
            }
            iterator.remove();
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy