Search in sources :

Example 11 with DataAccountSet

use of com.jd.blockchain.ledger.core.DataAccountSet in project jdchain-core by blockchain-jd-com.

the class LedgerQueryController method getDataAccountCount.

@RequestMapping(method = RequestMethod.GET, path = GET_DATA_ACCOUNT_COUNT_ON_BLOCK_HEIGHT)
@Override
public long getDataAccountCount(@PathVariable(name = "ledgerHash") HashDigest ledgerHash, @PathVariable(name = "blockHeight") long height) {
    LedgerQuery ledger = ledgerService.getLedger(ledgerHash);
    LedgerBlock block = ledger.getBlock(height);
    if (null == block) {
        return 0;
    }
    DataAccountSet dataAccountSet = ledger.getDataAccountSet(block);
    return dataAccountSet.getTotal();
}
Also used : LedgerBlock(com.jd.blockchain.ledger.LedgerBlock) LedgerQuery(com.jd.blockchain.ledger.core.LedgerQuery) DataAccountSet(com.jd.blockchain.ledger.core.DataAccountSet) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Example 12 with DataAccountSet

use of com.jd.blockchain.ledger.core.DataAccountSet in project jdchain-core by blockchain-jd-com.

the class LedgerQueryController method getDataAccount.

@RequestMapping(method = RequestMethod.GET, path = GET_DATA_ACCOUNT)
@Override
public DataAccountInfo getDataAccount(@PathVariable(name = "ledgerHash") HashDigest ledgerHash, @PathVariable(name = "address") String address) {
    LedgerQuery ledger = ledgerService.getLedger(ledgerHash);
    LedgerBlock block = ledger.getLatestBlock();
    DataAccountSet dataAccountSet = ledger.getDataAccountSet(block);
    return dataAccountSet.getAccount(Bytes.fromBase58(address));
}
Also used : LedgerBlock(com.jd.blockchain.ledger.LedgerBlock) LedgerQuery(com.jd.blockchain.ledger.core.LedgerQuery) DataAccountSet(com.jd.blockchain.ledger.core.DataAccountSet) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Example 13 with DataAccountSet

use of com.jd.blockchain.ledger.core.DataAccountSet in project jdchain-core by blockchain-jd-com.

the class LedgerQueryController method getDataEntries.

@RequestMapping(method = { RequestMethod.GET, RequestMethod.POST }, path = GET_LATEST_KV_SEQUENCE)
@Override
public TypedKVEntry[] getDataEntries(@PathVariable(name = "ledgerHash") HashDigest ledgerHash, @PathVariable(name = "address") String address, @RequestParam(name = "fromIndex", required = false, defaultValue = "0") int fromIndex, @RequestParam(name = "count", required = false, defaultValue = "-1") int count) {
    LedgerQuery ledger = ledgerService.getLedger(ledgerHash);
    LedgerBlock block = ledger.getLatestBlock();
    DataAccountSet dataAccountSet = ledger.getDataAccountSet(block);
    DataAccount dataAccount = dataAccountSet.getAccount(Bytes.fromBase58(address));
    if (dataAccount == null) {
        return null;
    }
    QueryArgs queryArgs = QueryUtils.calFromIndexAndCount(fromIndex, count, (int) dataAccount.getDataset().getDataCount());
    fromIndex = queryArgs.getFrom();
    count = queryArgs.getCount();
    SkippingIterator<DataEntry<String, TypedValue>> iterator = ((IteratorDataset) dataAccount.getDataset()).kvIterator();
    iterator.skip(fromIndex);
    TypedKVEntry[] typedKVEntries = iterator.next(count, TypedKVEntry.class, new Mapper<DataEntry<String, TypedValue>, TypedKVEntry>() {

        @Override
        public TypedKVEntry from(DataEntry<String, TypedValue> entry) {
            return entry == null ? null : new TypedKVData(entry.getKey(), entry.getVersion(), entry.getValue());
        }
    });
    return typedKVEntries;
}
Also used : LedgerBlock(com.jd.blockchain.ledger.LedgerBlock) LedgerQuery(com.jd.blockchain.ledger.core.LedgerQuery) DataAccount(com.jd.blockchain.ledger.core.DataAccount) DataEntry(utils.DataEntry) TypedKVEntry(com.jd.blockchain.ledger.TypedKVEntry) TypedKVData(com.jd.blockchain.ledger.TypedKVData) QueryArgs(utils.query.QueryArgs) IteratorDataset(com.jd.blockchain.ledger.core.IteratorDataset) DataAccountSet(com.jd.blockchain.ledger.core.DataAccountSet) TypedValue(com.jd.blockchain.ledger.TypedValue) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Example 14 with DataAccountSet

use of com.jd.blockchain.ledger.core.DataAccountSet in project jdchain-core by blockchain-jd-com.

the class LedgerQueryController method getDataEntriesTotalCount.

@RequestMapping(method = RequestMethod.GET, path = GET_KV_COUNT)
@Override
public long getDataEntriesTotalCount(@PathVariable(name = "ledgerHash") HashDigest ledgerHash, @PathVariable(name = "address") String address) {
    LedgerQuery ledger = ledgerService.getLedger(ledgerHash);
    LedgerBlock block = ledger.getLatestBlock();
    DataAccountSet dataAccountSet = ledger.getDataAccountSet(block);
    DataAccount dataAccount = dataAccountSet.getAccount(Bytes.fromBase58(address));
    if (dataAccount == null) {
        return 0;
    }
    return dataAccount.getDataset().getDataCount();
}
Also used : DataAccount(com.jd.blockchain.ledger.core.DataAccount) LedgerBlock(com.jd.blockchain.ledger.LedgerBlock) LedgerQuery(com.jd.blockchain.ledger.core.LedgerQuery) DataAccountSet(com.jd.blockchain.ledger.core.DataAccountSet) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Aggregations

DataAccountSet (com.jd.blockchain.ledger.core.DataAccountSet)14 LedgerBlock (com.jd.blockchain.ledger.LedgerBlock)9 LedgerQuery (com.jd.blockchain.ledger.core.LedgerQuery)9 RequestMapping (org.springframework.web.bind.annotation.RequestMapping)9 DataAccount (com.jd.blockchain.ledger.core.DataAccount)6 QueryArgs (utils.query.QueryArgs)6 TypedKVData (com.jd.blockchain.ledger.TypedKVData)5 TypedKVEntry (com.jd.blockchain.ledger.TypedKVEntry)5 BlockchainIdentity (com.jd.blockchain.ledger.BlockchainIdentity)3 IteratorDataset (com.jd.blockchain.ledger.core.IteratorDataset)3 DataEntry (utils.DataEntry)3 BytesValue (com.jd.blockchain.ledger.BytesValue)2 ContractException (com.jd.blockchain.contract.ContractException)1 HashDigest (com.jd.blockchain.crypto.HashDigest)1 KVDataVO (com.jd.blockchain.ledger.KVDataVO)1 TypedValue (com.jd.blockchain.ledger.TypedValue)1 ContractAccountSet (com.jd.blockchain.ledger.core.ContractAccountSet)1 DataAccountSetEditor (com.jd.blockchain.ledger.core.DataAccountSetEditor)1 LedgerDataSetEditor (com.jd.blockchain.ledger.core.LedgerDataSetEditor)1 LedgerEditor (com.jd.blockchain.ledger.core.LedgerEditor)1