Class FileStore
Assembly: Libplanet.dll
Syntax
public class FileStore : BaseStore, IStore
Constructors
|
Improve this Doc
View Source
FileStore(String)
Declaration
public FileStore(string path)
Parameters
Type |
Name |
Description |
String |
path |
|
Methods
|
Improve this Doc
View Source
AppendIndex(String, HashDigest<SHA256>)
Declaration
public override long AppendIndex(string namespace, HashDigest<SHA256> hash)
Parameters
Returns
Overrides
|
Improve this Doc
View Source
CountIndex(String)
Declaration
public override long CountIndex(string namespace)
Parameters
Type |
Name |
Description |
String |
namespace |
|
Returns
Overrides
|
Improve this Doc
View Source
DeleteBlock(HashDigest<SHA256>)
Declaration
public override bool DeleteBlock(HashDigest<SHA256> blockHash)
Parameters
Returns
Overrides
|
Improve this Doc
View Source
DeleteIndex(String, HashDigest<SHA256>)
Declaration
public override bool DeleteIndex(string namespace, HashDigest<SHA256> hash)
Parameters
Returns
Overrides
|
Improve this Doc
View Source
DeleteNamespace(String)
Deletes an index, tx nonces, and state references in the given
namespace
.
It also deletes namespace itself.
Declaration
public override void DeleteNamespace(string namespace)
Parameters
Type |
Name |
Description |
String |
namespace |
The namespace to delete.
|
Overrides
|
Improve this Doc
View Source
DeleteTransaction(TxId)
Declaration
public override bool DeleteTransaction(TxId txid)
Parameters
Type |
Name |
Description |
TxId |
txid |
|
Returns
Overrides
|
Improve this Doc
View Source
ForkStateReferences<T>(String, String, Block<T>, IImmutableSet<Address>)
Declaration
public override void ForkStateReferences<T>(string sourceNamespace, string destinationNamespace, Block<T> branchPoint, IImmutableSet<Address> addressesToStrip)
where T : IAction, new()
Parameters
Type Parameters
Overrides
Libplanet.Store.BaseStore.ForkStateReferences<T>(System.String, System.String, Libplanet.Blocks.Block<T>, System.Collections.Immutable.IImmutableSet<Libplanet.Address>)
|
Improve this Doc
View Source
GetBlock<T>(HashDigest<SHA256>)
Declaration
public override Block<T> GetBlock<T>(HashDigest<SHA256> blockHash)
where T : IAction, new()
Parameters
Returns
Type |
Description |
Block<T> |
|
Type Parameters
Overrides
|
Improve this Doc
View Source
GetBlockPath()
Declaration
public string GetBlockPath()
Returns
|
Improve this Doc
View Source
GetBlockPath(HashDigest<SHA256>)
Declaration
public string GetBlockPath(HashDigest<SHA256> blockHash)
Parameters
Returns
|
Improve this Doc
View Source
GetBlockStates(HashDigest<SHA256>)
Declaration
public override AddressStateMap GetBlockStates(HashDigest<SHA256> blockHash)
Parameters
Returns
Overrides
|
Improve this Doc
View Source
GetIndexPath(String)
Declaration
public string GetIndexPath(string namespace)
Parameters
Type |
Name |
Description |
String |
namespace |
|
Returns
|
Improve this Doc
View Source
GetStagedTransactionPath()
Declaration
public string GetStagedTransactionPath()
Returns
|
Improve this Doc
View Source
GetStagedTransactionPath(TxId)
Declaration
public string GetStagedTransactionPath(TxId txid)
Parameters
Type |
Name |
Description |
TxId |
txid |
|
Returns
|
Improve this Doc
View Source
GetStateReferencePath(String)
Declaration
public string GetStateReferencePath(string namespace)
Parameters
Type |
Name |
Description |
String |
namespace |
|
Returns
|
Improve this Doc
View Source
GetStateReferencePath(String, Address)
Declaration
public string GetStateReferencePath(string namespace, Address address)
Parameters
Returns
|
Improve this Doc
View Source
GetStatesPath()
Declaration
public string GetStatesPath()
Returns
|
Improve this Doc
View Source
GetStatesPath(HashDigest<SHA256>)
Declaration
public string GetStatesPath(HashDigest<SHA256> key)
Parameters
Returns
|
Improve this Doc
View Source
GetTransaction<T>(TxId)
Declaration
public override Transaction<T> GetTransaction<T>(TxId txid)
where T : IAction, new()
Parameters
Type |
Name |
Description |
TxId |
txid |
|
Returns
Type Parameters
Overrides
|
Improve this Doc
View Source
GetTransactionPath()
Declaration
public string GetTransactionPath()
Returns
|
Improve this Doc
View Source
GetTransactionPath(TxId)
Declaration
public string GetTransactionPath(TxId txid)
Parameters
Type |
Name |
Description |
TxId |
txid |
|
Returns
|
Improve this Doc
View Source
GetTxNonce(String, Address)
Declaration
public override long GetTxNonce(string namespace, Address address)
Parameters
Returns
Overrides
See Also
|
Improve this Doc
View Source
GetTxNoncePath(String)
Declaration
public string GetTxNoncePath(string namespace)
Parameters
Type |
Name |
Description |
String |
namespace |
|
Returns
|
Improve this Doc
View Source
GetTxNoncePath(String, Address)
Declaration
public string GetTxNoncePath(string namespace, Address address)
Parameters
Returns
|
Improve this Doc
View Source
IncreaseTxNonce(String, Address, Int64)
Increases (or decreases if a negative delta
is given)
the tx nonce counter for signer
.
Declaration
public override void IncreaseTxNonce(string namespace, Address signer, long delta = 1L)
Parameters
Type |
Name |
Description |
String |
namespace |
The namespace to increase
Transaction<T> nonce.
|
Address |
signer |
The address of the account to increase tx nonce.
|
Int64 |
delta |
How many to incrase the counter. A negative number decreases
the counter. 1 by default.
|
Overrides
See Also
|
Improve this Doc
View Source
IndexBlockHash(String, Int64)
Declaration
public override HashDigest<SHA256>? IndexBlockHash(string namespace, long index)
Parameters
Returns
Overrides
|
Improve this Doc
View Source
IterateBlockHashes()
Declaration
public override IEnumerable<HashDigest<SHA256>> IterateBlockHashes()
Returns
Overrides
|
Improve this Doc
View Source
IterateIndex(String)
Declaration
public override IEnumerable<HashDigest<SHA256>> IterateIndex(string namespace)
Parameters
Type |
Name |
Description |
String |
namespace |
|
Returns
Overrides
|
Improve this Doc
View Source
IterateStagedTransactionIds(Boolean)
Declaration
public override IEnumerable<TxId> IterateStagedTransactionIds(bool toBroadcast)
Parameters
Type |
Name |
Description |
Boolean |
toBroadcast |
Whether to iterate only the TxIds set to
broadcast.
|
Returns
Overrides
|
Improve this Doc
View Source
IterateStateReferences(String, Address)
Gets pairs of a state reference and a corresponding Index of
the requested address
in the specified namespace
.
Declaration
public override IEnumerable<Tuple<HashDigest<SHA256>, long>> IterateStateReferences(string namespace, Address address)
Parameters
Type |
Name |
Description |
String |
namespace |
The chain namespace.
|
Address |
address |
The Address to get state references.
|
Returns
Type |
Description |
IEnumerable<Tuple<HashDigest<SHA256>, Int64>> |
Ordered pairs of a state reference and a corresponding
Index. The highest index (i.e., the closest to the tip) go last,
and the lowest index (i.e., the closest to the genesis) go first.
|
Overrides
See Also
|
Improve this Doc
View Source
IterateTransactionIds()
Declaration
public override IEnumerable<TxId> IterateTransactionIds()
Returns
Overrides
|
Improve this Doc
View Source
ListAddresses(String)
Lists all addresses that have ever had states.
Declaration
public override IEnumerable<Address> ListAddresses(string namespace)
Parameters
Type |
Name |
Description |
String |
namespace |
The namespace to list addresses.
|
Returns
Type |
Description |
IEnumerable<Address> |
All addresses in an arbitrary order. The order might
be vary for each call.
|
Overrides
|
Improve this Doc
View Source
ListNamespaces()
Lists existing namespaces.
Declaration
public override IEnumerable<string> ListNamespaces()
Returns
Overrides
|
Improve this Doc
View Source
ListTxNonces(String)
Declaration
public override IEnumerable<KeyValuePair<Address, long>> ListTxNonces(string namespace)
Parameters
Returns
Overrides
See Also
|
Improve this Doc
View Source
PutBlock<T>(Block<T>)
Declaration
public override void PutBlock<T>(Block<T> block)
where T : IAction, new()
Parameters
Type |
Name |
Description |
Block<T> |
block |
|
Type Parameters
Overrides
Libplanet.Store.BaseStore.PutBlock<T>(Libplanet.Blocks.Block<T>)
|
Improve this Doc
View Source
PutTransaction<T>(Transaction<T>)
Declaration
public override void PutTransaction<T>(Transaction<T> tx)
where T : IAction, new()
Parameters
Type Parameters
Overrides
Libplanet.Store.BaseStore.PutTransaction<T>(Libplanet.Tx.Transaction<T>)
|
Improve this Doc
View Source
SetBlockStates(HashDigest<SHA256>, AddressStateMap)
Declaration
public override void SetBlockStates(HashDigest<SHA256> blockHash, AddressStateMap states)
Parameters
Overrides
|
Improve this Doc
View Source
StageTransactionIds(IDictionary<TxId, Boolean>)
Declaration
public override void StageTransactionIds(IDictionary<TxId, bool> txids)
Parameters
Overrides
|
Improve this Doc
View Source
StoreStateReference<T>(String, IImmutableSet<Address>, Block<T>)
Declaration
public override void StoreStateReference<T>(string namespace, IImmutableSet<Address> addresses, Block<T> block)
where T : IAction, new()
Parameters
Type Parameters
Overrides
Libplanet.Store.BaseStore.StoreStateReference<T>(System.String, System.Collections.Immutable.IImmutableSet<Libplanet.Address>, Libplanet.Blocks.Block<T>)
|
Improve this Doc
View Source
UnstageTransactionIds(ISet<TxId>)
Declaration
public override void UnstageTransactionIds(ISet<TxId> txids)
Parameters
Overrides
Implements
Extension Methods