view flys-backend/src/main/java/de/intevation/flys/importer/ImportSQRelation.java @ 3329:cc8fc6b29649

Store sq relations into database after parsing. flys-backend/trunk@4647 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Wed, 13 Jun 2012 08:12:00 +0000
parents a41f279a66e2
children 0d27d02b1208
line wrap: on
line source
package de.intevation.flys.importer;

import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;

import org.apache.log4j.Logger;

import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.exception.ConstraintViolationException;

import de.intevation.flys.model.River;
import de.intevation.flys.model.SQRelation;
import de.intevation.flys.model.TimeInterval;


public class ImportSQRelation {

    private static Logger log = Logger.getLogger(ImportSQRelation.class);


    private ImportTimeInterval timeInterval;

    private String description;

    private List<ImportSQRelationValue> values;

    private SQRelation peer;


    public ImportSQRelation() {
        this.values = new ArrayList<ImportSQRelationValue>();
    }


    public void storeDependencies(River river)
    throws SQLException, ConstraintViolationException
    {
        log.info("store dependencies");

        SQRelation peer = getPeer(river);

        timeInterval.getPeer();

        int count = 0;

        for (ImportSQRelationValue value: values) {
            try {
                value.storeDependencies(peer);
                count++;
            }
            catch (SQLException sqle) {
                log.warn("Unable to store sq relation value.", sqle);
            }
            catch (ConstraintViolationException cve) {
                log.warn("Unable to store sq relation value.", cve);
            }
        }

        log.info("stored " + count + " sq relation values.");
    }


    public SQRelation getPeer(River river) {
        log.debug("getPeer()");

        if (peer == null) {
            TimeInterval timeInter = timeInterval.getPeer();

            if (timeInter == null) {
                log.warn("Cannot determine sq relation without time interval");
                return null;
            }

            Session session = ImporterSession.getInstance().getDatabaseSession();

            Query query = session.createQuery(
                "FROM SQRelation WHERE river=:river AND timeInterval=:timeInter"
            );

            query.setParameter("river", river);
            query.setParameter("timeInter", timeInter);

            List<SQRelation> sq = query.list();

            if (sq.isEmpty()) {
                log.info("create new SQ relation '" + description + "'");

                peer = new SQRelation(
                    river,
                    timeInter,
                    description
                );
                session.save(peer);
            }
            else {
                peer = sq.get(0);
            }
        }

        return peer;
    }


    public void setDescription(String description) {
        this.description = description;
    }


    public void setTimeInterval(ImportTimeInterval timeInterval) {
        this.timeInterval = timeInterval;
    }


    public void addValue(ImportSQRelationValue value) {
        if (value != null) {
            this.values.add(value);
        }
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org