Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/states/CalculationSelect.java @ 1845:06c157848c8f
Made the floodmap compatible with an Oracle database.
flys-artifacts/trunk@3189 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Wed, 09 Nov 2011 10:48:51 +0000 |
parents | 47ecf98f09eb |
children | be06dbc2ed1d |
line wrap: on
line source
package de.intevation.flys.artifacts.states; import org.apache.log4j.Logger; import org.w3c.dom.Element; import de.intevation.artifacts.Artifact; import de.intevation.artifacts.CallContext; import de.intevation.artifacts.CallMeta; import de.intevation.artifacts.common.utils.XMLUtils; import de.intevation.artifactdatabase.data.StateData; import de.intevation.flys.artifacts.FLYSArtifact; import de.intevation.flys.artifacts.resources.Resources; /** * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> */ public class CalculationSelect extends DefaultState { /** The logger that is used in this class. */ private static Logger logger = Logger.getLogger(CalculationSelect.class); public static final String FIELD_MODE = "calculation_mode"; /** Constant value for the reference line calculation. */ public static final String CALCULATION_SURFACE_CURVE = "calc.surface.curve"; /** Constant value for the differences calculation. */ public static final String CALCULATION_DURATION_CURVE = "calc.duration.curve"; /** Constant value for the flood map calculation. */ public static final String CALCULATION_FLOOD_MAP = "calc.flood.map"; /** Constant value for the profile calculation. */ public static final String CALCULATION_DISCHARGE_LONGITUDINAL_CURVE = "calc.discharge.longitudinal.section"; /** Constant value for the state discharge curve calculation. */ public static final String CALCULATION_DISCHARGE_CURVE = "calc.discharge.curve"; /** Constant value for the state w differences calculation. */ public static final String CALCULATION_W_DIFFERENCES = "calc.w.differences"; /** An array that holds all available calculation modes. */ public static final String[] CALCULATIONS = { CALCULATION_SURFACE_CURVE, CALCULATION_FLOOD_MAP, CALCULATION_DISCHARGE_CURVE, CALCULATION_DURATION_CURVE, CALCULATION_DISCHARGE_LONGITUDINAL_CURVE, CALCULATION_W_DIFFERENCES }; /** Error message that is thrown if no mode has been chosen. */ public static final String ERROR_NO_CALCULATION_MODE = "error_feed_no_calculation_mode"; /** Error message that is thrown if an invalid calculation mode has been * chosen. */ public static final String ERROR_INVALID_CALCULATION_MODE = "error_feed_invalid_calculation_mode"; public CalculationSelect() { } @Override protected Element[] createItems( XMLUtils.ElementCreator cr, Artifact artifact, String name, CallContext context) { CallMeta meta = context.getMeta(); Element[] calcs = new Element[CALCULATIONS.length]; int i = 0; for (String calc: CALCULATIONS) { calcs[i++] = createItem( cr, new String[] { Resources.getMsg(meta, calc, calc), calc }); } return calcs; } @Override public boolean validate(Artifact artifact) throws IllegalArgumentException { logger.debug("CalculationSelect.validate"); FLYSArtifact flys = (FLYSArtifact) artifact; StateData data = getData(flys, FIELD_MODE); String calc = (data != null) ? (String) data.getValue() : null; if (calc == null) { throw new IllegalArgumentException(ERROR_NO_CALCULATION_MODE); } calc = calc.trim().toLowerCase(); for (String mode: CALCULATIONS) { if (mode.equals(calc)) { return true; } } throw new IllegalArgumentException(ERROR_INVALID_CALCULATION_MODE); } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :