All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.teamapps.ux.component.timegraph.model.DelegatingHoseModel Maven / Gradle / Ivy

There is a newer version: 0.9.194
Show newest version
/*-
 * ========================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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy