All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
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.
org.teamapps.ux.component.timegraph.model.DelegatingHoseModel Maven / Gradle / Ivy
/*-
* ========================LICENSE_START=================================
* TeamApps
* ---
* Copyright (C) 2014 - 2024 TeamApps.org
* ---
* 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.
* =========================LICENSE_END==================================
*/
package org.teamapps.ux.component.timegraph.model;
import org.teamapps.ux.component.timegraph.Interval;
import org.teamapps.ux.component.timegraph.TimePartitioning;
import org.teamapps.ux.component.timegraph.datapoints.HoseGraphData;
import org.teamapps.ux.component.timegraph.datapoints.LineGraphData;
import java.time.ZoneId;
import java.util.Objects;
import java.util.stream.Stream;
public class DelegatingHoseModel extends AbstractHoseGraphModel {
private final GraphModel minModel;
private final GraphModel avgModel;
private final GraphModel maxModel;
public DelegatingHoseModel(GraphModel minModel, GraphModel avgModel, GraphModel maxModel) {
this.minModel = minModel;
if (this.minModel != null) {
this.minModel.onDataChanged().addListener(() -> this.onDataChanged().fire());
}
this.avgModel = avgModel;
if (this.avgModel != null) {
this.avgModel.onDataChanged().addListener(() -> this.onDataChanged().fire());
}
this.maxModel = maxModel;
if (this.maxModel != null) {
this.maxModel.onDataChanged().addListener(() -> this.onDataChanged().fire());
}
}
public DelegatingHoseModel(GraphModel minModel, GraphModel maxModel) {
this(minModel, null, maxModel);
}
@Override
public Interval getDomainX() {
return Stream.of(minModel, avgModel, maxModel)
.filter(Objects::nonNull)
.map(GraphModel::getDomainX)
.reduce(Interval::union)
.orElse(new Interval(0, 1));
}
@Override
public HoseGraphData getData(TimePartitioning zoomLevel, ZoneId zoneId, Interval neededInterval, Interval displayedInterval) {
LineGraphData minDataPoints = getDataPointsOrNull(minModel, zoomLevel, zoneId, neededInterval, displayedInterval);
LineGraphData avgDataPoints = getDataPointsOrNull(avgModel, zoomLevel, zoneId, neededInterval, displayedInterval);
LineGraphData maxDataPoints = getDataPointsOrNull(maxModel, zoomLevel, zoneId, neededInterval, displayedInterval);
return new HoseGraphData() {
@Override
public LineGraphData getMiddleLineData() {
return avgDataPoints;
}
@Override
public LineGraphData getLowerLineData() {
return minDataPoints;
}
@Override
public LineGraphData getUpperLineData() {
return maxDataPoints;
}
};
}
private LineGraphData getDataPointsOrNull(GraphModel model, TimePartitioning zoomLevel, ZoneId zoneId, Interval neededInterval, Interval displayedInterval) {
return model != null ? model.getData(zoomLevel, zoneId, neededInterval, displayedInterval) : null;
}
}