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

org.mycore.common.MCRStreamUtils Maven / Gradle / Ivy

There is a newer version: 2024.05
Show newest version
/*
 * This file is part of ***  M y C o R e  ***
 * See http://www.mycore.de/ for details.
 *
 * MyCoRe is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * MyCoRe is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with MyCoRe.  If not, see .
 */

package org.mycore.common;

import java.util.Collection;
import java.util.Enumeration;
import java.util.Map;
import java.util.Spliterator;
import java.util.Spliterators;
import java.util.concurrent.ConcurrentHashMap;
import java.util.function.Function;
import java.util.function.Predicate;
import java.util.stream.Stream;
import java.util.stream.StreamSupport;

import com.google.common.collect.Iterators;

/**
 * Helper methods to handle common Stream use cases.
 *
 * @author Thomas Scheffler (yagee)
 */
public class MCRStreamUtils {

    /**
     * Short circuit for calling flatten(node, subNodeSupplier, subNodeSupplier, t -> true)
     * @param node node that holds kind-of subtree.
     * @param subNodeSupplier a function that delivers subtree items of next level
     * @param streamProvider a function that makes a Stream of a Collection<T>, usually Collection::stream or Collection::parallelStream
     * @see #flatten(Object, Function, Function, Predicate)
     * @since 2016.04
     */
    public static  Stream flatten(T node, Function> subNodeSupplier,
        Function, Stream> streamProvider) {
        return Stream.concat(Stream.of(node), subNodeSupplier.andThen(streamProvider).apply(node).flatMap(
            subNode -> flatten(subNode, subNodeSupplier, streamProvider)));
    }

    /**
     * Example:
     * 
     *   MCRCategory foo = MCRCategoryDAOFactory.getInstance().getCategory(MCRCategoryID.rootID("foo"), -1);
     *   Stream<MCRCategory> parentCategories = flatten(foo, MCRCategory::getChildren, true, MCRCategory::hasChildren);
     * 
* @param node first node the stream is made of * @param subNodeSupplier a function that delivers subtree items of next level * @param streamProvider a function that makes a Stream of a Collection<T>, usually Collection::stream or Collection::parallelStream * @param filter a predicate that filters the element of the next level * @since 2016.04 */ public static Stream flatten(T node, Function> subNodeSupplier, Function, Stream> streamProvider, Predicate filter) { return Stream.concat(Stream.of(node), subNodeSupplier.andThen(streamProvider).apply(node).filter(filter).flatMap( subNode -> flatten(subNode, subNodeSupplier, streamProvider, filter))); } /** * Transforms an Enumeration in a Stream. * @param e the enumeration to transform * @return a sequential, ordered Stream of unknown size */ public static Stream asStream(Enumeration e) { return StreamSupport.stream( Spliterators.spliteratorUnknownSize(Iterators.forEnumeration(e), Spliterator.ORDERED), false); } /** * Concats any number of Streams not just 2 as in {@link Stream#concat(Stream, Stream)}. * @since 2016.04 */ @SafeVarargs public static Stream concat(Stream... streams) { return Stream.of(streams).reduce(Stream::concat).orElse(Stream.empty()); } /** * Stream distinct by filter function. *

* * persons.stream().filter(MCRStreamUtils.distinctByKey(p -> p.getName()); * *

* It should be noted that for ordered parallel stream this solution does not guarantee * which object will be extracted (unlike normal distinct()). * * @see stackoverflow * @param keyExtractor a compare function * @return a predicate */ public static Predicate distinctByKey(Function keyExtractor) { Map seen = new ConcurrentHashMap<>(); return t -> seen.putIfAbsent(keyExtractor.apply(t), Boolean.TRUE) == null; } /** * Negates a predicate. * * @see stackoverflow * @param predicate the predicate to negate * @return the negated predicate */ public static Predicate not(Predicate predicate) { return predicate.negate(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy