Piece.java
/*
* Copyright 2005-2023 the original author or authors.
*
* 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 org.openwms.core.units.api;
import com.fasterxml.jackson.annotation.JsonIgnore;
import java.io.Serializable;
import java.math.BigDecimal;
import java.math.RoundingMode;
import static org.openwms.core.units.api.PieceUnit.DOZ;
import static org.openwms.core.units.api.PieceUnit.PC;
/**
* A Piece.
*
* @author Heiko Scherrer
*/
public class Piece implements Measurable<BigDecimal, Piece, PieceUnit>, Serializable {
private static final BigDecimal SHIFTER = new BigDecimal(12);
/** The unit of the Piece. */
private PieceUnit unitType;
/** The magnitude of the Piece. */
private BigDecimal magnitude;
/** Constant for a zero value. */
public static final Piece ZERO = Piece.of(0);
/* ----------------------------- constructors ------------------- */
/** Accessed by persistence provider. */
protected Piece() {
super();
}
/**
* Create a new Piece.
*
* @param magnitude The magnitude
* @param unitType The unit of measure
*/
private Piece(BigDecimal magnitude, PieceUnit unitType) {
this.magnitude = magnitude;
this.unitType = unitType;
}
/**
* Create a new Piece.
*
* @param magnitude The magnitude
* @param unitType The unit of measure
* @return The new instance
*/
public static Piece of(int magnitude, PieceUnit unitType) {
return new Piece(new BigDecimal(magnitude), unitType);
}
/**
* Create a new Piece.
*
* @param magnitude The magnitude
* @return The new instance
*/
public static Piece of(int magnitude) {
return new Piece(new BigDecimal(magnitude), PC.getBaseUnit());
}
/**
* Create a new Piece.
*
* @param magnitude The magnitude
* @param unitType The unit of measure
* @return The new instance
*/
public static Piece of(BigDecimal magnitude, PieceUnit unitType) {
return new Piece(magnitude, unitType);
}
/**
* Create a new Piece.
*
* @param magnitude The magnitude
* @return The new instance
*/
public static Piece of(BigDecimal magnitude) {
return new Piece(magnitude, PC.getBaseUnit());
}
/* ----------------------------- methods ------------------- */
/**
* {@inheritDoc}
*/
@Override
public BigDecimal getMagnitude() {
return magnitude;
}
/**
* {@inheritDoc}
*/
@Override
public PieceUnit getUnitType() {
return unitType;
}
/**
* {@inheritDoc}
*/
@JsonIgnore
@Override
public boolean isZero() {
return Piece.ZERO.equals(new Piece(this.getMagnitude(), DOZ));
}
/**
* {@inheritDoc}
*/
@JsonIgnore
@Override
public boolean isNegative() {
return this.getMagnitude() == null || this.getMagnitude().signum() == -1;
}
/**
* {@inheritDoc}
*/
@JsonIgnore
@Override
public Piece convertTo(PieceUnit unt) {
if (this.unitType == DOZ && unt == PC) {
return Piece.of(this.magnitude.multiply(SHIFTER), PC);
} else if (this.unitType == PC && unt == DOZ) {
return Piece.of(this.magnitude.divide(SHIFTER, 0, RoundingMode.DOWN), DOZ);
}
return this;
}
/**
* {@inheritDoc}
*/
@JsonIgnore
@Override
public Measurable<BigDecimal, Piece , PieceUnit> add(Measurable<BigDecimal, Piece , PieceUnit> other) {
if (other == null) {
return Piece.of(this.magnitude, this.unitType);
}
if (this.unitType == PC && other.getUnitType() == PC) {
return Piece.of(other.getMagnitude().add(this.magnitude));
} else if (this.unitType == PC && other.getUnitType() == DOZ) {
return Piece.of((DOZ.getMagnitude().multiply(other.getMagnitude())).add(this.magnitude));
} else if (this.unitType == DOZ && other.getUnitType() == PC) {
return Piece.of((DOZ.getMagnitude().multiply(this.magnitude)).add(other.getMagnitude()), PC);
} else if (this.unitType == DOZ && other.getUnitType() == DOZ) {
return Piece.of(this.magnitude.add(other.getMagnitude()), DOZ);
}
throw new IllegalArgumentException("Unsupported PieceUnit type");
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return asString();
}
/**
* {@inheritDoc}
*/
@JsonIgnore
@Override
public Measurable<BigDecimal, Piece, PieceUnit> subtract(Measurable<BigDecimal, Piece, PieceUnit> subtrahent) {
if (subtrahent == null) {
return Piece.of(this.magnitude, this.unitType);
}
if (this.unitType == PC && subtrahent.getUnitType() == PC) {
return Piece.of(this.magnitude.subtract(subtrahent.getMagnitude()));
} else if (this.unitType == PC && subtrahent.getUnitType() == DOZ) {
return Piece.of(this.magnitude.subtract(DOZ.getMagnitude().multiply(subtrahent.getMagnitude())), PC);
} else if (this.unitType == DOZ && subtrahent.getUnitType() == PC) {
return Piece.of((DOZ.getMagnitude().multiply(this.magnitude)).subtract(subtrahent.getMagnitude()), PC);
} else if (this.unitType == DOZ && subtrahent.getUnitType() == DOZ) {
return Piece.of(this.magnitude.subtract(subtrahent.getMagnitude()), DOZ);
}
throw new IllegalArgumentException("Unsupported PieceUnit type");
}
/**
* {@inheritDoc}
*/
@JsonIgnore
@Override
public int compareTo(Piece o) {
if (null == o) {
return 1;
}
if (o.getUnitType().ordinal() > this.getUnitType().ordinal()) {
return compare(this.getMagnitude(), o.getMagnitude().multiply(SHIFTER));
} else if (o.getUnitType().ordinal() < this.getUnitType().ordinal()) {
return compare(this.getMagnitude().multiply(SHIFTER), o.getMagnitude());
}
return this.getMagnitude().compareTo(o.getMagnitude());
}
/**
* {@inheritDoc}
*
* Uses magnitude and unitType for calculation.
*/
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((magnitude == null) ? 0 : magnitude.hashCode());
result = prime * result + ((unitType == null) ? 0 : unitType.hashCode());
return result;
}
/**
* {@inheritDoc}
*
* Uses magnitude and unitType for comparison.
*/
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
Piece other = (Piece) obj;
if (magnitude == null && other.magnitude != null) {
return false;
}
return this.compareTo(other) == 0;
}
private int compare(BigDecimal val1, BigDecimal val2) {
if (val1.equals(val2)) {
return 0;
}
return val1.compareTo(val2);
}
}