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

functionalj.lens.lenses.NullableAccess 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.lens.lenses;

import java.util.function.Function;
import java.util.function.Supplier;

import functionalj.function.Func1;
import functionalj.lens.core.AccessParameterized;
import functionalj.lens.core.AccessUtils;
import lombok.val;
import nullablej.nullable.Nullable;

@FunctionalInterface
public interface NullableAccess> 
            extends
                ObjectAccess>,
                AccessParameterized, TYPE, SUBACCESS> {
    
    public static > NullableAccess of(Function> read, Function, A> createAccess) {
        val accessParameterized = new AccessParameterized, T, A>() {
            @Override
            public Nullable applyUnsafe(H host) throws Exception {
                return read.apply(host);
            }
            @Override
            public A createSubAccessFromHost(Function accessToParameter) {
                return createAccess.apply(accessToParameter);
            }
        };
        return AccessUtils.createSubNullableAccess(accessParameterized, read);
    }
    
    public AccessParameterized, TYPE, SUBACCESS> accessWithSub();
    
    @Override
    public default Nullable applyUnsafe(HOST host) throws Exception {
        return accessWithSub().apply(host);
    }
    
    @Override
    public default SUBACCESS createSubAccessFromHost(Function accessToSub) {
        return accessWithSub().createSubAccessFromHost(accessToSub);
    }
    
    public default SUBACCESS get() {
        return NullableAccess.this.accessWithSub().createSubAccess((Nullable nullable) -> { 
            return nullable.get();
        });
    }
    
    public default  
    NullableAccess> thenMap(Function mapper) {
        val accessWithSub = new AccessParameterized, TARGET, AnyAccess>() {
            @Override
            public Nullable applyUnsafe(HOST host) throws Exception {
                Nullable nullable = NullableAccess.this.apply(host);
                if (nullable == null) nullable = Nullable.empty();
                return nullable.map(Func1.from(mapper));
            }
            @Override
            public AnyAccess createSubAccessFromHost(Function accessToParameter) {
                return accessToParameter::apply;
            }
        };
        return new NullableAccess>() {
            @Override
            public AccessParameterized, TARGET, AnyAccess> accessWithSub() {
                return accessWithSub;
            }
        };
    }
    
    public default  
    NullableAccess> thenFlatMap(Function> mapper) {
        val accessWithSub = new AccessParameterized, TARGET, AnyAccess>() {
            @Override
            public Nullable applyUnsafe(HOST host) throws Exception {
                return NullableAccess.this.apply(host).flatMap(mapper);
            }
            @Override
            public AnyAccess createSubAccessFromHost(Function accessToParameter) {
                return accessToParameter::apply;
            }
        };
        return new NullableAccess>() {
            @Override
            public AccessParameterized, TARGET, AnyAccess> accessWithSub() {
                return accessWithSub;
            }
        };
    }
    
    public default BooleanAccessPrimitive isPresent() {
        return host -> {
            return NullableAccess.this.apply(host).isPresent();
        };
    }
    public default BooleanAccessPrimitive isNotNull() {
        return host -> {
            return NullableAccess.this.apply(host).isNotNull();
        };
    }
    public default BooleanAccessPrimitive isNull() {
        return host -> {
            return NullableAccess.this.apply(host).isNull();
        };
    }
    
    public default SUBACCESS orElse(TYPE fallbackValue) {
        return NullableAccess.this.accessWithSub().createSubAccess((Nullable nullable) -> { 
            return nullable.orElse(fallbackValue);
        });
    }
    
    public default SUBACCESS orElseGet(Supplier fallbackValueSupplier) {
        return orGet(fallbackValueSupplier);
    }
    public default SUBACCESS orGet(Supplier fallbackValueSupplier) {
        return NullableAccess.this.accessWithSub().createSubAccess((Nullable nullable) -> { 
            return nullable.orElseGet(fallbackValueSupplier);
        });
    }
    
    public default  SUBACCESS orElseThrow() {
        return NullableAccess.this.accessWithSub().createSubAccess((Nullable nullable) -> { 
            return nullable.orElseThrow();
        });
    }
    
    public default  SUBACCESS orElseThrow(Supplier exceptionSupplier) {
        return NullableAccess.this.accessWithSub().createSubAccess((Nullable nullable) -> { 
            return nullable.orElseThrow(exceptionSupplier);
        });
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy