io.nem.symbol.sdk.infrastructure.vertx.ChainRepositoryVertxImpl Maven / Gradle / Ivy
/*
* Copyright 2020 NEM
*
* 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 io.nem.symbol.sdk.infrastructure.vertx;
import io.nem.symbol.sdk.api.ChainRepository;
import io.nem.symbol.sdk.model.blockchain.ChainInfo;
import io.nem.symbol.sdk.model.blockchain.FinalizedBlock;
import io.nem.symbol.sdk.openapi.vertx.api.ChainRoutesApi;
import io.nem.symbol.sdk.openapi.vertx.api.ChainRoutesApiImpl;
import io.nem.symbol.sdk.openapi.vertx.invoker.ApiClient;
import io.nem.symbol.sdk.openapi.vertx.model.ChainInfoDTO;
import io.nem.symbol.sdk.openapi.vertx.model.FinalizedBlockDTO;
import io.reactivex.Observable;
import java.math.BigInteger;
/** Chain http repository. */
public class ChainRepositoryVertxImpl extends AbstractRepositoryVertxImpl
implements ChainRepository {
private final ChainRoutesApi client;
public ChainRepositoryVertxImpl(ApiClient apiClient) {
super(apiClient);
client = new ChainRoutesApiImpl(apiClient);
}
public ChainRoutesApi getClient() {
return client;
}
/**
* Get Block chain score
*
* @return {@link Observable} of {@link BigInteger}
*/
public Observable getChainInfo() {
return call(getClient()::getChainInfo, this::toChainInfo);
}
private ChainInfo toChainInfo(ChainInfoDTO dto) {
return new ChainInfo(
dto.getHeight(),
dto.getScoreLow(),
dto.getScoreHigh(),
toFinalizedBlock(dto.getLatestFinalizedBlock()));
}
public static FinalizedBlock toFinalizedBlock(FinalizedBlockDTO dto) {
return new FinalizedBlock(
dto.getFinalizationEpoch(), dto.getFinalizationPoint(), dto.getHeight(), dto.getHash());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy