Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// ============================================================================
// Copyright (c) 2017-2019 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 functionalj.result.Result;
import lombok.val;
// TODO This is made quickly to accommodate Lens for Choice type. It is not complete in anyway.
@FunctionalInterface
public interface ResultAccess>
extends
ObjectAccess>,
AccessParameterized, TYPE, SUBACCESS> {
public static > ResultAccess of(Function> read, Function, A> createAccess) {
val accessParameterized = new AccessParameterized, T, A>() {
@Override
public Result applyUnsafe(H host) throws Exception {
return read.apply(host);
}
@Override
public A createSubAccessFromHost(Function accessToParameter) {
return createAccess.apply(accessToParameter);
}
};
return AccessUtils.createSubResultAccess(accessParameterized, read);
}
public AccessParameterized, TYPE, SUBACCESS> accessWithSub();
@Override
public default Result 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 ResultAccess.this.accessWithSub().createSubAccess((Result result) -> {
return result.get();
});
}
public default
ResultAccess> thenMap(Function mapper) {
val accessWithSub = new AccessParameterized, TARGET, AnyAccess>() {
@Override
public Result applyUnsafe(HOST host) throws Exception {
Result result = ResultAccess.this.apply(host);
if (result == null) result = Result.ofNull();
return result.map(Func1.from(mapper));
}
@Override
public AnyAccess createSubAccessFromHost(Function accessToParameter) {
return accessToParameter::apply;
}
};
return new ResultAccess>() {
@Override
public AccessParameterized, TARGET, AnyAccess> accessWithSub() {
return accessWithSub;
}
};
}
public default
ResultAccess> thenFlatMap(Function> mapper) {
val accessWithSub = new AccessParameterized, TARGET, AnyAccess>() {
@Override
public Result applyUnsafe(HOST host) throws Exception {
return ResultAccess.this.apply(host).flatMap(Func1.from(mapper));
}
@Override
public AnyAccess createSubAccessFromHost(Function accessToParameter) {
return accessToParameter::apply;
}
};
return new ResultAccess>() {
@Override
public AccessParameterized, TARGET, AnyAccess> accessWithSub() {
return accessWithSub;
}
};
}
// TODO - Add more of these.
public default BooleanAccess isPresent() {
return host -> {
return ResultAccess.this.apply(host).isPresent();
};
}
public default BooleanAccess isNull() {
return host -> {
return ResultAccess.this.apply(host).isNull();
};
}
public default BooleanAccess isValue() {
return host -> {
return ResultAccess.this.apply(host).isValue();
};
}
public default SUBACCESS orElse(TYPE fallbackValue) {
return ResultAccess.this.accessWithSub().createSubAccess((Result nullable) -> {
return nullable.orElse(fallbackValue);
});
}
public default SUBACCESS orElseGet(Supplier fallbackValueSupplier) {
return orGet(fallbackValueSupplier);
}
public default SUBACCESS orGet(Supplier fallbackValueSupplier) {
return ResultAccess.this.accessWithSub().createSubAccess((Result nullable) -> {
return nullable.orElseGet(fallbackValueSupplier);
});
}
public default SUBACCESS orElseThrow() {
return ResultAccess.this.accessWithSub().createSubAccess((Result result) -> {
return result.orThrowRuntimeException();
});
}
public default SUBACCESS orElseThrow(Function exceptionSupplier) {
return ResultAccess.this.accessWithSub().createSubAccess((Result nullable) -> {
return nullable.orThrowRuntimeException(exceptionSupplier);
});
}
public default SUBACCESS orElseThrow(Supplier exceptionSupplier) {
return ResultAccess.this.accessWithSub().createSubAccess((Result nullable) -> {
return nullable.orThrow(__ -> exceptionSupplier.get());
});
}
}