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

com.palantir.common.base.ClosableIterator Maven / Gradle / Ivy

There is a newer version: 0.1152.0
Show newest version
/*
 * (c) Copyright 2018 Palantir Technologies Inc. All rights reserved.
 *
 * 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 com.palantir.common.base;

import com.google.common.collect.Iterators;
import com.google.common.collect.PeekingIterator;
import java.io.Closeable;
import java.util.Collection;
import java.util.Iterator;
import java.util.Spliterators;
import java.util.function.Function;
import java.util.function.Predicate;
import java.util.stream.Stream;
import java.util.stream.StreamSupport;

public interface ClosableIterator extends Iterator, Closeable {
    @Override
    default void close() {}

    default  ClosableIterator map(Function mapper) {
        return ClosableIterators.wrap(Iterators.transform(this, mapper::apply), this);
    }

    default  ClosableIterator flatMap(Function> mapper) {
        return ClosableIterators.wrap(
                stream().flatMap(obj -> mapper.apply(obj).stream()).iterator(), this);
    }

    default ClosableIterator stopWhen(Predicate shouldStop) {
        PeekingIterator peekingIterator = Iterators.peekingIterator(this);
        return new ClosableIterator() {

            @Override
            public boolean hasNext() {
                return peekingIterator.hasNext() && !shouldStop.test(peekingIterator.peek());
            }

            @Override
            public T next() {
                return peekingIterator.next();
            }
        };
    }

    default Stream stream() {
        return StreamSupport.stream(Spliterators.spliteratorUnknownSize(this, 0), false);
    }

    /**
     * Run the on close after the original close method. The additional close will be run even if the original close
     * method fails.
     */
    default ClosableIterator appendOnClose(Closeable onClose) {
        return ClosableIterators.appendOnClose(this, onClose);
    }
}