view flys-aft/src/main/java/de/intevation/db/ConnectedStatements.java @ 4198:1cdbd8a0c994

Added two new tables ClickableQDTable and ClickableWTable and made Ws and Qs clickable in historical discharge calculation. The new tables define listener interfaces (clicked lower or upper icon) to listen to user clicks. In addition to this, there is an enum ClickMode with NONE, SINGLE and RANGE options, which allows to specifiy, which icons are displayed in the tables. NONE means no icon for user clicks, SINGLE has 1 icon, RANGE 2 icons for lower and upper.
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Mon, 22 Oct 2012 13:31:25 +0200
parents aad1886ea226
children b195fede1c3b
line wrap: on
line source
package de.intevation.db;

import java.util.HashMap;
import java.util.Map;
import java.util.Deque;
import java.util.ArrayDeque;

import java.sql.Connection;
import java.sql.SQLException;
import java.sql.Savepoint;
import java.sql.DatabaseMetaData;

import org.apache.log4j.Logger;

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

    protected Connection connection;

    protected Map<String, SymbolicStatement> statements;

    protected Map<String, SymbolicStatement.Instance> boundStatements;

    protected Deque<Savepoint> savepoints;

    public ConnectedStatements(
        Connection connection,
        Map<String, SymbolicStatement> statements
    )
    throws SQLException
    {
        this.connection = connection;
        this.statements = statements;
        checkSavePoints();

        boundStatements = new HashMap<String, SymbolicStatement.Instance>();
    }

    protected void checkSavePoints() throws SQLException {
        DatabaseMetaData metaData = connection.getMetaData();
        if (metaData.supportsSavepoints()) {
            log.info("Driver '" + metaData.getDriverName() +
                "' does support savepoints.");
            savepoints = new ArrayDeque<Savepoint>();
        }
        else {
            log.info("Driver '" + metaData.getDriverName() + 
                "' does not support savepoints.");
        }
    }

    public SymbolicStatement.Instance getStatement(String key) 
    throws SQLException
    {
        SymbolicStatement.Instance stmnt = boundStatements.get(key);
        if (stmnt != null) {
            return stmnt;
        }

        SymbolicStatement ss = statements.get(key);
        if (ss == null) {
            return null;
        }

        stmnt = ss.new Instance(connection);
        boundStatements.put(key, stmnt);
        return stmnt;
    }

    public void beginTransaction() throws SQLException {
        if (savepoints != null) {
            savepoints.push(connection.setSavepoint());
        }
    }

    public void commitTransaction() throws SQLException {
        if (savepoints != null) {
            savepoints.pop();
        }
        connection.commit();
    }

    public void rollbackTransaction() throws SQLException {
        if (savepoints != null) {
            Savepoint savepoint = savepoints.pop();
            connection.rollback(savepoint);
        }
        else {
            connection.rollback();
        }
    }

    public void close() {
        for (SymbolicStatement.Instance s: boundStatements.values()) {
            s.close();
        }

        try {
            if (savepoints != null && !savepoints.isEmpty()) {
                Savepoint savepoint = savepoints.peekFirst();
                connection.rollback(savepoint);
            }
            connection.close();
        }
        catch (SQLException sqle) {
        }
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org