view artifacts/src/main/java/org/dive4elements/river/artifacts/model/minfo/SedimentLoadUnknownFacet.java @ 6665:b7945db8a43b

issue1413: Only show unknown sediment loads of selected unit type. Therefore, adjusted the factory to take the units name. Unfortunately, names in db do not match values of data items. Thus do manual replacing. In Facet and Calculate, take the chosen unit via access and to the string replacement. In Facet, do not transform data (we assume it comes in unit as labeled in the db), and removed the possibility of m3/a-data of unknown yields in a t/a diagram and vice versa.
author Felix Wolfsteller <felix.wolfsteller@intevation.de>
date Thu, 25 Jul 2013 15:08:13 +0200
parents 4ae1fbaaacdd
children 91c43293e538
line wrap: on
line source
package org.dive4elements.river.artifacts.model.minfo;

import org.apache.log4j.Logger;
import org.dive4elements.artifactdatabase.state.Facet;
import org.dive4elements.artifacts.Artifact;
import org.dive4elements.artifacts.CallContext;
import org.dive4elements.river.artifacts.D4EArtifact;
import org.dive4elements.river.artifacts.access.SedimentLoadAccess;
import org.dive4elements.river.artifacts.model.DataFacet;
import org.dive4elements.river.artifacts.states.DefaultState.ComputeType;


public class SedimentLoadUnknownFacet
extends DataFacet
{
    /** Very own logger. */
    private static Logger logger = Logger.getLogger(SedimentLoadUnknownFacet.class);

    public SedimentLoadUnknownFacet() {
    }

    public SedimentLoadUnknownFacet(int idx, String name, String description,
        ComputeType type, String stateId, String hash) {
        super(idx, name, description, type, hash, stateId);
    }

    /** Get data from SedimentLoad with unknown type, from factory. */
    @Override
    public Object getData(Artifact artifact, CallContext context) {
        logger.debug("Get data for sediment load at index: " + index);

        D4EArtifact flys = (D4EArtifact) artifact;

        SedimentLoadAccess access = new SedimentLoadAccess(flys);
        String river = access.getRiver();
        String unit  = access.getUnit();
        SedimentLoad[] unknown =
            SedimentLoadFactory.getSedimentLoadUnknown(river, unit.replace("_per_","/"));

        SedimentLoad load = SedimentLoadFactory.getLoadUnknown(
            river, unknown[index].getDescription());
        return load;
    }

    /** Copy deeply. */
    @Override
    public Facet deepCopy() {
        SedimentLoadUnknownFacet copy = new SedimentLoadUnknownFacet();
        copy.set(this);
        copy.hash = hash;
        copy.stateId = stateId;
        return copy;
    }
}

http://dive4elements.wald.intevation.org