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

functionalj.list.FuncListDerived Maven / Gradle / Ivy

There is a newer version: 1.0.17
Show newest version
// ============================================================================
// Copyright (c) 2017-2021 Nawapunth Manusitthipol (NawaMan - http://nawaman.net).
// ----------------------------------------------------------------------------
// MIT License
// 
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// 
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// ============================================================================
package functionalj.list;

import static functionalj.stream.ZipWithOption.AllowUnpaired;

import java.util.Collection;
import java.util.Objects;
import java.util.function.Function;
import java.util.function.Supplier;
import java.util.stream.Stream;

import functionalj.stream.StreamPlus;
import functionalj.stream.StreamPlusUtils;
import lombok.val;

public class FuncListDerived implements FuncList {
    
    //-- Data --
    
    private final Object                                 source;
    private final Function, Stream> action;
    
    //-- Constructors --
    
    FuncListDerived(Iterable iterable, Function, Stream> action) {
        this.action = Objects.requireNonNull(action);
        this.source = iterable;
    }
    FuncListDerived(FuncList FuncList, Function, Stream> action) {
        this.action = Objects.requireNonNull(action);
        this.source = FuncList;
    }
    @SuppressWarnings({ "rawtypes", "unchecked" })
    FuncListDerived(Supplier> streams) {
        this.action = stream -> (Stream)stream;
        this.source = streams;
    }
    FuncListDerived(Supplier> streams, Function, Stream> action) {
        this.action = Objects.requireNonNull(action);
        this.source = streams;
    }
    
    //-- Source Stream --
    
    @SuppressWarnings({ "unchecked", "rawtypes" })
    private Stream getSourceStream() {
        if (source == null)
            return Stream.empty();
        if (source instanceof FuncList)
            return (Stream)((FuncList)source).stream();
        if (source instanceof Collection)
            return ((Collection)source).stream();
        if (source instanceof Supplier)
            return ((Supplier>)source).get();
        throw new IllegalStateException();
    }
    
    @Override
    public StreamPlus stream() {
        Stream theStream = getSourceStream();
        Stream   newStream = action.apply(theStream);
        return StreamPlus.from(newStream);
    }
    
    /** Check if this list is a lazy list. */
    public Mode mode() {
        return Mode.lazy;
    }
    
    @Override
    public FuncList toLazy() {
        return this;
    }
    
    @Override
    public FuncList toEager() {
        val list = this.toArrayList();
        return new ImmutableFuncList(list, list.size(), Mode.eager);
    }
    
    @Override
    public FuncList toCache() {
        return FuncList.from(stream());
    }
    
    /** Returns an immutable list containing the data of this list. Maintaining the mode. */
    @Override
    public ImmutableFuncList toImmutableList() {
        return new ImmutableFuncList<>(this, -1, Mode.lazy);
    }
    
    @Override
    public int hashCode() {
        return StreamPlusUtils.hashCode(this.stream());
    }
    
    @SuppressWarnings({ "unchecked", "rawtypes" })
    @Override
    public boolean equals(Object o) {
        if (!(o instanceof Collection))
            return false;
        
        val anotherList = FuncList.from((Collection)o);
        return !zipWith(anotherList, AllowUnpaired, Objects::equals)
                .findFirst(Boolean.FALSE::equals)
                .isPresent();
    }
    
    @Override
    public String toString() {
        return asFuncList().toListString();
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy