Search in sources :

Example 6 with PublishScenarioProperties

use of com.hedera.mirror.monitor.publish.PublishScenarioProperties in project hedera-mirror-node by hashgraph.

the class ExpressionConverterImpl method doConvert.

private synchronized String doConvert(Expression expression) {
    if (expressions.containsKey(expression)) {
        return expressions.get(expression);
    }
    try {
        log.debug("Processing expression {}", expression);
        ExpressionType type = expression.getType();
        Class<? extends TransactionSupplier<?>> supplierClass = type.getTransactionType().getSupplier();
        TransactionSupplier<?> transactionSupplier = supplierClass.getConstructor().newInstance();
        if (transactionSupplier instanceof AdminKeyable) {
            AdminKeyable adminKeyable = (AdminKeyable) transactionSupplier;
            PrivateKey privateKey = PrivateKey.fromString(monitorProperties.getOperator().getPrivateKey());
            adminKeyable.setAdminKey(privateKey.getPublicKey().toString());
        }
        if (transactionSupplier instanceof TokenCreateTransactionSupplier) {
            TokenCreateTransactionSupplier tokenSupplier = (TokenCreateTransactionSupplier) transactionSupplier;
            tokenSupplier.setTreasuryAccountId(monitorProperties.getOperator().getAccountId());
            if (type == ExpressionType.NFT) {
                tokenSupplier.setType(TokenType.NON_FUNGIBLE_UNIQUE);
            }
        }
        // if ScheduleCreate set the properties to the inner scheduledTransactionProperties
        if (transactionSupplier instanceof ScheduleCreateTransactionSupplier) {
            var scheduleCreateTransactionSupplier = (ScheduleCreateTransactionSupplier) transactionSupplier;
            scheduleCreateTransactionSupplier.setOperatorAccountId(monitorProperties.getOperator().getAccountId());
            scheduleCreateTransactionSupplier.setPayerAccount(monitorProperties.getOperator().getAccountId());
        }
        PublishScenarioProperties publishScenarioProperties = new PublishScenarioProperties();
        publishScenarioProperties.setName(expression.toString());
        publishScenarioProperties.setTimeout(Duration.ofSeconds(30L));
        publishScenarioProperties.setType(type.getTransactionType());
        PublishScenario scenario = new PublishScenario(publishScenarioProperties);
        // We use explicit retry instead of the SDK retry since we need to regenerate the transaction to
        // avoid transaction expired errors
        Retry retrySpec = Retry.backoff(Long.MAX_VALUE, Duration.ofSeconds(1L)).maxBackoff(Duration.ofSeconds(8L)).doBeforeRetry(r -> log.warn("Retry attempt #{} after failure: {}", r.totalRetries() + 1, r.failure().getMessage()));
        return Mono.defer(() -> transactionPublisher.publish(PublishRequest.builder().receipt(true).scenario(scenario).timestamp(Instant.now()).transaction(transactionSupplier.get().setMaxAttempts(1).setTransactionMemo(scenario.getMemo())).build())).retryWhen(retrySpec).map(PublishResponse::getReceipt).map(type.getIdExtractor()::apply).doOnSuccess(id -> log.info("Created {} entity {}", type, id)).toFuture().join();
    } catch (Exception e) {
        log.error("Error converting expression {}:", expression, e);
        throw new RuntimeException(e);
    }
}
Also used : TokenCreateTransactionSupplier(com.hedera.mirror.monitor.publish.transaction.token.TokenCreateTransactionSupplier) PublishResponse(com.hedera.mirror.monitor.publish.PublishResponse) PrivateKey(com.hedera.hashgraph.sdk.PrivateKey) PublishScenarioProperties(com.hedera.mirror.monitor.publish.PublishScenarioProperties) AdminKeyable(com.hedera.mirror.monitor.publish.transaction.AdminKeyable) ScheduleCreateTransactionSupplier(com.hedera.mirror.monitor.publish.transaction.schedule.ScheduleCreateTransactionSupplier) Retry(reactor.util.retry.Retry) PublishScenario(com.hedera.mirror.monitor.publish.PublishScenario)

Aggregations

PublishScenarioProperties (com.hedera.mirror.monitor.publish.PublishScenarioProperties)6 BeforeEach (org.junit.jupiter.api.BeforeEach)4 PublishScenario (com.hedera.mirror.monitor.publish.PublishScenario)3 PublishProperties (com.hedera.mirror.monitor.publish.PublishProperties)2 ArrayList (java.util.ArrayList)2 Pair (org.apache.commons.math3.util.Pair)2 Stopwatch (com.google.common.base.Stopwatch)1 Suppliers (com.google.common.base.Suppliers)1 HashMultiset (com.google.common.collect.HashMultiset)1 Multiset (com.google.common.collect.Multiset)1 RateLimiter (com.google.common.util.concurrent.RateLimiter)1 PrivateKey (com.hedera.hashgraph.sdk.PrivateKey)1 MirrorNodeProperties (com.hedera.mirror.monitor.MirrorNodeProperties)1 MonitorProperties (com.hedera.mirror.monitor.MonitorProperties)1 ScenarioStatus (com.hedera.mirror.monitor.ScenarioStatus)1 PublishRequest (com.hedera.mirror.monitor.publish.PublishRequest)1 PublishResponse (com.hedera.mirror.monitor.publish.PublishResponse)1 AdminKeyable (com.hedera.mirror.monitor.publish.transaction.AdminKeyable)1 TransactionType (com.hedera.mirror.monitor.publish.transaction.TransactionType)1 ScheduleCreateTransactionSupplier (com.hedera.mirror.monitor.publish.transaction.schedule.ScheduleCreateTransactionSupplier)1