org.opentripplanner.netex.support.NetexVersionHelper Maven / Gradle / Ivy
package org.opentripplanner.netex.support;
import static java.util.Comparator.comparingInt;
import java.time.LocalDateTime;
import java.util.Collection;
import java.util.Comparator;
import java.util.List;
import org.rutebanken.netex.model.EntityInVersionStructure;
import org.rutebanken.netex.model.ValidBetween;
/**
* Utility class to help working with versioned NeTEx element.
*
* This class implements Norwegian profile specific rules.
*/
public class NetexVersionHelper {
/**
* private constructor to prevent instantiation of utility class
*/
private NetexVersionHelper() { }
/**
* According to the Norwegian Netex profile the version number must be a
* positive increasing integer. A bigger value indicate a later version.
*/
public static int versionOf(EntityInVersionStructure e) {
return Integer.parseInt(e.getVersion());
}
/**
* Return the latest (maximum) version number for the given {@code list} of elements.
* If no elements exist in the collection {@code -1} is returned.
*/
public static int latestVersionIn(Collection extends EntityInVersionStructure> list) {
return list.stream().mapToInt(NetexVersionHelper::versionOf).max().orElse(-1);
}
/**
* Return the element with the latest (maximum) version for a given {@code list} of elements.
* If no elements exist in the collection {@code null} is returned.
*/
public static T latestVersionedElementIn(Collection list) {
return list.stream().max(comparingVersion()).orElse(null);
}
/**
* Return a comparator to compare {@link EntityInVersionStructure} elements by version.
*/
public static Comparator comparingVersion() {
return comparingInt(NetexVersionHelper::versionOf);
}
/**
* Find the first valid datetime in the given {@code periods} after or equals to the given
* {@code timestamp}. For example, this method can be used to find the fist point in time where
* the given periods are defined after current time - {@code timestamp=now()}.
*/
public static LocalDateTime firstValidDateTime(
List periods,
LocalDateTime timestamp
) {
// If not period is defined all times are valid
if(periods.isEmpty()) { return timestamp; }
LocalDateTime firstTime = null;
for (ValidBetween p : periods) {
// Validity period is in the past (compared with timestamp)
if(p.getToDate() != null && p.getToDate().isBefore(timestamp)) {
continue;
}
// Validity period is valid at the timestamp
if(p.getFromDate() == null || p.getFromDate().isBefore(timestamp)) {
return timestamp;
}
// Validity period is in the future
if(firstTime == null || p.getFromDate().isBefore(firstTime)) {
firstTime = p.getFromDate();
}
}
return firstTime;
}
}