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

com.hedera.hashgraph.sdk.TransactionReceiptQuery Maven / Gradle / Ivy

The newest version!
/*-
 *
 * Hedera Java SDK
 *
 * Copyright (C) 2020 - 2024 Hedera Hashgraph, LLC
 *
 * 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.
 *
 */
package com.hedera.hashgraph.sdk;

import com.hedera.hashgraph.sdk.proto.CryptoServiceGrpc;
import com.hedera.hashgraph.sdk.proto.QueryHeader;
import com.hedera.hashgraph.sdk.proto.Response;
import com.hedera.hashgraph.sdk.proto.ResponseHeader;
import com.hedera.hashgraph.sdk.proto.TransactionGetReceiptQuery;
import io.grpc.MethodDescriptor;

import javax.annotation.Nullable;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;

/**
 * Get the receipt of a transaction, given its transaction ID.
 *
 * 

Once a transaction reaches consensus, then information about whether it succeeded or failed * will be available until the end of the receipt period. * *

This query is free. */ public final class TransactionReceiptQuery extends Query { @Nullable private TransactionId transactionId = null; private boolean includeChildren = false; private boolean includeDuplicates = false; /** * Constructor. */ public TransactionReceiptQuery() { } /** * Extract the transaction id. * * @return the transaction id */ @Override @Nullable public TransactionId getTransactionIdInternal() { return transactionId; } /** * Set the ID of the transaction for which the receipt is being requested. * * @param transactionId The TransactionId to be set * @return {@code this} */ public TransactionReceiptQuery setTransactionId(TransactionId transactionId) { Objects.requireNonNull(transactionId); this.transactionId = transactionId; return this; } /** * Should the children be included? * * @return should children be included */ public boolean getIncludeChildren() { return includeChildren; } /** * Whether the response should include the records of any child transactions spawned by the * top-level transaction with the given transactionID. * * @param value The value that includeChildren should be set to; true to include children, false to exclude * @return {@code this} */ public TransactionReceiptQuery setIncludeChildren(boolean value) { includeChildren = value; return this; } /** * Should duplicates be included? * * @return should duplicates be included */ public boolean getIncludeDuplicates() { return includeDuplicates; } /** * Whether records of processing duplicate transactions should be returned along with the record * of processing the first consensus transaction with the given id whose status was neither * INVALID_NODE_ACCOUNT nor INVALID_PAYER_SIGNATURE or, if no such * record exists, the record of processing the first transaction to reach consensus with the * given transaction id. * * @param value The value that includeDuplicates should be set to; true to include duplicates, false to exclude * @return {@code this} */ public TransactionReceiptQuery setIncludeDuplicates(boolean value) { includeDuplicates = value; return this; } @Override boolean isPaymentRequired() { return false; } @Override void validateChecksums(Client client) throws BadEntityIdException { if (transactionId != null) { Objects.requireNonNull(transactionId.accountId).validateChecksum(client); } } @Override void onMakeRequest(com.hedera.hashgraph.sdk.proto.Query.Builder queryBuilder, QueryHeader header) { var builder = TransactionGetReceiptQuery.newBuilder() .setIncludeChildReceipts(includeChildren) .setIncludeDuplicates(includeDuplicates); if (transactionId != null) { builder.setTransactionID(transactionId.toProtobuf()); } queryBuilder.setTransactionGetReceipt(builder.setHeader(header)); } @Override Status mapResponseStatus(Response response) { var preCheckCode = response.getTransactionGetReceipt().getHeader().getNodeTransactionPrecheckCode(); return Status.valueOf(preCheckCode); } @Override TransactionReceipt mapResponse(Response response, AccountId nodeId, com.hedera.hashgraph.sdk.proto.Query request) { var receiptResponse = response.getTransactionGetReceipt(); var duplicates = mapReceiptList(receiptResponse.getDuplicateTransactionReceiptsList()); var children = mapReceiptList(receiptResponse.getChildTransactionReceiptsList()); return TransactionReceipt.fromProtobuf(response.getTransactionGetReceipt().getReceipt(), duplicates, children, transactionId); } /** * Create a list of transaction receipts from a protobuf. * * @param protoReceiptList the protobuf * @return the list of transaction receipts */ private static List mapReceiptList( List protoReceiptList ) { List outList = new ArrayList<>(protoReceiptList.size()); for (var protoReceipt : protoReceiptList) { outList.add(TransactionReceipt.fromProtobuf(protoReceipt)); } return outList; } @Override QueryHeader mapRequestHeader(com.hedera.hashgraph.sdk.proto.Query request) { return request.getTransactionGetReceipt().getHeader(); } @Override ResponseHeader mapResponseHeader(Response response) { return response.getTransactionGetReceipt().getHeader(); } @Override MethodDescriptor getMethodDescriptor() { return CryptoServiceGrpc.getGetTransactionReceiptsMethod(); } @Override ExecutionState getExecutionState(Status status, Response response) { switch (status) { case BUSY: case UNKNOWN: case RECEIPT_NOT_FOUND: case RECORD_NOT_FOUND: case PLATFORM_NOT_ACTIVE: return ExecutionState.RETRY; case OK: break; default: return ExecutionState.REQUEST_ERROR; } var receiptStatus = Status.valueOf(response.getTransactionGetReceipt().getReceipt().getStatus()); switch (receiptStatus) { case BUSY: case UNKNOWN: case OK: case RECEIPT_NOT_FOUND: case RECORD_NOT_FOUND: case PLATFORM_NOT_ACTIVE: return ExecutionState.RETRY; default: return ExecutionState.SUCCESS; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy