2015-12-14 17:22:21 +00:00
|
|
|
.. highlight:: kotlin
|
|
|
|
.. raw:: html
|
|
|
|
|
|
|
|
<script type="text/javascript" src="_static/jquery.js"></script>
|
|
|
|
<script type="text/javascript" src="_static/codesets.js"></script>
|
|
|
|
|
2016-11-21 17:11:51 +00:00
|
|
|
Writing flows
|
|
|
|
=============
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-11-21 17:11:51 +00:00
|
|
|
This article explains our approach to modelling financial flows in code. It explains how the
|
2016-11-22 16:30:17 +00:00
|
|
|
platform's state machine framework is used, and takes you through the code for a simple 2-party asset trading flow
|
2015-12-14 17:22:21 +00:00
|
|
|
which is included in the source.
|
|
|
|
|
|
|
|
Introduction
|
|
|
|
------------
|
|
|
|
|
|
|
|
Shared distributed ledgers are interesting because they allow many different, mutually distrusting parties to
|
|
|
|
share a single source of truth about the ownership of assets. Digitally signed transactions are used to update that
|
|
|
|
shared ledger, and transactions may alter many states simultaneously and atomically.
|
|
|
|
|
|
|
|
Blockchain systems such as Bitcoin support the idea of building up a finished, signed transaction by passing around
|
|
|
|
partially signed invalid transactions outside of the main network, and by doing this you can implement
|
|
|
|
*delivery versus payment* such that there is no chance of settlement failure, because the movement of cash and the
|
2016-11-22 16:30:17 +00:00
|
|
|
traded asset are performed atomically by the same transaction. To perform such a trade involves a multi-step flow
|
2015-12-14 17:22:21 +00:00
|
|
|
in which messages are passed back and forth privately between parties, checked, signed and so on.
|
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
Despite how useful these flows are, platforms such as Bitcoin and Ethereum do not assist the developer with the rather
|
2015-12-14 17:22:21 +00:00
|
|
|
tricky task of actually building them. That is unfortunate. There are many awkward problems in their implementation
|
|
|
|
that a good platform would take care of for you, problems like:
|
|
|
|
|
|
|
|
* Avoiding "callback hell" in which code that should ideally be sequential is turned into an unreadable mess due to the
|
2016-11-22 16:30:17 +00:00
|
|
|
desire to avoid using up a thread for every flow instantiation.
|
|
|
|
* Surviving node shutdowns/restarts that may occur in the middle of the flow without complicating things. This
|
|
|
|
implies that the state of the flow must be persisted to disk.
|
2015-12-14 17:22:21 +00:00
|
|
|
* Error handling.
|
|
|
|
* Message routing.
|
|
|
|
* Serialisation.
|
|
|
|
* Catching type errors, in which the developer gets temporarily confused and expects to receive/send one type of message
|
|
|
|
when actually they need to receive/send another.
|
2016-11-22 16:30:17 +00:00
|
|
|
* Unit testing of the finished flow.
|
2015-12-14 17:22:21 +00:00
|
|
|
|
|
|
|
Actor frameworks can solve some of the above but they are often tightly bound to a particular messaging layer, and
|
|
|
|
we would like to keep a clean separation. Additionally, they are typically not type safe, and don't make persistence or
|
|
|
|
writing sequential code much easier.
|
|
|
|
|
2016-01-13 12:54:10 +00:00
|
|
|
To put these problems in perspective, the *payment channel protocol* in the bitcoinj library, which allows bitcoins to
|
2015-12-14 17:22:21 +00:00
|
|
|
be temporarily moved off-chain and traded at high speed between two parties in private, consists of about 7000 lines of
|
|
|
|
Java and took over a month of full time work to develop. Most of that code is concerned with the details of persistence,
|
|
|
|
message passing, lifecycle management, error handling and callback management. Because the business logic is quite
|
|
|
|
spread out the code can be difficult to read and debug.
|
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
As small contract-specific trading flows are a common occurence in finance, we provide a framework for the
|
2015-12-14 17:22:21 +00:00
|
|
|
construction of them that automatically handles many of the concerns outlined above.
|
|
|
|
|
|
|
|
Theory
|
|
|
|
------
|
|
|
|
|
|
|
|
A *continuation* is a suspended stack frame stored in a regular object that can be passed around, serialised,
|
2016-01-13 12:54:10 +00:00
|
|
|
unserialised and resumed from where it was suspended. This concept is sometimes referred to as "fibers". This may
|
|
|
|
sound abstract but don't worry, the examples below will make it clearer. The JVM does not natively support
|
|
|
|
continuations, so we implement them using a library called Quasar which works through behind-the-scenes
|
|
|
|
bytecode rewriting. You don't have to know how this works to benefit from it, however.
|
2015-12-14 17:22:21 +00:00
|
|
|
|
|
|
|
We use continuations for the following reasons:
|
|
|
|
|
|
|
|
* It allows us to write code that is free of callbacks, that looks like ordinary sequential code.
|
|
|
|
* A suspended continuation takes far less memory than a suspended thread. It can be as low as a few hundred bytes.
|
2016-02-18 16:47:05 +00:00
|
|
|
In contrast a suspended Java thread stack can easily be 1mb in size.
|
2015-12-14 17:22:21 +00:00
|
|
|
* It frees the developer from thinking (much) about persistence and serialisation.
|
|
|
|
|
|
|
|
A *state machine* is a piece of code that moves through various *states*. These are not the same as states in the data
|
|
|
|
model (that represent facts about the world on the ledger), but rather indicate different stages in the progression
|
2016-11-22 16:30:17 +00:00
|
|
|
of a multi-stage flow. Typically writing a state machine would require the use of a big switch statement and some
|
2015-12-14 17:22:21 +00:00
|
|
|
explicit variables to keep track of where you're up to. The use of continuations avoids this hassle.
|
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
A two party trading flow
|
|
|
|
------------------------
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
We would like to implement the "hello world" of shared transaction building flows: a seller wishes to sell some
|
2015-12-14 17:22:21 +00:00
|
|
|
*asset* (e.g. some commercial paper) in return for *cash*. The buyer wishes to purchase the asset using his cash. They
|
|
|
|
want the trade to be atomic so neither side is exposed to the risk of settlement failure. We assume that the buyer
|
|
|
|
and seller have found each other and arranged the details on some exchange, or over the counter. The details of how
|
|
|
|
the trade is arranged isn't covered in this article.
|
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
Our flow has two parties (B and S for buyer and seller) and will proceed as follows:
|
2015-12-14 17:22:21 +00:00
|
|
|
|
|
|
|
1. S sends a ``StateAndRef`` pointing to the state they want to sell to B, along with info about the price they require
|
|
|
|
B to pay.
|
2016-02-12 14:42:25 +00:00
|
|
|
2. B sends to S a ``SignedTransaction`` that includes the state as input, B's cash as input, the state with the new
|
2015-12-14 17:22:21 +00:00
|
|
|
owner key as output, and any change cash as output. It contains a single signature from B but isn't valid because
|
|
|
|
it lacks a signature from S authorising movement of the asset.
|
2016-02-12 14:42:25 +00:00
|
|
|
3. S signs it and hands the now finalised ``SignedTransaction`` back to B.
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-11-21 17:11:51 +00:00
|
|
|
You can find the implementation of this flow in the file ``finance/src/main/kotlin/net/corda/flows/TwoPartyTradeFlow.kt``.
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
Assuming no malicious termination, they both end the flow being in posession of a valid, signed transaction that
|
2015-12-14 17:22:21 +00:00
|
|
|
represents an atomic asset swap.
|
|
|
|
|
|
|
|
Note that it's the *seller* who initiates contact with the buyer, not vice-versa as you might imagine.
|
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
We start by defining a wrapper that namespaces the flow code, two functions to start either the buy or sell side
|
|
|
|
of the flow, and two classes that will contain the flow definition. We also pick what data will be used by
|
2016-01-13 12:54:10 +00:00
|
|
|
each side.
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-08-24 13:38:43 +00:00
|
|
|
.. note:: The code samples in this tutorial are only available in Kotlin, but you can use any JVM language to
|
|
|
|
write them and the approach is the same.
|
|
|
|
|
2015-12-14 17:22:21 +00:00
|
|
|
.. container:: codeset
|
|
|
|
|
|
|
|
.. sourcecode:: kotlin
|
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
object TwoPartyTradeFlow {
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-08-24 13:38:43 +00:00
|
|
|
class UnacceptablePriceException(val givenPrice: Amount<Currency>) : Exception("Unacceptable price: $givenPrice")
|
|
|
|
class AssetMismatchException(val expectedTypeName: String, val typeName: String) : Exception() {
|
|
|
|
override fun toString() = "The submitted asset didn't match the expected type: $expectedTypeName vs $typeName"
|
2016-01-13 12:54:10 +00:00
|
|
|
}
|
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
// This object is serialised to the network and is the first flow message the seller sends to the buyer.
|
2016-09-27 17:25:26 +00:00
|
|
|
data class SellerTradeInfo(
|
2016-02-09 14:11:17 +00:00
|
|
|
val assetForSale: StateAndRef<OwnableState>,
|
2016-09-27 17:25:26 +00:00
|
|
|
val price: Amount<Currency>,
|
2016-11-21 17:11:51 +00:00
|
|
|
val sellerOwnerKey: CompositeKey
|
2016-02-09 14:11:17 +00:00
|
|
|
)
|
|
|
|
|
2016-09-27 17:25:26 +00:00
|
|
|
data class SignaturesFromSeller(val sellerSig: DigitalSignature.WithKey,
|
|
|
|
val notarySig: DigitalSignature.LegallyIdentifiable)
|
2016-02-09 14:11:17 +00:00
|
|
|
|
2016-11-21 17:11:51 +00:00
|
|
|
open class Seller(val otherParty: Party,
|
2016-08-24 13:38:43 +00:00
|
|
|
val notaryNode: NodeInfo,
|
|
|
|
val assetToSell: StateAndRef<OwnableState>,
|
|
|
|
val price: Amount<Currency>,
|
|
|
|
val myKeyPair: KeyPair,
|
2016-11-22 16:30:17 +00:00
|
|
|
override val progressTracker: ProgressTracker = Seller.tracker()) : FlowLogic<SignedTransaction>() {
|
2016-01-13 12:54:10 +00:00
|
|
|
@Suspendable
|
2016-02-12 14:49:18 +00:00
|
|
|
override fun call(): SignedTransaction {
|
2016-01-13 12:54:10 +00:00
|
|
|
TODO()
|
|
|
|
}
|
|
|
|
}
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-11-21 17:11:51 +00:00
|
|
|
open class Buyer(val otherParty: Party,
|
2016-08-24 13:38:43 +00:00
|
|
|
val notary: Party,
|
|
|
|
val acceptablePrice: Amount<Currency>,
|
2016-11-22 16:30:17 +00:00
|
|
|
val typeToBuy: Class<out OwnableState>) : FlowLogic<SignedTransaction>() {
|
2016-01-13 12:54:10 +00:00
|
|
|
@Suspendable
|
2016-02-12 14:49:18 +00:00
|
|
|
override fun call(): SignedTransaction {
|
2016-01-13 12:54:10 +00:00
|
|
|
TODO()
|
2015-12-14 17:22:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
This code defines several classes nested inside the main ``TwoPartyTradeFlow`` singleton. Some of the classes are
|
|
|
|
simply flow messages or exceptions. The other two represent the buyer and seller side of the flow.
|
2016-01-13 12:54:10 +00:00
|
|
|
|
|
|
|
Going through the data needed to become a seller, we have:
|
|
|
|
|
2016-11-21 17:11:51 +00:00
|
|
|
- ``otherParty: Party`` - the party with which you are trading.
|
2016-08-24 13:38:43 +00:00
|
|
|
- ``notaryNode: NodeInfo`` - the entry in the network map for the chosen notary. See ":doc:`consensus`" for more
|
|
|
|
information on notaries.
|
2016-01-13 12:54:10 +00:00
|
|
|
- ``assetToSell: StateAndRef<OwnableState>`` - a pointer to the ledger entry that represents the thing being sold.
|
2016-08-24 13:38:43 +00:00
|
|
|
- ``price: Amount<Currency>`` - the agreed on price that the asset is being sold for (without an issuer constraint).
|
2016-01-13 12:54:10 +00:00
|
|
|
- ``myKeyPair: KeyPair`` - the key pair that controls the asset being sold. It will be used to sign the transaction.
|
2015-12-15 12:16:13 +00:00
|
|
|
|
2016-01-13 12:54:10 +00:00
|
|
|
And for the buyer:
|
|
|
|
|
2016-08-24 13:38:43 +00:00
|
|
|
- ``acceptablePrice: Amount<Currency>`` - the price that was agreed upon out of band. If the seller specifies
|
|
|
|
a price less than or equal to this, then the trade will go ahead.
|
2016-01-13 12:54:10 +00:00
|
|
|
- ``typeToBuy: Class<out OwnableState>`` - the type of state that is being purchased. This is used to check that the
|
2016-11-22 16:30:17 +00:00
|
|
|
sell side of the flow isn't trying to sell us the wrong thing, whether by accident or on purpose.
|
2016-01-13 12:54:10 +00:00
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
Alright, so using this flow shouldn't be too hard: in the simplest case we can just create a Buyer or Seller
|
|
|
|
with the details of the trade, depending on who we are. We then have to start the flow in some way. Just
|
|
|
|
calling the ``call`` function ourselves won't work: instead we need to ask the framework to start the flow for
|
2016-08-24 13:38:43 +00:00
|
|
|
us. More on that in a moment.
|
2016-01-13 12:54:10 +00:00
|
|
|
|
2016-08-26 11:05:26 +00:00
|
|
|
Suspendable functions
|
|
|
|
---------------------
|
2016-01-13 12:54:10 +00:00
|
|
|
|
2016-08-26 11:05:26 +00:00
|
|
|
The ``call`` function of the buyer/seller classes is marked with the ``@Suspendable`` annotation. What does this mean?
|
2016-01-13 12:54:10 +00:00
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
As mentioned above, our flow framework will at points suspend the code and serialise it to disk. For this to work,
|
2016-01-13 12:54:10 +00:00
|
|
|
any methods on the call stack must have been pre-marked as ``@Suspendable`` so the bytecode rewriter knows to modify
|
2016-11-22 16:30:17 +00:00
|
|
|
the underlying code to support this new feature. A flow is suspended when calling either ``receive``, ``send`` or
|
2016-01-13 12:54:10 +00:00
|
|
|
``sendAndReceive`` which we will learn more about below. For now, just be aware that when one of these methods is
|
|
|
|
invoked, all methods on the stack must have been marked. If you forget, then in the unit test environment you will
|
|
|
|
get a useful error message telling you which methods you didn't mark. The fix is simple enough: just add the annotation
|
|
|
|
and try again.
|
|
|
|
|
2016-08-24 13:38:43 +00:00
|
|
|
.. note:: Java 9 is likely to remove this pre-marking requirement completely.
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
Starting your flow
|
|
|
|
------------------
|
2016-08-24 13:38:43 +00:00
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
The ``StateMachineManager`` is the class responsible for taking care of all running flows in a node. It knows
|
2016-08-24 13:38:43 +00:00
|
|
|
how to register handlers with the messaging system (see ":doc:`messaging`") and iterate the right state machine
|
|
|
|
when messages arrive. It provides the send/receive/sendAndReceive calls that let the code request network
|
|
|
|
interaction and it will save/restore serialised versions of the fiber at the right times.
|
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
Flows can be invoked in several ways. For instance, they can be triggered by scheduled events,
|
2016-11-21 17:11:51 +00:00
|
|
|
see ":doc:`event-scheduling`" to learn more about this. Or they can be triggered directly via the Java-level node RPC
|
|
|
|
APIs from your app code.
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-11-21 17:11:51 +00:00
|
|
|
You request a flow to be invoked by using the ``CordaRPCOps.startFlowDynamic`` method. This takes a
|
2016-11-22 16:30:17 +00:00
|
|
|
Java reflection ``Class`` object that describes the flow class to use (in this case, either ``Buyer`` or ``Seller``).
|
|
|
|
It also takes a set of arguments to pass to the constructor. Because it's possible for flow invocations to
|
2016-08-24 13:38:43 +00:00
|
|
|
be requested by untrusted code (e.g. a state that you have been sent), the types that can be passed into the
|
2016-11-21 17:11:51 +00:00
|
|
|
flow are checked against a whitelist, which can be extended by apps themselves at load time. There are also a series
|
|
|
|
of inlined extension functions of the form ``CordaRPCOps.startFlow`` which help with invoking flows in a type
|
|
|
|
safe manner.
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-11-21 17:11:51 +00:00
|
|
|
The process of starting a flow returns a ``FlowHandle`` that you can use to either observe
|
|
|
|
the result, observe its progress and which also contains a permanent identifier for the invoked flow in the form
|
|
|
|
of the ``StateMachineRunId``.
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-11-21 17:11:51 +00:00
|
|
|
In a two party flow only one side is to be manually started using ``CordaRPCOps.startFlow``. The other side
|
|
|
|
has to be registered by its node to respond to the initiating flow via ``PluginServiceHub.registerFlowInitiator``.
|
2016-11-22 16:30:17 +00:00
|
|
|
In our example it doesn't matter which flow is the initiator and which is the initiated. For example, if we are to
|
2016-09-27 17:25:26 +00:00
|
|
|
take the seller as the initiator then we would register the buyer as such:
|
|
|
|
|
|
|
|
.. container:: codeset
|
|
|
|
|
|
|
|
.. sourcecode:: kotlin
|
|
|
|
|
2016-11-21 17:11:51 +00:00
|
|
|
val services: PluginServiceHub = TODO()
|
2016-11-22 16:30:17 +00:00
|
|
|
services.registerFlowInitiator(Seller::class) { otherParty ->
|
2016-09-27 17:25:26 +00:00
|
|
|
val notary = services.networkMapCache.notaryNodes[0]
|
|
|
|
val acceptablePrice = TODO()
|
|
|
|
val typeToBuy = TODO()
|
|
|
|
Buyer(otherParty, notary, acceptablePrice, typeToBuy)
|
|
|
|
}
|
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
This is telling the buyer node to fire up an instance of ``Buyer`` (the code in the lambda) when the initiating flow
|
2016-09-27 17:25:26 +00:00
|
|
|
is a seller (``Seller::class``).
|
|
|
|
|
2015-12-14 17:22:21 +00:00
|
|
|
Implementing the seller
|
|
|
|
-----------------------
|
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
Let's implement the ``Seller.call`` method. This will be run when the flow is invoked.
|
2015-12-14 17:22:21 +00:00
|
|
|
|
|
|
|
.. container:: codeset
|
|
|
|
|
|
|
|
.. sourcecode:: kotlin
|
|
|
|
|
2016-08-24 13:38:43 +00:00
|
|
|
@Suspendable
|
|
|
|
override fun call(): SignedTransaction {
|
|
|
|
val partialTX: SignedTransaction = receiveAndCheckProposedTransaction()
|
2016-10-07 16:57:35 +00:00
|
|
|
val ourSignature: DigitalSignature.WithKey = computeOurSignature(partialTX)
|
|
|
|
val allPartySignedTx = partialTX + ourSignature
|
|
|
|
val notarySignature = getNotarySignature(allPartySignedTx)
|
|
|
|
val result: SignedTransaction = sendSignatures(allPartySignedTx, ourSignature, notarySignature)
|
2016-08-24 13:38:43 +00:00
|
|
|
return result
|
|
|
|
}
|
2016-02-09 14:11:17 +00:00
|
|
|
|
|
|
|
Here we see the outline of the procedure. We receive a proposed trade transaction from the buyer and check that it's
|
2016-10-07 16:57:35 +00:00
|
|
|
valid. The buyer has already attached their signature before sending it. Then we calculate and attach our own signature so that the transaction is
|
|
|
|
now signed by both the buyer and the seller. We then send this request to a notary to assert with another signature that the
|
2016-08-26 11:05:26 +00:00
|
|
|
timestamp in the transaction (if any) is valid and there are no double spends, and send back both
|
2016-10-07 16:57:35 +00:00
|
|
|
our signature and the notaries signature. Note we should not send to the notary until all other required signatures have been appended
|
|
|
|
as the notary may validate the signatures as well as verifying for itself the transactional integrity.
|
2016-11-22 16:30:17 +00:00
|
|
|
Finally, we hand back to the code that invoked the flow the finished transaction.
|
2016-02-18 16:47:05 +00:00
|
|
|
|
2016-02-09 14:11:17 +00:00
|
|
|
Let's fill out the ``receiveAndCheckProposedTransaction()`` method.
|
|
|
|
|
|
|
|
.. container:: codeset
|
|
|
|
|
|
|
|
.. sourcecode:: kotlin
|
|
|
|
|
|
|
|
@Suspendable
|
2016-08-24 13:38:43 +00:00
|
|
|
private fun receiveAndCheckProposedTransaction(): SignedTransaction {
|
2016-11-22 16:30:17 +00:00
|
|
|
// Make the first message we'll send to kick off the flow.
|
2016-11-21 17:11:51 +00:00
|
|
|
val myPublicKey = myKeyPair.public.composite
|
|
|
|
val hello = SellerTradeInfo(assetToSell, price, myPublicKey)
|
2016-02-09 14:11:17 +00:00
|
|
|
|
2016-09-27 17:25:26 +00:00
|
|
|
val maybeSTX = sendAndReceive<SignedTransaction>(otherSide, hello)
|
2016-02-18 16:47:05 +00:00
|
|
|
|
2016-09-07 10:40:13 +00:00
|
|
|
maybeSTX.unwrap {
|
2016-02-18 16:47:05 +00:00
|
|
|
// Check that the tx proposed by the buyer is valid.
|
2016-11-21 17:11:51 +00:00
|
|
|
val wtx: WireTransaction = it.verifySignatures(myPublicKey, notaryNode.notaryIdentity.owningKey)
|
2016-02-18 16:47:05 +00:00
|
|
|
logger.trace { "Received partially signed transaction: ${it.id}" }
|
|
|
|
|
2016-08-24 13:38:43 +00:00
|
|
|
// Download and check all the things that this transaction depends on and verify it is contract-valid,
|
|
|
|
// even though it is missing signatures.
|
2016-11-21 17:11:51 +00:00
|
|
|
subFlow(ResolveTransactionsFlow(wtx, otherParty))
|
2016-02-18 16:47:05 +00:00
|
|
|
|
2016-11-21 17:11:51 +00:00
|
|
|
if (wtx.outputs.map { it.data }.sumCashBy(myPublicKey).withoutIssuer() != price)
|
2016-08-24 13:38:43 +00:00
|
|
|
throw IllegalArgumentException("Transaction is not sending us the right amount of cash")
|
2016-02-18 16:47:05 +00:00
|
|
|
|
|
|
|
return it
|
2016-02-09 14:11:17 +00:00
|
|
|
}
|
|
|
|
}
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
Let's break this down. We fill out the initial flow message with the trade info, and then call ``sendAndReceive``.
|
2016-09-27 17:25:26 +00:00
|
|
|
This function takes a few arguments:
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-09-27 17:25:26 +00:00
|
|
|
- The party on the other side.
|
2016-01-13 12:54:10 +00:00
|
|
|
- The thing to send. It'll be serialised and sent automatically.
|
2016-08-24 13:38:43 +00:00
|
|
|
- Finally a type argument, which is the kind of object we're expecting to receive from the other side. If we get
|
|
|
|
back something else an exception is thrown.
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-08-24 13:38:43 +00:00
|
|
|
Once ``sendAndReceive`` is called, the call method will be suspended into a continuation and saved to persistent
|
2016-11-22 16:30:17 +00:00
|
|
|
storage. If the node crashes or is restarted, the flow will effectively continue as if nothing had happened. Your
|
|
|
|
code may remain blocked inside such a call for seconds, minutes, hours or even days in the case of a flow that
|
2016-08-24 13:38:43 +00:00
|
|
|
needs human interaction!
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-01-13 12:54:10 +00:00
|
|
|
.. note:: There are a couple of rules you need to bear in mind when writing a class that will be used as a continuation.
|
2015-12-14 17:22:21 +00:00
|
|
|
The first is that anything on the stack when the function is suspended will be stored into the heap and kept alive by
|
2016-11-21 17:11:51 +00:00
|
|
|
the garbage collector. So try to avoid keeping enormous data structures alive unless you really have to. You can
|
|
|
|
always use private methods to keep the stack uncluttered with temporary variables, or to avoid objects that
|
|
|
|
Kryo is not able to serialise correctly.
|
2015-12-14 17:22:21 +00:00
|
|
|
|
|
|
|
The second is that as well as being kept on the heap, objects reachable from the stack will be serialised. The state
|
|
|
|
of the function call may be resurrected much later! Kryo doesn't require objects be marked as serialisable, but even so,
|
|
|
|
doing things like creating threads from inside these calls would be a bad idea. They should only contain business
|
2016-11-22 16:30:17 +00:00
|
|
|
logic and only do I/O via the methods exposed by the flow framework.
|
2016-08-24 13:38:43 +00:00
|
|
|
|
|
|
|
It's OK to keep references around to many large internal node services though: these will be serialised using a
|
|
|
|
special token that's recognised by the platform, and wired up to the right instance when the continuation is
|
|
|
|
loaded off disk again.
|
|
|
|
|
|
|
|
The buyer is supposed to send us a transaction with all the right inputs/outputs/commands in response to the opening
|
|
|
|
message, with their cash put into the transaction and their signature on it authorising the movement of the cash.
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-02-18 16:47:05 +00:00
|
|
|
You get back a simple wrapper class, ``UntrustworthyData<SignedTransaction>``, which is just a marker class that reminds
|
|
|
|
us that the data came from a potentially malicious external source and may have been tampered with or be unexpected in
|
2016-08-24 13:38:43 +00:00
|
|
|
other ways. It doesn't add any functionality, but acts as a reminder to "scrub" the data before use.
|
|
|
|
|
|
|
|
Our "scrubbing" has three parts:
|
|
|
|
|
|
|
|
1. Check that the expected signatures are present and correct. At this point we expect our own signature to be missing,
|
|
|
|
because of course we didn't sign it yet, and also the signature of the notary because that must always come last.
|
|
|
|
2. We resolve the transaction, which we will cover below.
|
|
|
|
3. We verify that the transaction is paying us the demanded price.
|
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
Sub-flows
|
|
|
|
---------
|
2016-08-24 13:38:43 +00:00
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
Flows can be composed via nesting. Invoking a sub-flow looks similar to an ordinary function call:
|
2015-12-14 17:22:21 +00:00
|
|
|
|
|
|
|
.. container:: codeset
|
|
|
|
|
|
|
|
.. sourcecode:: kotlin
|
|
|
|
|
2016-02-09 14:11:17 +00:00
|
|
|
@Suspendable
|
2016-08-24 13:38:43 +00:00
|
|
|
private fun getNotarySignature(stx: SignedTransaction): DigitalSignature.LegallyIdentifiable {
|
|
|
|
progressTracker.currentStep = NOTARY
|
2016-11-22 16:30:17 +00:00
|
|
|
return subFlow(NotaryFlow.Client(stx))
|
2015-12-14 17:22:21 +00:00
|
|
|
}
|
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
In this code snippet we are using the ``NotaryFlow.Client`` to request notarisation of the transaction.
|
|
|
|
We simply create the flow object via its constructor, and then pass it to the ``subFlow`` method which
|
|
|
|
returns the result of the flow's execution directly. Behind the scenes all this is doing is wiring up progress
|
2016-08-24 13:38:43 +00:00
|
|
|
tracking (discussed more below) and then running the objects ``call`` method. Because this little helper method can
|
|
|
|
be on the stack when network IO takes place, we mark it as ``@Suspendable``.
|
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
Going back to the previous code snippet, we use a sub-flow called ``ResolveTransactionsFlow``. This is
|
2016-08-24 13:38:43 +00:00
|
|
|
responsible for downloading and checking all the dependencies of a transaction, which in Corda are always retrievable
|
2016-11-22 16:30:17 +00:00
|
|
|
from the party that sent you a transaction that uses them. This flow returns a list of ``LedgerTransaction``
|
2016-08-24 13:38:43 +00:00
|
|
|
objects, but we don't need them here so we just ignore the return value.
|
2016-02-18 16:47:05 +00:00
|
|
|
|
|
|
|
.. note:: Transaction dependency resolution assumes that the peer you got the transaction from has all of the
|
|
|
|
dependencies itself. It must do, otherwise it could not have convinced itself that the dependencies were themselves
|
|
|
|
valid. It's important to realise that requesting only the transactions we require is a privacy leak, because if
|
|
|
|
we don't download a transaction from the peer, they know we must have already seen it before. Fixing this privacy
|
|
|
|
leak will come later.
|
|
|
|
|
|
|
|
After the dependencies, we check the proposed trading transaction for validity by running the contracts for that as
|
|
|
|
well (but having handled the fact that some signatures are missing ourselves).
|
|
|
|
|
|
|
|
Here's the rest of the code:
|
|
|
|
|
|
|
|
.. container:: codeset
|
|
|
|
|
|
|
|
.. sourcecode:: kotlin
|
|
|
|
|
2016-11-21 17:11:51 +00:00
|
|
|
open fun calculateOurSignature(partialTX: SignedTransaction) = myKeyPair.signWithECDSA(partialTX.id)
|
2016-02-18 16:47:05 +00:00
|
|
|
|
2016-02-09 14:11:17 +00:00
|
|
|
@Suspendable
|
2016-10-07 16:57:35 +00:00
|
|
|
private fun sendSignatures(allPartySignedTX: SignedTransaction, ourSignature: DigitalSignature.WithKey,
|
2016-11-21 17:11:51 +00:00
|
|
|
notarySignature: DigitalSignature.WithKey): SignedTransaction {
|
2016-10-07 16:57:35 +00:00
|
|
|
val fullySigned = allPartySignedTX + notarySignature
|
2016-02-09 14:11:17 +00:00
|
|
|
logger.trace { "Built finished transaction, sending back to secondary!" }
|
2016-09-27 17:25:26 +00:00
|
|
|
send(otherSide, SignaturesFromSeller(ourSignature, notarySignature))
|
2016-02-12 14:49:18 +00:00
|
|
|
return fullySigned
|
2016-02-09 14:11:17 +00:00
|
|
|
}
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-11-21 17:11:51 +00:00
|
|
|
It's all pretty straightforward from now on. Here ``id`` is the secure hash representing the serialised
|
2016-08-24 13:38:43 +00:00
|
|
|
transaction, and we just use our private key to calculate a signature over it. As a reminder, in Corda signatures do
|
|
|
|
not cover other signatures: just the core of the transaction data.
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-08-24 13:38:43 +00:00
|
|
|
In ``sendSignatures``, we take the two signatures we obtained and add them to the partial transaction we were sent.
|
|
|
|
There is an overload for the + operator so signatures can be added to a SignedTransaction easily. Finally, we wrap the
|
2016-02-09 14:11:17 +00:00
|
|
|
two signatures in a simple wrapper message class and send it back. The send won't block waiting for an acknowledgement,
|
|
|
|
but the underlying message queue software will retry delivery if the other side has gone away temporarily.
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
You can also see that every flow instance has a logger (using the SLF4J API) which you can use to log progress
|
2016-08-24 13:38:43 +00:00
|
|
|
messages.
|
|
|
|
|
|
|
|
.. warning:: This sample code is **not secure**. Other than not checking for all possible invalid constructions, if the
|
2015-12-14 17:22:21 +00:00
|
|
|
seller stops before sending the finalised transaction to the buyer, the seller is left with a valid transaction
|
|
|
|
but the buyer isn't, so they can't spend the asset they just purchased! This sort of thing will be fixed in a
|
|
|
|
future version of the code.
|
|
|
|
|
|
|
|
Implementing the buyer
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
OK, let's do the same for the buyer side:
|
|
|
|
|
2016-11-21 17:11:51 +00:00
|
|
|
.. literalinclude:: ../../finance/src/main/kotlin/net/corda/flows/TwoPartyTradeFlow.kt
|
|
|
|
:language: kotlin
|
|
|
|
:start-after: DOCSTART 1
|
|
|
|
:end-before: DOCEND 1
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-08-24 13:38:43 +00:00
|
|
|
This code is longer but no more complicated. Here are some things to pay attention to:
|
2015-12-14 17:22:21 +00:00
|
|
|
|
|
|
|
1. We do some sanity checking on the received message to ensure we're being offered what we expected to be offered.
|
2016-11-21 17:11:51 +00:00
|
|
|
2. We create a cash spend in the normal way, by using ``VaultService.generateSpend``. See the vault documentation if this
|
2016-08-24 13:38:43 +00:00
|
|
|
part isn't clear.
|
2015-12-14 17:22:21 +00:00
|
|
|
3. We access the *service hub* when we need it to access things that are transient and may change or be recreated
|
2016-11-22 16:30:17 +00:00
|
|
|
whilst a flow is suspended, things like the wallet or the network map.
|
2016-02-09 14:11:17 +00:00
|
|
|
4. Finally, we send the unfinished, invalid transaction to the seller so they can sign it. They are expected to send
|
|
|
|
back to us a ``SignaturesFromSeller``, which once we verify it, should be the final outcome of the trade.
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
As you can see, the flow logic is straightforward and does not contain any callbacks or network glue code, despite
|
2015-12-14 17:22:21 +00:00
|
|
|
the fact that it takes minimal resources and can survive node restarts.
|
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
.. warning:: In the current version of the platform, exceptions thrown during flow execution are not propagated
|
2016-08-24 13:38:43 +00:00
|
|
|
back to the sender. A thorough error handling and exceptions framework will be in a future version of the platform.
|
2015-12-14 17:22:21 +00:00
|
|
|
|
2016-02-23 17:17:46 +00:00
|
|
|
Progress tracking
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
Not shown in the code snippets above is the usage of the ``ProgressTracker`` API. Progress tracking exports information
|
2016-11-22 16:30:17 +00:00
|
|
|
from a flow about where it's got up to in such a way that observers can render it in a useful manner to humans who
|
2016-02-23 17:17:46 +00:00
|
|
|
may need to be informed. It may be rendered via an API, in a GUI, onto a terminal window, etc.
|
|
|
|
|
|
|
|
A ``ProgressTracker`` is constructed with a series of ``Step`` objects, where each step is an object representing a
|
|
|
|
stage in a piece of work. It is therefore typical to use singletons that subclass ``Step``, which may be defined easily
|
|
|
|
in one line when using Kotlin. Typical steps might be "Waiting for response from peer", "Waiting for signature to be
|
|
|
|
approved", "Downloading and verifying data" etc.
|
|
|
|
|
|
|
|
Each step exposes a label. By default labels are fixed, but by subclassing ``RelabelableStep``
|
|
|
|
you can make a step that can update its label on the fly. That's useful for steps that want to expose non-structured
|
|
|
|
progress information like the current file being downloaded. By defining your own step types, you can export progress
|
|
|
|
in a way that's both human readable and machine readable.
|
|
|
|
|
|
|
|
Progress trackers are hierarchical. Each step can be the parent for another tracker. By altering the
|
|
|
|
``ProgressTracker.childrenFor[step] = tracker`` map, a tree of steps can be created. It's allowed to alter the hierarchy
|
|
|
|
at runtime, on the fly, and the progress renderers will adapt to that properly. This can be helpful when you don't
|
|
|
|
fully know ahead of time what steps will be required. If you _do_ know what is required, configuring as much of the
|
|
|
|
hierarchy ahead of time is a good idea, as that will help the users see what is coming up.
|
|
|
|
|
|
|
|
Every tracker has not only the steps given to it at construction time, but also the singleton
|
|
|
|
``ProgressTracker.UNSTARTED`` step and the ``ProgressTracker.DONE`` step. Once a tracker has become ``DONE`` its
|
|
|
|
position may not be modified again (because e.g. the UI may have been removed/cleaned up), but until that point, the
|
|
|
|
position can be set to any arbitrary set both forwards and backwards. Steps may be skipped, repeated, etc. Note that
|
|
|
|
rolling the current step backwards will delete any progress trackers that are children of the steps being reversed, on
|
|
|
|
the assumption that those subtasks will have to be repeated.
|
|
|
|
|
|
|
|
Trackers provide an `Rx observable <http://reactivex.io/>`_ which streams changes to the hierarchy. The top level
|
|
|
|
observable exposes all the events generated by its children as well. The changes are represented by objects indicating
|
|
|
|
whether the change is one of position (i.e. progress), structure (i.e. new subtasks being added/removed) or some other
|
|
|
|
aspect of rendering (i.e. a step has changed in some way and is requesting a re-render).
|
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
The flow framework is somewhat integrated with this API. Each ``FlowLogic`` may optionally provide a tracker by
|
|
|
|
overriding the ``flowTracker`` property (``getFlowTracker`` method in Java). If the
|
|
|
|
``FlowLogic.subFlow`` method is used, then the tracker of the sub-flow will be made a child of the current
|
|
|
|
step in the parent flow automatically, if the parent is using tracking in the first place. The framework will also
|
|
|
|
automatically set the current step to ``DONE`` for you, when the flow is finished.
|
2016-02-23 17:17:46 +00:00
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
Because a flow may sometimes wish to configure the children in its progress hierarchy _before_ the sub-flow
|
|
|
|
is constructed, for sub-flows that always follow the same outline regardless of their parameters it's conventional
|
2016-02-23 17:17:46 +00:00
|
|
|
to define a companion object/static method (for Kotlin/Java respectively) that constructs a tracker, and then allow
|
2016-11-22 16:30:17 +00:00
|
|
|
the sub-flow to have the tracker it will use be passed in as a parameter. This allows all trackers to be built
|
2016-02-23 17:17:46 +00:00
|
|
|
and linked ahead of time.
|
|
|
|
|
|
|
|
In future, the progress tracking framework will become a vital part of how exceptions, errors, and other faults are
|
2016-08-11 15:22:17 +00:00
|
|
|
surfaced to human operators for investigation and resolution.
|
|
|
|
|
2016-08-24 13:38:43 +00:00
|
|
|
Versioning
|
|
|
|
----------
|
|
|
|
|
|
|
|
Fibers involve persisting object-serialised stack frames to disk. Although we may do some R&D into in-place upgrades
|
2016-11-22 16:30:17 +00:00
|
|
|
in future, for now the upgrade process for flows is simple: you duplicate the code and rename it so it has a
|
|
|
|
new set of class names. Old versions of the flow can then drain out of the system whilst new versions are
|
2016-08-24 13:38:43 +00:00
|
|
|
initiated. When enough time has passed that no old versions are still waiting for anything to happen, the previous
|
|
|
|
copy of the code can be deleted.
|
|
|
|
|
|
|
|
Whilst kind of ugly, this is a very simple approach that should suffice for now.
|
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
.. warning:: Flows are not meant to live for months or years, and by implication they are not meant to implement entire deal
|
2016-11-23 12:25:44 +00:00
|
|
|
lifecycles. For instance, implementing the entire life cycle of an interest rate swap as a single flow - whilst
|
2016-08-24 13:38:43 +00:00
|
|
|
technically possible - would not be a good idea. The platform provides a job scheduler tool that can invoke
|
2016-11-22 16:30:17 +00:00
|
|
|
flows for this reason (see ":doc:`event-scheduling`")
|
2016-08-24 13:38:43 +00:00
|
|
|
|
|
|
|
Future features
|
|
|
|
---------------
|
|
|
|
|
2016-11-22 16:30:17 +00:00
|
|
|
The flow framework is a key part of the platform and will be extended in major ways in future. Here are some of
|
2016-08-24 13:38:43 +00:00
|
|
|
the features we have planned:
|
|
|
|
|
|
|
|
* Identity based addressing
|
2016-11-22 16:30:17 +00:00
|
|
|
* Exception propagation and management, with a "flow hospital" tool to manually provide solutions to unavoidable
|
2016-08-24 13:38:43 +00:00
|
|
|
problems (e.g. the other side doesn't know the trade)
|
2016-11-21 17:11:51 +00:00
|
|
|
* Being able to interact with internal apps and tools via RPC
|
2016-08-24 13:38:43 +00:00
|
|
|
* Being able to interact with people, either via some sort of external ticketing system, or email, or a custom UI.
|
|
|
|
For example to implement human transaction authorisations.
|
2016-11-22 16:30:17 +00:00
|
|
|
* A standard library of flows that can be easily sub-classed by local developers in order to integrate internal
|
2016-11-21 17:11:51 +00:00
|
|
|
reporting logic, or anything else that might be required as part of a communications lifecycle.
|