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

org.openlca.proto.io.server.TechFlowContribution Maven / Gradle / Ivy

package org.openlca.proto.io.server;

import java.util.function.ToDoubleBiFunction;

import org.openlca.core.matrix.index.EnviFlow;
import org.openlca.core.matrix.index.TechFlow;
import org.openlca.core.model.descriptors.ImpactDescriptor;
import org.openlca.core.results.LcaResult;
import org.openlca.proto.grpc.ResultValue;
import org.openlca.proto.grpc.TechFlowContributionRequest;
import org.openlca.proto.io.output.Refs;

import io.grpc.stub.StreamObserver;

class TechFlowContribution {

	private final StreamObserver resp;
	private final ResultService service;

	private LcaResult result;
	private TechFlow product;
	private ImpactDescriptor impact;
	private EnviFlow flow;
	private boolean forCosts;
	private boolean isClosed;

	static TechFlowContribution of(
		ResultService service,
		TechFlowContributionRequest req,
		StreamObserver resp) {

		var resolved = new TechFlowContribution(service, resp);

		// a valid result is required
		if (!req.hasResult() || !req.hasTechFlow())
			return resolved.error(
				"A valid result and tech-flow are required");
		var resultId = req.getResult().getId();
		var result = service.results.get(resultId);
		if (result == null)
			return resolved.error("The result does not exist: " + resultId);
		resolved.result = result;

		// also, the product is required
		resolved.product = Results.findProduct(result, req.getTechFlow());
		if (resolved.product == null) {
			return resolved.error("The product does not exist in the result");
		}

		// set the result selector
		if (req.hasEnviFlow() && result.hasEnviFlows()) {
			resolved.flow = Results.findFlow(result, req.getEnviFlow());
		} else if (req.hasImpact() && result.hasImpacts()) {
			resolved.impact = Results.findImpact(result, req.getImpact());
		} else if (req.getCosts() && result.hasCosts()) {
			resolved.forCosts = true;
		}

		return resolved;
	}

	private TechFlowContribution(
		ResultService service, StreamObserver resp) {
		this.service = service;
		this.resp = resp;
	}

	TechFlowContribution ifImpact(
		ToDoubleTriFunction fn) {
		if (isClosed || impact == null)
			return this;
		closeWith(fn.applyAsDouble(result, impact, product));
		return this;
	}

	TechFlowContribution ifFlow(
		ToDoubleTriFunction fn) {
		if (isClosed || flow == null)
			return this;
		closeWith(fn.applyAsDouble(result, flow, product));
		return this;
	}

	TechFlowContribution ifCosts(
		ToDoubleBiFunction fn) {
		if (isClosed || !forCosts)
			return this;
		closeWith(fn.applyAsDouble(result, product));
		return this;
	}

	private void closeWith(double value) {
		if (isClosed)
			return;
		var refData = Refs.dataOf(service.db);
		var proto = ResultValue.newBuilder()
			.setTechFlow(Results.toProto(product, refData))
			.setValue(value)
			.build();
		resp.onNext(proto);
		resp.onCompleted();
		isClosed = true;
	}

	private TechFlowContribution error(String message) {
		Response.invalidArg(resp, message);
		isClosed = true;
		return this;
	}

	void close() {
		if (isClosed)
			return;
		closeWith(0);
	}

	@FunctionalInterface
	interface ToDoubleTriFunction {
		double applyAsDouble(T t, U u, V v);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy