![JAR search and dependency download from the Maven repository](/logo.png)
io.blockfrost.sdk.impl.AssetServiceImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blockfrost-java Show documentation
Show all versions of blockfrost-java Show documentation
Java SDK for the Blockfrost.io API
package io.blockfrost.sdk.impl;
import io.blockfrost.sdk.api.AssetService;
import io.blockfrost.sdk.api.exception.APIException;
import io.blockfrost.sdk.api.exception.RuntimeAPIException;
import io.blockfrost.sdk.api.model.*;
import io.blockfrost.sdk.api.util.ConfigHelper;
import io.blockfrost.sdk.api.util.OrderEnum;
import io.blockfrost.sdk.impl.retrofit.AssetsApi;
import retrofit2.Call;
import retrofit2.Response;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.CompletableFuture;
public class AssetServiceImpl extends BaseService implements AssetService {
AssetsApi assetsApi;
public AssetServiceImpl(String baseUrl, String projectId) {
super(baseUrl, projectId);
assetsApi = getRetrofit().create(AssetsApi.class);
}
private void validateAsset(String asset) throws APIException {
if (asset == null || asset.equals("")) {
throw new APIException("Asset cannot be null or empty");
}
}
@Override
public Asset getAsset(String asset) throws APIException {
validateAsset(asset);
Call assetCall = assetsApi.assetsAssetGet(getProjectId(), asset);
try {
Response assetResponse = assetCall.execute();
return processResponse(assetResponse);
} catch (IOException exp) {
throw new APIException("Exception while fetching asset: " + asset, exp);
}
}
@Override
public List getAssets(int count, int page, OrderEnum order) throws APIException {
Call> assetsCall = assetsApi.assetsGet(getProjectId(), count, page, order.name());
try {
Response> assetsResponse = assetsCall.execute();
return processResponse(assetsResponse);
} catch (IOException exp) {
throw new APIException("Exception while fetching assets", exp);
}
}
@Override
public List getAssets(int count, int page) throws APIException {
return getAssets(count, page, OrderEnum.asc);
}
@Override
public List getAssetHistory(String asset, int count, int page, OrderEnum order) throws APIException {
validateAsset(asset);
Call> assetHistoryCall = assetsApi.assetsAssetHistoryGet(getProjectId(), asset, count, page, order.name());
try {
Response> assetHistoryResponse = assetHistoryCall.execute();
return processResponse(assetHistoryResponse);
} catch (IOException exp) {
throw new APIException("Exception while fetching asset history for asset: " + asset, exp);
}
}
@Override
public List getAssetHistory(String asset, int count, int page) throws APIException {
return getAssetHistory(asset, count, page, OrderEnum.asc);
}
@Override
public List getEntireAssetHistory(String asset, OrderEnum order) throws APIException {
List responseList = new ArrayList<>();
boolean stopExecution = false;
int currentPageCount = 1;
int numThreads = ConfigHelper.INSTANCE.getThreadCount();
while (!stopExecution) {
List>> completableFutures = new ArrayList<>();
for (int i = 0; i < numThreads; i++) {
int finalCurrentPageCount = currentPageCount + i;
completableFutures.add(CompletableFuture.supplyAsync(() -> {
try {
return getAssetHistory(asset, getDefaultFetchSize(), finalCurrentPageCount, order);
} catch (APIException e) {
throw new RuntimeAPIException(e);
}
}));
}
try {
stopExecution = fetchData(completableFutures, responseList);
} catch (Exception e) {
throw new APIException("Exception while fetching entire asset history", e);
}
currentPageCount += numThreads;
}
return responseList;
}
@Override
public List getEntireAssetHistory(String asset) throws APIException {
return getEntireAssetHistory(asset, OrderEnum.asc);
}
@Override
public List getAssetTransactions(String asset, int count, int page, OrderEnum order) throws APIException {
validateAsset(asset);
Call> assetTransactionCall = assetsApi.assetsAssetTransactionsGet(getProjectId(), asset, count, page, order.name());
try {
Response> assetTransactionResponse = assetTransactionCall.execute();
return processResponse(assetTransactionResponse);
} catch (IOException exp) {
throw new APIException("Exception while fetching transactions for asset: " + asset, exp);
}
}
@Override
public List getAssetTransactions(String asset, int count, int page) throws APIException {
return getAssetTransactions(asset, count, page, OrderEnum.asc);
}
@Override
public List getAllAssetTransactions(String asset, OrderEnum order) throws APIException {
List responseList = new ArrayList<>();
boolean stopExecution = false;
int currentPageCount = 1;
int numThreads = ConfigHelper.INSTANCE.getThreadCount();
while (!stopExecution) {
List>> completableFutures = new ArrayList<>();
for (int i = 0; i < numThreads; i++) {
int finalCurrentPageCount = currentPageCount + i;
completableFutures.add(CompletableFuture.supplyAsync(() -> {
try {
return getAssetTransactions(asset, getDefaultFetchSize(), finalCurrentPageCount, order);
} catch (APIException e) {
throw new RuntimeAPIException(e);
}
}));
}
try {
stopExecution = fetchData(completableFutures, responseList);
} catch (Exception e) {
throw new APIException("Exception while fetching asset transactions", e);
}
currentPageCount += numThreads;
}
return responseList;
}
@Override
public List getAllAssetTransactions(String asset) throws APIException {
return getAllAssetTransactions(asset, OrderEnum.asc);
}
@Override
public List getAssetAddresses(String asset, int count, int page, OrderEnum order) throws APIException {
validateAsset(asset);
Call> assetAddressCall = assetsApi.assetsAssetAddressesGet(getProjectId(), asset, count, page, order.name());
try {
Response> assetAddressResponse = assetAddressCall.execute();
return processResponse(assetAddressResponse);
} catch (IOException exp) {
throw new APIException("Exception while fetching addresses for asset: " + asset, exp);
}
}
@Override
public List getAssetAddresses(String asset, int count, int page) throws APIException {
return getAssetAddresses(asset, count, page, OrderEnum.asc);
}
@Override
public List getAllAssetAddresses(String asset, OrderEnum order) throws APIException {
List responseList = new ArrayList<>();
boolean stopExecution = false;
int currentPageCount = 1;
int numThreads = ConfigHelper.INSTANCE.getThreadCount();
while (!stopExecution) {
List>> completableFutures = new ArrayList<>();
for (int i = 0; i < numThreads; i++) {
int finalCurrentPageCount = currentPageCount + i;
completableFutures.add(CompletableFuture.supplyAsync(() -> {
try {
return getAssetAddresses(asset, getDefaultFetchSize(), finalCurrentPageCount, order);
} catch (APIException e) {
throw new RuntimeAPIException(e);
}
}));
}
try {
stopExecution = fetchData(completableFutures, responseList);
} catch (Exception e) {
throw new APIException("Exception while fetching asset addresses", e);
}
currentPageCount += numThreads;
}
return responseList;
}
@Override
public List getAllAssetAddresses(String asset) throws APIException {
return getAllAssetAddresses(asset, OrderEnum.asc);
}
@Override
public List getPolicyAssets(String policyId, int count, int page, OrderEnum order) throws APIException {
if (policyId == null || policyId.equals("")) {
throw new APIException("PolicyId cannot be null or empty");
}
Call> policyAssetsCall = assetsApi.assetsPolicyPolicyIdGet(getProjectId(), policyId, count, page, order.name());
try {
Response> policyAssetsResponse = policyAssetsCall.execute();
return processResponse(policyAssetsResponse);
} catch (IOException exp) {
throw new APIException("Exception while fetching assets for policy: " + policyId, exp);
}
}
@Override
public List getPolicyAssets(String policyId, int count, int page) throws APIException {
return getPolicyAssets(policyId, count, page, OrderEnum.asc);
}
@Override
public List getAllPolicyAssets(String policyId, OrderEnum order) throws APIException {
if (policyId == null || policyId.equals("")) {
throw new APIException("PolicyId cannot be null or empty");
}
List responseList = new ArrayList<>();
boolean stopExecution = false;
int currentPageCount = 1;
int numThreads = ConfigHelper.INSTANCE.getThreadCount();
while (!stopExecution) {
List>> completableFutures = new ArrayList<>();
for (int i = 0; i < numThreads; i++) {
int finalCurrentPageCount = currentPageCount + i;
completableFutures.add(CompletableFuture.supplyAsync(() -> {
try {
return getPolicyAssets(policyId, getDefaultFetchSize(), finalCurrentPageCount, order);
} catch (APIException e) {
throw new RuntimeAPIException(e);
}
}));
}
try {
stopExecution = fetchData(completableFutures, responseList);
} catch (Exception e) {
throw new APIException("Exception while fetching assets for policy: " + policyId, e);
}
currentPageCount += numThreads;
}
return responseList;
}
@Override
public List getAllPolicyAssets(String policyId) throws APIException {
return getAllPolicyAssets(policyId, OrderEnum.asc);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy