// Copyright © 2015 HSL <https://www.hsl.fi> // This program is dual-licensed under the EUPL v1.2 and AGPLv3 licenses. package fi.hsl.parkandride.core.domain.prediction; import fi.hsl.parkandride.back.ListUtil; import fi.hsl.parkandride.core.back.PredictionRepository; import fi.hsl.parkandride.core.domain.Utilization; import org.joda.time.DateTime; import org.joda.time.Weeks; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.*; import java.util.stream.Collectors; import java.util.stream.Stream; public class AverageOfPreviousWeeksPredictor implements Predictor { private static final Logger log = LoggerFactory.getLogger(AverageOfPreviousWeeksPredictor.class); public static final String TYPE = "average-of-previous-weeks"; @Override public String getType() { return TYPE; } @Override public List<Prediction> predict(PredictorState state, UtilizationHistory history, int maxCapacity) { Optional<Utilization> latest = history.getLatest(); if (!latest.isPresent()) return Collections.emptyList(); DateTime now = state.latestUtilization = latest.get().timestamp; List<List<Prediction>> groupedByWeek = Stream.of(Weeks.weeks(1), Weeks.weeks(2), Weeks.weeks(3)) .map(offset -> { DateTime start = now.minus(offset); DateTime end = start.plus(PredictionRepository.PREDICTION_WINDOW); List<Utilization> utilizations = history.getRange(start, end); return utilizations.stream() .map(u -> new Prediction(u.timestamp.plus(offset), u.spacesAvailable)) .collect(Collectors.toList()); }) .collect(Collectors.toList()); List<List<Prediction>> groupedByTimeOfDay = ListUtil.transpose(groupedByWeek); return groupedByTimeOfDay.stream() .map(this::reduce) .collect(Collectors.toList()); } private Prediction reduce(List<Prediction> predictions) { DateTime timestamp = predictions.get(0).timestamp; if (!predictions.stream() .map(p -> p.timestamp) .allMatch(timestamp::equals)) { log.warn("Something went wrong. Not all predictions have the same timestamp: {}", predictions); } int spacesAvailable = (int) Math.round(predictions.stream() .mapToInt(u -> u.spacesAvailable) .average() .getAsDouble()); return new Prediction(timestamp, spacesAvailable); } }