solana/src/plan.rs

192 lines
6.6 KiB
Rust
Raw Normal View History

//! The `plan` module provides a domain-specific language for payment plans. Users create Budget objects that
2018-05-25 14:51:41 -07:00
//! are given to an interpreter. The interpreter listens for `Witness` transactions,
2018-03-20 14:52:46 -07:00
//! which it uses to reduce the payment plan. When the plan is reduced to a
//! `Payment`, the payment is executed.
2018-03-17 13:42:43 -07:00
use chrono::prelude::*;
use signature::PublicKey;
2018-03-17 13:42:43 -07:00
use std::mem;
2018-05-22 20:42:04 -07:00
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Clone)]
2018-03-20 14:31:28 -07:00
pub enum Witness {
2018-03-17 13:42:43 -07:00
Timestamp(DateTime<Utc>),
Signature(PublicKey),
}
2018-03-20 14:31:28 -07:00
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Clone)]
pub enum Condition {
Timestamp(DateTime<Utc>),
Signature(PublicKey),
}
impl Condition {
2018-03-29 11:20:54 -07:00
/// Return true if the given Witness satisfies this Condition.
2018-03-20 15:53:41 -07:00
pub fn is_satisfied(&self, witness: &Witness) -> bool {
match (self, witness) {
(&Condition::Signature(ref pubkey), &Witness::Signature(ref from)) => pubkey == from,
(&Condition::Timestamp(ref dt), &Witness::Timestamp(ref last_time)) => dt <= last_time,
_ => false,
}
}
}
2018-03-17 13:42:43 -07:00
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Clone)]
pub struct Payment {
2018-03-19 09:03:41 -07:00
pub tokens: i64,
2018-03-17 13:42:43 -07:00
pub to: PublicKey,
}
2018-05-29 12:00:44 -07:00
pub trait PaymentPlan {
/// Return Payment if the spending plan requires no additional Witnesses.
fn final_payment(&self) -> Option<Payment>;
/// Return true if the plan spends exactly `spendable_tokens`.
fn verify(&self, spendable_tokens: i64) -> bool;
/// Apply a witness to the spending plan to see if the plan can be reduced.
/// If so, modify the plan in-place.
fn apply_witness(&mut self, witness: &Witness);
}
2018-03-26 21:07:11 -07:00
#[repr(C)]
2018-03-17 13:42:43 -07:00
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Clone)]
pub enum Budget {
2018-03-20 14:43:04 -07:00
Pay(Payment),
After(Condition, Payment),
Race((Condition, Payment), (Condition, Payment)),
2018-03-17 13:42:43 -07:00
}
impl Budget {
2018-03-29 11:20:54 -07:00
/// Create the simplest spending plan - one that pays `tokens` to PublicKey.
2018-03-19 09:03:41 -07:00
pub fn new_payment(tokens: i64, to: PublicKey) -> Self {
Budget::Pay(Payment { tokens, to })
2018-03-18 20:02:28 -07:00
}
2018-03-29 11:20:54 -07:00
/// Create a spending plan that pays `tokens` to `to` after being witnessed by `from`.
2018-03-19 09:03:41 -07:00
pub fn new_authorized_payment(from: PublicKey, tokens: i64, to: PublicKey) -> Self {
Budget::After(Condition::Signature(from), Payment { tokens, to })
2018-03-18 20:02:28 -07:00
}
2018-03-29 11:20:54 -07:00
/// Create a spending plan that pays `tokens` to `to` after the given DateTime.
2018-03-19 09:03:41 -07:00
pub fn new_future_payment(dt: DateTime<Utc>, tokens: i64, to: PublicKey) -> Self {
Budget::After(Condition::Timestamp(dt), Payment { tokens, to })
2018-03-18 20:02:28 -07:00
}
2018-03-29 11:20:54 -07:00
/// Create a spending plan that pays `tokens` to `to` after the given DateTime
/// unless cancelled by `from`.
2018-03-18 20:02:28 -07:00
pub fn new_cancelable_future_payment(
dt: DateTime<Utc>,
from: PublicKey,
2018-03-19 09:03:41 -07:00
tokens: i64,
2018-03-18 20:02:28 -07:00
to: PublicKey,
) -> Self {
Budget::Race(
2018-03-20 14:43:04 -07:00
(Condition::Timestamp(dt), Payment { tokens, to }),
(Condition::Signature(from), Payment { tokens, to: from }),
2018-03-18 20:02:28 -07:00
)
}
2018-05-29 12:00:44 -07:00
}
2018-03-18 20:02:28 -07:00
impl PaymentPlan for Budget {
2018-04-02 12:51:44 -07:00
/// Return Payment if the spending plan requires no additional Witnesses.
2018-05-29 12:00:44 -07:00
fn final_payment(&self) -> Option<Payment> {
match *self {
Budget::Pay(ref payment) => Some(payment.clone()),
2018-04-02 12:51:44 -07:00
_ => None,
}
}
2018-03-29 11:20:54 -07:00
/// Return true if the plan spends exactly `spendable_tokens`.
2018-05-29 12:00:44 -07:00
fn verify(&self, spendable_tokens: i64) -> bool {
2018-03-17 13:42:43 -07:00
match *self {
Budget::Pay(ref payment) | Budget::After(_, ref payment) => {
2018-03-22 13:38:06 -07:00
payment.tokens == spendable_tokens
}
Budget::Race(ref a, ref b) => {
2018-03-20 14:43:04 -07:00
a.1.tokens == spendable_tokens && b.1.tokens == spendable_tokens
2018-03-17 13:42:43 -07:00
}
}
}
2018-03-20 15:58:14 -07:00
/// Apply a witness to the spending plan to see if the plan can be reduced.
/// If so, modify the plan in-place.
2018-05-29 12:00:44 -07:00
fn apply_witness(&mut self, witness: &Witness) {
2018-03-20 16:32:02 -07:00
let new_payment = match *self {
Budget::After(ref cond, ref payment) if cond.is_satisfied(witness) => Some(payment),
Budget::Race((ref cond, ref payment), _) if cond.is_satisfied(witness) => Some(payment),
Budget::Race(_, (ref cond, ref payment)) if cond.is_satisfied(witness) => Some(payment),
2018-03-20 16:32:02 -07:00
_ => None,
2018-03-22 13:38:06 -07:00
}.cloned();
2018-03-17 13:42:43 -07:00
2018-03-20 14:43:04 -07:00
if let Some(payment) = new_payment {
mem::replace(self, Budget::Pay(payment));
2018-03-17 13:42:43 -07:00
}
}
}
2018-03-18 20:02:28 -07:00
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_signature_satisfied() {
let sig = PublicKey::default();
assert!(Condition::Signature(sig).is_satisfied(&Witness::Signature(sig)));
2018-03-18 20:02:28 -07:00
}
#[test]
fn test_timestamp_satisfied() {
let dt1 = Utc.ymd(2014, 11, 14).and_hms(8, 9, 10);
let dt2 = Utc.ymd(2014, 11, 14).and_hms(10, 9, 8);
assert!(Condition::Timestamp(dt1).is_satisfied(&Witness::Timestamp(dt1)));
assert!(Condition::Timestamp(dt1).is_satisfied(&Witness::Timestamp(dt2)));
assert!(!Condition::Timestamp(dt2).is_satisfied(&Witness::Timestamp(dt1)));
2018-03-18 20:02:28 -07:00
}
#[test]
fn test_verify_plan() {
let dt = Utc.ymd(2014, 11, 14).and_hms(8, 9, 10);
let from = PublicKey::default();
let to = PublicKey::default();
assert!(Budget::new_payment(42, to).verify(42));
assert!(Budget::new_authorized_payment(from, 42, to).verify(42));
assert!(Budget::new_future_payment(dt, 42, to).verify(42));
assert!(Budget::new_cancelable_future_payment(dt, from, 42, to).verify(42));
2018-03-18 20:02:28 -07:00
}
#[test]
fn test_authorized_payment() {
let from = PublicKey::default();
let to = PublicKey::default();
let mut plan = Budget::new_authorized_payment(from, 42, to);
2018-03-22 13:38:06 -07:00
plan.apply_witness(&Witness::Signature(from));
assert_eq!(plan, Budget::new_payment(42, to));
2018-03-18 20:02:28 -07:00
}
#[test]
fn test_future_payment() {
let dt = Utc.ymd(2014, 11, 14).and_hms(8, 9, 10);
let to = PublicKey::default();
let mut plan = Budget::new_future_payment(dt, 42, to);
2018-03-22 13:38:06 -07:00
plan.apply_witness(&Witness::Timestamp(dt));
assert_eq!(plan, Budget::new_payment(42, to));
2018-03-18 20:02:28 -07:00
}
#[test]
fn test_cancelable_future_payment() {
let dt = Utc.ymd(2014, 11, 14).and_hms(8, 9, 10);
let from = PublicKey::default();
let to = PublicKey::default();
let mut plan = Budget::new_cancelable_future_payment(dt, from, 42, to);
2018-03-22 13:38:06 -07:00
plan.apply_witness(&Witness::Timestamp(dt));
assert_eq!(plan, Budget::new_payment(42, to));
2018-03-18 20:02:28 -07:00
let mut plan = Budget::new_cancelable_future_payment(dt, from, 42, to);
2018-03-22 13:38:06 -07:00
plan.apply_witness(&Witness::Signature(from));
assert_eq!(plan, Budget::new_payment(42, from));
2018-03-18 20:02:28 -07:00
}
}