use of org.firebirdsql.gds.ng.FbExceptionBuilder in project jaybird by FirebirdSQL.
the class TestV10WireOperations method testProcessResponse_warning.
/**
* Test if processResponse does not throw an exception if the response
* contains an exception that is warning.
*/
@Test
public void testProcessResponse_warning() throws Exception {
AbstractWireOperations wire = createDummyWireOperations();
SQLException exception = new FbExceptionBuilder().warning(ISCConstants.isc_numeric_out_of_range).toSQLException();
GenericResponse genericResponse = new GenericResponse(-1, -1, null, exception);
wire.processResponse(genericResponse);
}
use of org.firebirdsql.gds.ng.FbExceptionBuilder in project jaybird by FirebirdSQL.
the class V11Statement method prepare.
@Override
public void prepare(final String statementText) throws SQLException {
try {
synchronized (getSynchronizationObject()) {
checkTransactionActive(getTransaction());
final StatementState currentState = getState();
if (!isPrepareAllowed(currentState)) {
throw new SQLNonTransientException(String.format("Current statement state (%s) does not allow call to prepare", currentState));
}
resetAll();
int expectedResponseCount = 0;
try {
if (currentState == StatementState.NEW) {
sendAllocate();
expectedResponseCount++;
} else {
checkStatementValid();
}
sendPrepare(statementText);
expectedResponseCount++;
getXdrOut().flush();
} catch (IOException ex) {
switchState(StatementState.ERROR);
throw new FbExceptionBuilder().exception(ISCConstants.isc_net_write_err).cause(ex).toSQLException();
}
try {
final FbWireDatabase db = getDatabase();
try {
if (currentState == StatementState.NEW) {
expectedResponseCount--;
processAllocateResponse(db.readGenericResponse(getStatementWarningCallback()));
}
expectedResponseCount--;
processPrepareResponse(db.readGenericResponse(getStatementWarningCallback()));
} finally {
db.consumePackets(expectedResponseCount, getStatementWarningCallback());
}
} catch (IOException ex) {
switchState(StatementState.ERROR);
throw new FbExceptionBuilder().exception(ISCConstants.isc_net_read_err).cause(ex).toSQLException();
}
}
} catch (SQLException e) {
exceptionListenerDispatcher.errorOccurred(e);
throw e;
}
}
use of org.firebirdsql.gds.ng.FbExceptionBuilder in project jaybird by FirebirdSQL.
the class V11Statement method free.
@Override
protected void free(final int option) throws SQLException {
synchronized (getSynchronizationObject()) {
try {
doFreePacket(option);
/*
Don't flush close of cursor, only flush drop or unprepare of statement.
This balances network efficiencies with preventing statements
retaining locks on metadata objects too long
*/
if (option != ISCConstants.DSQL_close) {
getXdrOut().flush();
}
// process response later
getDatabase().enqueueDeferredAction(new DeferredAction() {
@Override
public void processResponse(Response response) {
processFreeResponse(response);
}
@Override
public WarningMessageCallback getWarningMessageCallback() {
return getStatementWarningCallback();
}
});
} catch (IOException ex) {
switchState(StatementState.ERROR);
throw new FbExceptionBuilder().exception(ISCConstants.isc_net_write_err).cause(ex).toSQLException();
}
}
}
use of org.firebirdsql.gds.ng.FbExceptionBuilder in project jaybird by FirebirdSQL.
the class V12Database method cancelOperation.
@Override
public void cancelOperation(int kind) throws SQLException {
try {
if (kind == ISCConstants.fb_cancel_abort) {
try {
// In case of abort we forcibly close the connection
closeConnection();
} catch (IOException ioe) {
throw new SQLNonTransientConnectionException("Connection abort failed", ioe);
}
} else {
checkConnected();
try {
// We circumvent the normal xdrOut to minimize the chance of interleaved writes
// TODO We may still need to do separate write / read synchronization to ensure this works correctly
ByteArrayOutputStream out = new ByteArrayOutputStream(8);
try (XdrOutputStream xdr = new XdrOutputStream(out, 8)) {
xdr.writeInt(WireProtocolConstants.op_cancel);
xdr.writeInt(kind);
}
wireOperations.writeDirect(out.toByteArray());
} catch (IOException ioe) {
throw new FbExceptionBuilder().exception(ISCConstants.isc_net_write_err).cause(ioe).toSQLException();
}
}
} catch (SQLException ex) {
exceptionListenerDispatcher.errorOccurred(ex);
throw ex;
}
}
use of org.firebirdsql.gds.ng.FbExceptionBuilder in project jaybird by FirebirdSQL.
the class V13WireOperations method authReceiveResponse.
@Override
public void authReceiveResponse(FbWireAttachment.AcceptPacket acceptPacket, DbCryptCallback dbCryptCallback, FbWireOperations.ProcessAttachCallback processAttachCallback) throws SQLException, IOException {
assert acceptPacket == null || acceptPacket.operation == op_cond_accept : "Unexpected operation in AcceptPacket";
final XdrInputStream xdrIn = getXdrIn();
final XdrOutputStream xdrOut = getXdrOut();
final ClientAuthBlock clientAuthBlock = getClientAuthBlock();
final Encoding encoding = getEncoding();
while (true) {
String pluginName;
byte[] data;
if (acceptPacket != null) {
data = acceptPacket.p_acpt_data;
pluginName = acceptPacket.p_acpt_plugin;
addServerKeys(acceptPacket.p_acpt_keys);
log.debug(String.format("authReceiveResponse: cond_accept data=%d pluginName=%d '%s'", data.length, pluginName != null ? pluginName.length() : null, pluginName));
// TODO handle compression
acceptPacket = null;
} else {
int operation = readNextOperation();
switch(operation) {
case op_trusted_auth:
// p_trau_data
xdrIn.readBuffer();
throw new FbExceptionBuilder().nonTransientConnectionException(JaybirdErrorCodes.jb_receiveTrustedAuth_NotSupported).toFlatSQLException();
case op_cont_auth:
// p_data
data = xdrIn.readBuffer();
// p_name
pluginName = xdrIn.readString(encoding);
// p_list (ignore?)
xdrIn.readBuffer();
// p_keys
addServerKeys(xdrIn.readBuffer());
log.debug(String.format("authReceiveResponse: cont_auth data=%d pluginName=%d '%s'", data.length, pluginName.length(), pluginName));
break;
case op_crypt_key_callback:
log.debug("Handling db crypt callback using plugin " + dbCryptCallback.getDbCryptCallbackName());
handleCryptKeyCallback(dbCryptCallback);
continue;
case op_cond_accept:
// Note this is the equivalent of handling the acceptPacket != null above
// p_acpt_version
xdrIn.readInt();
// p_acpt_architecture
xdrIn.readInt();
// p_acpt_type
xdrIn.readInt();
// p_acpt_data
data = xdrIn.readBuffer();
// p_acpt_plugin
pluginName = xdrIn.readString(encoding);
// p_acpt_authenticated
xdrIn.readInt();
// p_acpt_keys
addServerKeys(xdrIn.readBuffer());
log.debug(String.format("authReceiveResponse: cond_accept data=%d pluginName=%d '%s'", data.length, pluginName.length(), pluginName));
// TODO handle compression
break;
case op_response:
GenericResponse response = (GenericResponse) readOperationResponse(operation, null);
boolean wasAuthComplete = clientAuthBlock.isAuthComplete();
clientAuthBlock.setAuthComplete(true);
processAttachCallback.processAttachResponse(response);
addServerKeys(response.getData());
WireCrypt wireCrypt = getAttachProperties().getWireCryptAsEnum();
if (!wasAuthComplete && wireCrypt != WireCrypt.DISABLED) {
tryKnownServerKeys();
}
return;
default:
throw new SQLException(String.format("Unsupported operation code: %d", operation));
}
}
if (pluginName != null && pluginName.length() > 0 && Objects.equals(pluginName, clientAuthBlock.getCurrentPluginName())) {
pluginName = null;
}
if (pluginName != null && pluginName.length() > 0) {
if (!clientAuthBlock.switchPlugin(pluginName)) {
break;
}
}
if (!clientAuthBlock.hasPlugin()) {
break;
}
clientAuthBlock.setServerData(data);
log.debug(String.format("receiveResponse: authenticate(%s)", clientAuthBlock.getCurrentPluginName()));
clientAuthBlock.authenticate();
xdrOut.writeInt(op_cont_auth);
// TODO Move to ClientAuthBlock?
// p_data
xdrOut.writeBuffer(clientAuthBlock.getClientData());
// p_name
xdrOut.writeString(clientAuthBlock.getCurrentPluginName(), encoding);
if (clientAuthBlock.isFirstTime()) {
// p_list
xdrOut.writeString(clientAuthBlock.getPluginNames(), encoding);
clientAuthBlock.setFirstTime(false);
} else {
// p_list
xdrOut.writeBuffer(null);
}
// p_keys
xdrOut.writeBuffer(null);
xdrOut.flush();
}
// If we have exited from the cycle, this mean auth failed
throw new FbExceptionBuilder().exception(ISCConstants.isc_login).toFlatSQLException();
}
Aggregations