All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fr.ms.log4jdbc.SqlOperationDecorator Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
/*
 * This file is part of Log4Jdbc.
 *
 * Log4Jdbc is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Log4Jdbc is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Log4Jdbc.  If not, see .
 *
 */
package fr.ms.log4jdbc;

import java.sql.Driver;
import java.util.Date;

import fr.ms.log4jdbc.context.Batch;
import fr.ms.log4jdbc.context.BatchDecorator;
import fr.ms.log4jdbc.context.Transaction;
import fr.ms.log4jdbc.context.TransactionDecorator;
import fr.ms.log4jdbc.rdbms.RdbmsSpecifics;
import fr.ms.log4jdbc.sql.FormatQuery;
import fr.ms.log4jdbc.sql.Query;
import fr.ms.log4jdbc.sql.QueryDecorator;

/**
 *
 * @see Marco4J
 *
 *
 * @author Marco Semiao
 *
 */
public class SqlOperationDecorator implements SqlOperation {

    private final SqlOperation sqlOperation;

    private final FormatQuery formatQuery;

    public SqlOperationDecorator(final SqlOperation sqlOperation, final FormatQuery formatQuery) {
	if (sqlOperation == null || formatQuery == null) {
	    throw new NullPointerException();
	}
	this.sqlOperation = sqlOperation;
	this.formatQuery = formatQuery;
    }

    public Query getQuery() {
	final Query query = sqlOperation.getQuery();
	if (query == null) {
	    return null;
	}
	return new QueryDecorator(query, sqlOperation.getRdbms(), formatQuery);
    }

    public Transaction getTransaction() {
	final Transaction transaction = sqlOperation.getTransaction();
	if (transaction == null) {
	    return null;
	}
	return new TransactionDecorator(transaction, sqlOperation.getRdbms(), formatQuery);
    }

    public Batch getBatch() {
	final Batch batch = sqlOperation.getBatch();
	if (batch == null) {
	    return null;
	}
	return new BatchDecorator(batch, sqlOperation.getRdbms(), formatQuery);
    }

    public Date getDate() {
	return sqlOperation.getDate();
    }

    public long getExecTime() {
	return sqlOperation.getExecTime();
    }

    public long getConnectionNumber() {
	return sqlOperation.getConnectionNumber();
    }

    public long getOpenConnection() {
	return sqlOperation.getOpenConnection();
    }

    public Driver getDriver() {
	return sqlOperation.getDriver();
    }

    public RdbmsSpecifics getRdbms() {
	return sqlOperation.getRdbms();
    }

    public String getUrl() {
	return sqlOperation.getUrl();
    }

    public boolean isAutoCommit() {
	return sqlOperation.isAutoCommit();
    }

    public String toString() {
	return "SqlOperationDecorator [sqlOperation=" + sqlOperation + ", formatQuery=" + formatQuery + "]";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy