use of org.fisco.bcos.web3j.tx.exceptions.ContractCallException in project web3sdk by FISCO-BCOS.
the class ChannelEthereumService method send.
@Override
public <T extends Response> T send(Request request, Class<T> responseType) throws IOException {
byte[] payload = objectMapper.writeValueAsBytes(request);
BcosRequest bcosRequest = new BcosRequest();
if (channelService.getOrgID() != null) {
bcosRequest.setKeyID(channelService.getOrgID());
} else {
bcosRequest.setKeyID(channelService.getAgencyName());
}
bcosRequest.setBankNO("");
bcosRequest.setContent(new String(payload));
bcosRequest.setMessageID(channelService.newSeq());
if (timeout != 0) {
bcosRequest.setTimeout(timeout);
}
BcosResponse response;
if (!request.isNeedTransCallback()) {
response = channelService.sendEthereumMessage(bcosRequest);
} else {
response = channelService.sendEthereumMessage(bcosRequest, request.getTransactionSucCallback());
}
logger.debug("bcos request, seq:{}, method:{}", bcosRequest.getMessageID(), request.getMethod());
logger.debug("bcos request:{} {}", bcosRequest.getMessageID(), objectMapper.writeValueAsString(request));
logger.trace("bcos request:{} {}", bcosRequest.getMessageID(), objectMapper.writeValueAsString(request));
logger.trace("bcos response:{} {} {}", bcosRequest.getMessageID(), response.getErrorCode(), response.getContent());
if (response.getErrorCode() == 0) {
try {
T t = objectMapper.readValue(response.getContent(), responseType);
if (t.getError() != null) {
throw new IOException(t.getError().getMessage());
}
if (t.getResult() instanceof CallOutput) {
CallOutput callResult = (CallOutput) t.getResult();
Tuple2<Boolean, String> revertMessage = RevertResolver.tryResolveRevertMessage(callResult.getStatus(), callResult.getOutput());
if (revertMessage.getValue1()) {
logger.debug(" revert message: {}", revertMessage.getValue2());
// throw new ContractCallException(revertMessage.getValue2());
}
if (StatusCode.RevertInstruction.equals(callResult.getStatus())) {
ContractCallException contractCallException = new ContractCallException("The execution of the contract rolled back" + (revertMessage.getValue1() ? ", " + revertMessage.getValue2() : "") + ".");
contractCallException.setCallOutput(callResult);
throw contractCallException;
}
if (StatusCode.CallAddressError.equals(callResult.getStatus())) {
ContractCallException contractCallException = new ContractCallException("The contract address is incorrect.");
contractCallException.setCallOutput(callResult);
throw contractCallException;
}
if (!StatusCode.Success.equals(callResult.getStatus())) {
ContractCallException contractCallException = new ContractCallException(StatusCode.getStatusMessage(callResult.getStatus()));
contractCallException.setCallOutput(callResult);
throw contractCallException;
}
}
return t;
} catch (ContractCallException e) {
throw e;
} catch (Exception e) {
logger.error("e: ", e);
throw new MessageDecodingException(response.getContent());
}
} else {
throw new IOException(response.getErrorMessage());
}
}
use of org.fisco.bcos.web3j.tx.exceptions.ContractCallException in project web3sdk by FISCO-BCOS.
the class Contract method executeCallSingleValueReturn.
@SuppressWarnings("unchecked")
protected <T extends Type, R> R executeCallSingleValueReturn(Function function, Class<R> returnType) throws IOException {
T result = executeCallSingleValueReturn(function);
if (result == null) {
throw new ContractCallException("Empty value (0x) returned from contract");
}
Object value = result.getValue();
if (returnType.isAssignableFrom(value.getClass())) {
return (R) value;
} else if (result.getClass().equals(Address.class) && returnType.equals(String.class)) {
// cast isn't necessary
return (R) result.toString();
} else {
throw new ContractCallException("Unable to convert response: " + value + " to expected type: " + returnType.getSimpleName());
}
}
Aggregations