
it.larusba.neo4j.jdbc.bolt.BoltStatement Maven / Gradle / Ivy
Show all versions of neo4j-jdbc-bolt Show documentation
/**
* Copyright (c) 2016 LARUS Business Automation [http://www.larus-ba.it]
*
* This file is part of the "LARUS Integration Framework for Neo4j".
*
* The "LARUS Integration Framework for Neo4j" is licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Created on 19/02/16
*/
package it.larusba.neo4j.jdbc.bolt;
import it.larusba.neo4j.jdbc.Statement;
import org.neo4j.driver.v1.StatementResult;
import org.neo4j.driver.v1.Transaction;
import org.neo4j.driver.v1.summary.SummaryCounters;
import java.sql.ResultSet;
import java.sql.SQLException;
/**
* @author AgileLARUS
* @since 3.0.0
*/
public class BoltStatement extends Statement implements Loggable {
private BoltConnection connection;
private Transaction transaction;
private int[] rsParams;
private ResultSet currentResultSet;
private int currentUpdateCount;
private boolean closed;
private int maxRows;
private boolean loggable = false;
/**
* Default Constructor
*
* @param connection
* @param rsParams The params (type, concurrency and holdability) used to create a new ResultSet
*/
public BoltStatement(BoltConnection connection, int... rsParams) {
this.connection = connection;
this.transaction = connection.getTransaction();
this.rsParams = rsParams;
this.currentResultSet = null;
this.currentUpdateCount = -1;
this.closed = false;
this.maxRows = 0;
}
private void checkClosed() throws SQLException {
if (this.isClosed()) {
throw new SQLException("Statement already closed");
}
}
//Mustn't return null
@Override public ResultSet executeQuery(String sql) throws SQLException {
this.checkClosed();
if (connection.isClosed()) {
throw new SQLException("Connection already closed");
}
StatementResult result;
if (connection.getAutoCommit()) {
Transaction t = this.connection.getSession().beginTransaction();
result = t.run(sql);
t.success();
t.close();
} else {
result = this.connection.getTransaction().run(sql);
}
this.currentResultSet = InstanceFactory.debug(BoltResultSet.class, new BoltResultSet(result, this.rsParams), this.isLoggable());
this.currentUpdateCount = -1;
return this.currentResultSet;
}
@Override public int executeUpdate(String sql) throws SQLException {
this.checkClosed();
if (connection.isClosed()) {
throw new SQLException("Connection already closed");
}
StatementResult result;
if (connection.getAutoCommit()) {
Transaction t = this.connection.getSession().beginTransaction();
result = t.run(sql);
t.success();
t.close();
} else {
result = this.connection.getTransaction().run(sql);
}
SummaryCounters stats = result.consume().counters();
this.currentUpdateCount = stats.nodesCreated() + stats.nodesDeleted() + stats.relationshipsCreated() + stats.relationshipsDeleted();
this.currentResultSet = null;
return this.currentUpdateCount;
}
@Override public void close() throws SQLException {
if (this.closed) {
return;
}
if (this.currentResultSet != null) {
this.currentResultSet.close();
}
if (this.transaction != null) {
this.transaction.failure();
this.transaction.close();
}
this.closed = true;
}
@Override public int getMaxRows() throws SQLException {
return this.maxRows;
}
@Override public void setMaxRows(int max) throws SQLException {
this.maxRows = max;
}
@Override public int getResultSetConcurrency() throws SQLException {
this.checkClosed();
if (currentResultSet != null) {
return currentResultSet.getConcurrency();
}
if (this.rsParams.length > 1) {
return this.rsParams[1];
}
return BoltResultSet.DEFAULT_CONCURRENCY;
}
@Override public int getResultSetType() throws SQLException {
this.checkClosed();
if (currentResultSet != null) {
return currentResultSet.getType();
}
if (this.rsParams.length > 0) {
return this.rsParams[0];
}
return BoltResultSet.DEFAULT_TYPE;
}
@Override public int getResultSetHoldability() throws SQLException {
this.checkClosed();
if (currentResultSet != null) {
return currentResultSet.getHoldability();
}
if (this.rsParams.length > 2) {
return this.rsParams[2];
}
return BoltResultSet.DEFAULT_HOLDABILITY;
}
@Override public boolean isClosed() throws SQLException {
return closed;
}
@Override public boolean isLoggable() {
return this.loggable;
}
@Override public void setLoggable(boolean loggable) {
this.loggable = loggable;
}
@Override public boolean execute(String sql) throws SQLException {
boolean result = false;
if (sql.contains("DELETE") || sql.contains("MERGE") || sql.contains("CREATE") || sql.contains("delete") || sql.contains("merge") || sql
.contains("create")) {
this.executeUpdate(sql);
} else {
this.executeQuery(sql);
result = true;
}
return result;
}
@Override public int getUpdateCount() throws SQLException {
this.checkClosed();
if (this.currentResultSet != null) {
this.currentUpdateCount = -1;
}
return this.currentUpdateCount;
}
@Override public ResultSet getResultSet() throws SQLException {
this.checkClosed();
if (this.currentUpdateCount != -1) {
this.currentResultSet = null;
}
return this.currentResultSet;
}
}