view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/FastCrossSectionLineFactory.java @ 4187:21f4e4b79121

Refactor GaugeDischargeCurveFacet to be able to set a facet name For adding another output of the GaugeDischargeCurveArtifact it is necessary to provide to facet instances with different names. Therefore the GaugeDischargeCurveFacet is extended to set the facet name in the constructor.
author Björn Ricks <bjoern.ricks@intevation.de>
date Fri, 19 Oct 2012 13:25:49 +0200
parents d626ae185305
children
line wrap: on
line source
package de.intevation.flys.artifacts.model;

import de.intevation.flys.artifacts.cache.CacheFactory;

import de.intevation.flys.model.CrossSection;

import de.intevation.flys.model.FastCrossSectionLine;

import net.sf.ehcache.Cache;
import net.sf.ehcache.Element;

import java.util.List;

import org.apache.log4j.Logger;

public class FastCrossSectionLineFactory
{
    private static Logger log =
        Logger.getLogger(FastCrossSectionLineFactory.class);

    public static final String CACHE_NAME = "fast-cross-section-lines";

    private FastCrossSectionLineFactory() {
    }

    public static FastCrossSectionLine getCrossSectionLine(
        CrossSection cs,
        double       km
    ) {
        Cache cache = CacheFactory.getCache(CACHE_NAME);

        boolean debug = log.isDebugEnabled();

        if (cache == null) {
            if (debug) {
                log.debug("No cross section chunk cache configured.");
            }
            List<FastCrossSectionLine> lines = cs.getFastLines(km, km);
            return lines.isEmpty() ? null : lines.get(0);
        }

        String cacheKey = FastCrossSectionChunk.createHashKey(cs, km);

        Element element = cache.get(cacheKey);

        FastCrossSectionChunk fcsc;

        if (element != null) {
            if (debug) {
                log.debug("Found cross section chunk in cache id: " +
                    cs.getId() + " km: " + km);
            }

            fcsc = (FastCrossSectionChunk)element.getValue();
        }
        else {
            if (debug) {
                log.debug("Not found cross section chunk in cache id: " +
                    cs.getId() + " km: " + km + " -> loading");
            }
            fcsc = new FastCrossSectionChunk(cs, km);
            element = new Element(cacheKey, fcsc);
            cache.put(element);
        }

        return fcsc.getCrossSectionLine(km);
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org