* Vault Query Service API implementation using JPA Hibernate Added queryBy(QueryCriteria) Vault API and Junit tests. Minor cosmetic API changes following rebase. Fixes following rebase from master Upgraded to requery 1.3.1 WIP - removed 'latestOnly' from LinearStateQueryCriteria WIP - CommercialSchemas V2, V3, V4 testing WIP - sort out generics handling. WIP - most general queries completed. WIP - join queries, contractStateType derivation WIP - refactoring Requery WIP - refactored VaultService to extract a VaultQueryService interface (and associated Requery implementation). WIP - HibernateVaultQuery implementation WIP - Re-structured all Schema definitions (requery/jpa) and make Hibernate Config reusable. WIP - Multi-version schema testing, hibernate query testing. WIP - Custom Criteria and Fungible Criteria impl & testing. WIP - Kotlin Comparable Generics error WIP - Party queries all working now WIP - All VaultQueryTests now working (refactored for AND / OR composition) WIP - added schema registration in CordaPluginRegistry to enable custom vault queries on arbitrary schemas. WIP - added new default Sort NULL order to be NONE + added lots more tests for Logical Operator testing. Mostly identity fixes following rebase from master. Exception handling and public API cleanup in prep for PR. Additional tests for Logical Operators; additional tests for NULLS sort ordering; additional logging; Additional parser to handle Nullable attribute values; added Unary and Collection logical expression handlers Lots of cleanup: participants; trackBy interfaces; additional fungible tests; parser cleanup and improved support for Java Removed all traces of Requery implementation. Further minor cleanup and Junit test fix. Final identity and schema related identity clean-up. Revert unrelated changes. PR review updates: blank lines, isRelevant. Fixed wiring of updatesPublisher for dynamic trackBy queries. PR review changes: multi-versioned schema samples and associated dummy contracts moved to test packages. Fixed problem with sorted queries (not specifying any filterable criteria). PR review: minor updates to address RP comments. Typesafe custom query criteria Cleanup: remove redundant tests. Further clean-up and make all Java test work successfully. Remove debugging print statements. Rebased from master - changes required due to DealState module change. fixed broken assertion caused by DealState ordering change (different package) Fixed transaction demarcation issue causing "java.lang.IllegalStateException: Was not expecting to find existing database transaction on current strand" trackBy() now filters on ContractType and StateStatus (CONSUMED, UNCONSUMED, ALL) Added tests to exercise RPCOps trackBy and queryBy (RPC smoke test and CordaRPCOps) Added additional @CordaSerializable annotations. Updated documentation and referenced sample code. Added deprecation annotations. Re-added missing deprecation annotation. Hibernate debug logging is now configurable and disabled by default. Introduced common Sort attributes based on the node schemas. Completely removed NULL_HANDLING sort parameter as this is not supported in JPA. Revisited and fixed usage of @CordaSerializable. * Minor fix following rebase from master. * Remove blank line as per RP PR feedback request. * Minor Java documentation and example clean-up. * Disable BFT Notary Service tests.
19 KiB
Vault Query
Corda has been architected from the ground up to encourage usage of industry standard, proven query frameworks and libraries for accessing RDBMS backed transactional stores (including the Vault).
Corda provides a number of flexible query mechanisms for accessing the Vault:
- Vault Query API
- custom JPA/JPQL queries
- custom 3rd party Data Access frameworks such as Spring Data
The majority of query requirements can be satisfied by using the Vault Query API, which is exposed via the VaultQueryService
for use directly by flows:
../../core/src/main/kotlin/net/corda/core/node/services/Services.kt
and via CordaRPCOps
for use by RPC client applications:
../../core/src/main/kotlin/net/corda/core/messaging/CordaRPCOps.kt
../../core/src/main/kotlin/net/corda/core/messaging/CordaRPCOps.kt
Java helper methods are also provided with default values for arguments:
../../core/src/main/kotlin/net/corda/core/messaging/CordaRPCOps.kt
The API provides both static (snapshot) and dynamic (snapshot with streaming updates) methods for a defined set of filter criteria.
- Use
queryBy
to obtain a only current snapshot of data (for a givenQueryCriteria
) - Use
trackBy
to obtain a both a current snapshot and a future stream of updates (for a givenQueryCriteria
)
Note
Streaming updates are only filtered based on contract type and state status (UNCONSUMED, CONSUMED, ALL)
Simple pagination (page number and size) and sorting (directional ordering using standard or custom property attributes) is also specifiable. Defaults are defined for Paging (pageNumber = 0, pageSize = 200) and Sorting (direction = ASC).
The QueryCriteria
interface provides a flexible mechanism for specifying different filtering criteria, including and/or composition and a rich set of operators to include: binary logical (AND, OR), comparison (LESS_THAN, LESS_THAN_OR_EQUAL, GREATER_THAN, GREATER_THAN_OR_EQUAL), equality (EQUAL, NOT_EQUAL), likeness (LIKE, NOT_LIKE), nullability (IS_NULL, NOT_NULL), and collection based (IN, NOT_IN).
There are four implementations of this interface which can be chained together to define advanced filters.
VaultQueryCriteria
provides filterable criteria on attributes within the Vault states table: status (UNCONSUMED, CONSUMED), state reference(s), contract state type(s), notaries, soft locked states, timestamps (RECORDED, CONSUMED).Note
Sensible defaults are defined for frequently used attributes (status = UNCONSUMED, includeSoftlockedStates = true).
FungibleAssetQueryCriteria
provides filterable criteria on attributes defined in the Corda CoreFungibleAsset
contract state interface, used to represent assets that are fungible, countable and issued by a specific party (eg.Cash.State
andCommodityContract.State
in the Corda finance module). Filterable attributes include: participants(s), owner(s), quantity, issuer party(s) and issuer reference(s).Note
All contract states that extend the
FungibleAsset
now automatically persist that interfaces common state attributes to the vault_fungible_states table.
LinearStateQueryCriteria
provides filterable criteria on attributes defined in the Corda CoreLinearState
andDealState
contract state interfaces, used to represent entities that continuously supercede themselves, all of which share the same linearId (eg. trade entity states such as theIRSState
defined in the SIMM valuation demo). Filterable attributes include: participant(s), linearId(s), dealRef(s).Note
All contract states that extend
LinearState
orDealState
now automatically persist those interfaces common state attributes to the vault_linear_states table.
VaultCustomQueryCriteria
provides the means to specify one or many arbitrary expressions on attributes defined by a custom contract state that implements its own schema as described in the api-persistence documentation and associated examples. Custom criteria expressions are expressed using one of several type-safeCriteriaExpression
: BinaryLogical, Not, ColumnPredicateExpression. The ColumnPredicateExpression allows for specification arbitrary criteria using the previously enumerated operator types. Furthermore, a rich DSL is provided to enable simple construction of custom criteria using any combination ofColumnPredicate
.Note
It is a requirement to register any custom contract schemas to be used in Vault Custom queries in the associated CordaPluginRegistry configuration for the respective CorDapp using the
requiredSchemas
configuration field (which specifies a set of MappedSchema)An example is illustrated here:
../../node/src/test/kotlin/net/corda/node/services/vault/VaultQueryTests.kt
All QueryCriteria
implementations are composable using and
and or
operators, as also illustrated above.
Note
Custom contract states that implement the Queryable
interface may now extend common schemas types FungiblePersistentState
or, LinearPersistentState
. Previously, all custom contracts extended the root PersistentState
class and defined repeated mappings of FungibleAsset
and LinearState
attributes. See SampleCashSchemaV2
and DummyLinearStateSchemaV2
as examples.
Examples of these QueryCriteria
objects are presented below for Kotlin and Java.
Note
When specifying the Contract Type as a parameterised type to the QueryCriteria in Kotlin, queries now include all concrete implementations of that type if this is an interface. Previously, it was only possible to query on Concrete types (or the universe of all Contract States).
The Vault Query API leverages the rich semantics of the underlying JPA Hibernate based Persistence framework adopted by Corda.
Note
Permissioning at the database level will be enforced at a later date to ensure authenticated, role-based, read-only access to underlying Corda tables.
Note
API's now provide ease of use calling semantics from both Java and Kotlin. However, it should be noted that Java custom queries are significantly more verbose due to the use of reflection fields to reference schema attribute types.
An example of a custom query in Java is illustrated here:
../../node/src/test/java/net/corda/node/services/vault/VaultQueryJavaTests.java
Note
Current queries by Party
specify the AbstractParty
which may be concrete or anonymous. In the later case, where an anonymous party does not have an associated X500Name, then no query results will ever be produced. For performance reasons, queries do not use PublicKey as search criteria. Ongoing design work on identity manangement is likely to enhance identity based queries (including composite key criteria selection).
Example usage
Kotlin
General snapshot queries using VaultQueryCriteria
Query for all unconsumed states (simplest query possible):
../../node/src/test/kotlin/net/corda/node/services/vault/VaultQueryTests.kt
Query for unconsumed states for some state references:
../../node/src/test/kotlin/net/corda/node/services/vault/VaultQueryTests.kt
Query for unconsumed states for several contract state types:
../../node/src/test/kotlin/net/corda/node/services/vault/VaultQueryTests.kt
Query for unconsumed states for a given notary:
../../node/src/test/kotlin/net/corda/node/services/vault/VaultQueryTests.kt
Note
We are using the notaries X500Name as our search identifier.
Query for unconsumed states for a given set of participants:
../../node/src/test/kotlin/net/corda/node/services/vault/VaultQueryTests.kt
Query for unconsumed states recorded between two time intervals:
../../node/src/test/kotlin/net/corda/node/services/vault/VaultQueryTests.kt
Note
This example illustrates usage of a Between ColumnPredicate.
Query for all states with pagination specification (10 results per page):
../../node/src/test/kotlin/net/corda/node/services/vault/VaultQueryTests.kt
Note
The result set metadata field totalStatesAvailable allows you to further paginate accordingly.
LinearState and DealState queries using LinearStateQueryCriteria
Query for unconsumed linear states for given linear ids:
../../node/src/test/kotlin/net/corda/node/services/vault/VaultQueryTests.kt
This example was previously executed using the deprecated extension method:
../../node/src/test/kotlin/net/corda/node/services/vault/VaultQueryTests.kt
Query for all linear states associated with a linear id:
../../node/src/test/kotlin/net/corda/node/services/vault/VaultQueryTests.kt
This example was previously executed using the deprecated method:
../../node/src/test/kotlin/net/corda/node/services/vault/VaultQueryTests.kt
Query for unconsumed deal states with deals references:
../../node/src/test/kotlin/net/corda/node/services/vault/VaultQueryTests.kt
Query for unconsumed deal states with deals parties:
../../node/src/test/kotlin/net/corda/node/services/vault/VaultQueryTests.kt
FungibleAsset and DealState queries using FungibleAssetQueryCriteria
Query for fungible assets for a given currency:
../../node/src/test/kotlin/net/corda/node/services/vault/VaultQueryTests.kt
Query for fungible assets for a minimum quantity:
../../node/src/test/kotlin/net/corda/node/services/vault/VaultQueryTests.kt
Note
This example uses the builder DSL.
Query for fungible assets for a specifc issuer party:
../../node/src/test/kotlin/net/corda/node/services/vault/VaultQueryTests.kt
Dynamic queries (also using VaultQueryCriteria
) are an extension to the snapshot queries by returning an additional QueryResults
return type in the form of an Observable<Vault.Update>
. Refer to ReactiveX Observable for a detailed understanding and usage of this type.
Track unconsumed cash states:
../../node/src/test/kotlin/net/corda/node/services/vault/VaultQueryTests.kt
Track unconsumed linear states:
../../node/src/test/kotlin/net/corda/node/services/vault/VaultQueryTests.kt
Note
This will return both Deal and Linear states.
Track unconsumed deal states:
../../node/src/test/kotlin/net/corda/node/services/vault/VaultQueryTests.kt
Note
This will return only Deal states.
Java examples
Query for all unconsumed linear states:
../../node/src/test/java/net/corda/node/services/vault/VaultQueryJavaTests.java
This example was previously executed using the deprecated method:
../../node/src/test/java/net/corda/node/services/vault/VaultQueryJavaTests.java
Query for all consumed cash states:
../../node/src/test/java/net/corda/node/services/vault/VaultQueryJavaTests.java
This example was previously executed using the deprecated method:
../../node/src/test/java/net/corda/node/services/vault/VaultQueryJavaTests.java
Query for consumed deal states or linear ids, specify a paging specification and sort by unique identifier:
../../node/src/test/java/net/corda/node/services/vault/VaultQueryJavaTests.java
Track unconsumed cash states:
../../node/src/test/java/net/corda/node/services/vault/VaultQueryJavaTests.java
Track unconsumed deal states or linear states (with snapshot including specification of paging and sorting by unique identifier):
../../node/src/test/java/net/corda/node/services/vault/VaultQueryJavaTests.java
Other use case scenarios
For advanced use cases that require sophisticated pagination, sorting, grouping, and aggregation functions, it is recommended that the CorDapp developer utilise one of the many proven frameworks that ship with this capability out of the box. Namely, implementations of JPQL (JPA Query Language) such as Hibernate for advanced SQL access, and Spring Data for advanced pagination and ordering constructs.
The Corda Tutorials provide examples satisfying these additional Use Cases:
- Template / Tutorial CorDapp service using Vault API Custom Query to access attributes of IOU State
- Template / Tutorial CorDapp service query extension executing Named Queries via JPQL
- Advanced pagination queries using Spring Data JPA
Upgrading from previous releases
Here follows a selection of the most common upgrade scenarios:
ServiceHub usage to obtain Unconsumed states for a given contract state type
Previously:
val yoStates = b.vault.unconsumedStates<Yo.State>()
This query returned an Iterable<StateAndRef<T>>
Now:
val yoStates = b.vault.queryBy<Yo.State>().states
The query returns a Vault.Page
result containing:
- states as a
List<StateAndRef<T : ContractState>>
sized according to the default Page specification ofDEFAULT_PAGE_NUM
(0) andDEFAULT_PAGE_SIZE
(200).- states metadata as a
List<Vault.StateMetadata>
containing Vault State metadata held in the Vault states table.- the
PagingSpecification
used in the query- a
total
number of results available. This value can be used issue subsequent queries with appropriately specifiedPageSpecification
(according to your paging needs and/or maximum memory capacity for holding large data sets). Note it is your responsibility to manage page numbers and sizes.
ServiceHub usage obtaining linear heads for a given contract state type
Previously:
val iouStates = serviceHub.vaultService.linearHeadsOfType<IOUState>()
val iouToSettle = iouStates[linearId] ?: throw Exception("IOUState with linearId $linearId not found.")
Now:
val criteria = QueryCriteria.LinearStateQueryCriteria(linearId = listOf(linearId))
val iouStates = serviceHub.vaultService.queryBy<IOUState>(criteria).states
val iouToSettle = iouStates.singleOrNull() ?: throw Exception("IOUState with linearId $linearId not found.")
RPC usage was limited to using the
vaultAndUpdates
RPC method, which returned a snapshot and streaming updates as an Observable. In many cases, queries were not interested in the streaming updates.Previously:
val iouStates = services.vaultAndUpdates().first.filter { it.state.data is IOUState }
Now:
val iouStates = services.vaultQueryBy<IOUState>()