Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/MainValuesArtifact.java @ 1084:583314dafdb6
Call State.endOfLife() in FLYSArtifact when stepping back to a previous state.
flys-artifacts/trunk@2587 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Fri, 26 Aug 2011 08:07:47 +0000 |
parents | fa01c3602f66 |
children | 07878836ee0d |
line wrap: on
line source
package de.intevation.flys.artifacts; import java.util.ArrayList; import java.util.List; import org.apache.log4j.Logger; import org.w3c.dom.Document; import de.intevation.artifactdatabase.state.DefaultFacet; import de.intevation.artifactdatabase.state.Facet; import de.intevation.artifactdatabase.state.DefaultOutput; import de.intevation.artifactdatabase.state.State; import de.intevation.artifacts.Artifact; import de.intevation.artifacts.ArtifactFactory; import de.intevation.artifacts.CallContext; import de.intevation.artifacts.CallMeta; import de.intevation.flys.artifacts.model.RiverFactory; import de.intevation.flys.artifacts.model.FacetTypes; import de.intevation.flys.artifacts.states.StaticState; import de.intevation.flys.model.Gauge; import de.intevation.flys.model.River; /** * Artifact to access names of Points Of Interest along a segment of a river. * This artifact neglects (Static)FLYSArtifacts capabilities of interaction * with the StateEngine by overriding the getState*-methods. */ public class MainValuesArtifact extends StaticFLYSArtifact { /** The logger for this class. */ private static Logger logger = Logger.getLogger(MainValuesArtifact.class); /** The name of the artifact. */ public static final String ARTIFACT_NAME = "mainvalue"; /** One and only state to be in. */ protected transient State state = null; /** * Trivial Constructor. */ public MainValuesArtifact() { logger.debug("MainValuesArtifact.MainValuesartifact()"); } /** * Gets called from factory, to set things up. */ @Override public void setup( String identifier, ArtifactFactory factory, Object context, CallMeta callMeta, Document data) { logger.debug("MainValuesArtifact.setup"); super.setup(identifier, factory, context, callMeta, data); // TODO in initialize(*), access master/winfo artifact, // get locations and river. } @Override protected void initialize(Artifact artifact, Object context, CallMeta meta) { logger.debug("MainValuesArtifact.initialize"); WINFOArtifact winfo = (WINFOArtifact) artifact; River river = winfo.getRiver(); double location = winfo.getLocations()[0]; // Ort der Abflusskurve logger.error("Location: " + location); Gauge gauge = river.determineGaugeByPosition(location); } /** * Get a list containing the one and only State. * @param context ignored. * @return list with one and only state. */ @Override protected List<State> getStates(Object context) { ArrayList<State> states = new ArrayList<State>(); states.add(getState(null,null)); return states; } /** * Get the "current" state. * @param cc ignored. * @return the "current" state. */ @Override protected State getCurrentState(Object cc) { return getState(); } /** * Get the only possible state. * @return the state. */ protected State getState() { return getState(null, null); } /** * Get the state. * @param context ignored. * @param stateID ignored. * @return the state. */ @Override protected State getState(Object context, String stateID) { if (state != null) { } else { state = new StaticState(); List<Facet> fs = new ArrayList<Facet>(); fs.add(new MainValuesFacet()); // TODO check if facets and outputs already exist. // TODO also check, this is usually done in initialize, too. facets.put(state.getID(), fs); DefaultOutput mainValuesOutput1 = new DefaultOutput( "discharge_curve", "output.discharge_curve", "image/png", fs, "chart"); DefaultOutput mainValuesOutput2 = new DefaultOutput( "computed_discharge_curve", "output.computed_discharge_curve", "image/png", fs, "chart"); state.getOutputs().add(mainValuesOutput1); state.getOutputs().add(mainValuesOutput2); } return state; } public List getMainValues() { River river = RiverFactory.getRiver("Saar"); logger.warn("Go to river " + river); double location = 5.0f; Gauge gauge = river.determineGaugeByPosition(location); return gauge.getMainValues(); } /* FACET IMPLEMENTATION */ // TODO evaluate whether DefaultFacet can do. static class MainValuesFacet extends DefaultFacet implements FacetTypes { public MainValuesFacet() { description = "facet.discharge_curves.mainvalues.description"; name = COMPUTED_DISCHARGE_MAINVALUES; //Resources.getMsg(meta, I18N_DESCRIPTION, I18N_DESCRIPTION)); index = 0; } /** * Returns the description of this facet. * * @return the description of this facet. */ @Override public String getDescription() { // TODO remove, is part of DefaultFacet. return "facet.mainvalues"; } /** * Returns the data this facet requires. * * @param artifact the owner artifact. * @param context the CallContext (ignored). * * @return the data. */ @Override public Object getData(Artifact artifact, CallContext context) { MainValuesArtifact mvArtifact = (MainValuesArtifact) artifact; return mvArtifact.getMainValues(); } /** * Create a deep copy of this Facet. * @return a deep copy. */ @Override public MainValuesFacet deepCopy() { MainValuesFacet copy = new MainValuesFacet(); copy.set(this); return copy; } } }