Macro-ize OfferBuilder

OfferBuilder is not exported to bindings because it has methods that
take `self` by value and are only implemented for certain type
parameterizations. Define these methods using macros such that different
builders and related methods can be defined for c_bindings.
This commit is contained in:
Jeffrey Czyz 2024-02-19 18:43:59 -06:00
parent 51d9ee35e5
commit a517925f6c
No known key found for this signature in database
GPG key ID: 912EF12EA67705F5

View file

@ -134,9 +134,12 @@ pub struct ExplicitMetadata {}
pub struct DerivedMetadata {} pub struct DerivedMetadata {}
impl MetadataStrategy for ExplicitMetadata {} impl MetadataStrategy for ExplicitMetadata {}
impl MetadataStrategy for DerivedMetadata {} impl MetadataStrategy for DerivedMetadata {}
impl<'a> OfferBuilder<'a, ExplicitMetadata, secp256k1::SignOnly> { macro_rules! offer_explicit_metadata_builder_methods { (
$self: ident, $self_type: ty, $return_type: ty, $return_value: expr
) => {
/// Creates a new builder for an offer setting the [`Offer::description`] and using the /// Creates a new builder for an offer setting the [`Offer::description`] and using the
/// [`Offer::signing_pubkey`] for signing invoices. The associated secret key must be remembered /// [`Offer::signing_pubkey`] for signing invoices. The associated secret key must be remembered
/// while the offer is valid. /// while the offer is valid.
@ -151,7 +154,7 @@ impl<'a> OfferBuilder<'a, ExplicitMetadata, secp256k1::SignOnly> {
/// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
/// [`ChannelManager::create_offer_builder`]: crate::ln::channelmanager::ChannelManager::create_offer_builder /// [`ChannelManager::create_offer_builder`]: crate::ln::channelmanager::ChannelManager::create_offer_builder
pub fn new(description: String, signing_pubkey: PublicKey) -> Self { pub fn new(description: String, signing_pubkey: PublicKey) -> Self {
OfferBuilder { Self {
offer: OfferContents { offer: OfferContents {
chains: None, metadata: None, amount: None, description, chains: None, metadata: None, amount: None, description,
features: OfferFeatures::empty(), absolute_expiry: None, issuer: None, paths: None, features: OfferFeatures::empty(), absolute_expiry: None, issuer: None, paths: None,
@ -165,13 +168,13 @@ impl<'a> OfferBuilder<'a, ExplicitMetadata, secp256k1::SignOnly> {
/// Sets the [`Offer::metadata`] to the given bytes. /// Sets the [`Offer::metadata`] to the given bytes.
/// ///
/// Successive calls to this method will override the previous setting. /// Successive calls to this method will override the previous setting.
pub fn metadata(mut self, metadata: Vec<u8>) -> Result<Self, Bolt12SemanticError> { pub fn metadata(mut $self: $self_type, metadata: Vec<u8>) -> Result<$return_type, Bolt12SemanticError> {
self.offer.metadata = Some(Metadata::Bytes(metadata)); $self.offer.metadata = Some(Metadata::Bytes(metadata));
Ok(self) Ok($return_value)
} }
} } }
impl<'a, T: secp256k1::Signing> OfferBuilder<'a, DerivedMetadata, T> { macro_rules! offer_derived_metadata_builder_methods { () => {
/// Similar to [`OfferBuilder::new`] except, if [`OfferBuilder::path`] is called, the signing /// Similar to [`OfferBuilder::new`] except, if [`OfferBuilder::path`] is called, the signing
/// pubkey is derived from the given [`ExpandedKey`] and [`EntropySource`]. This provides /// pubkey is derived from the given [`ExpandedKey`] and [`EntropySource`]. This provides
/// recipient privacy by using a different signing pubkey for each offer. Otherwise, the /// recipient privacy by using a different signing pubkey for each offer. Otherwise, the
@ -190,7 +193,7 @@ impl<'a, T: secp256k1::Signing> OfferBuilder<'a, DerivedMetadata, T> {
let nonce = Nonce::from_entropy_source(entropy_source); let nonce = Nonce::from_entropy_source(entropy_source);
let derivation_material = MetadataMaterial::new(nonce, expanded_key, IV_BYTES, None); let derivation_material = MetadataMaterial::new(nonce, expanded_key, IV_BYTES, None);
let metadata = Metadata::DerivedSigningPubkey(derivation_material); let metadata = Metadata::DerivedSigningPubkey(derivation_material);
OfferBuilder { Self {
offer: OfferContents { offer: OfferContents {
chains: None, metadata: Some(metadata), amount: None, description, chains: None, metadata: Some(metadata), amount: None, description,
features: OfferFeatures::empty(), absolute_expiry: None, issuer: None, paths: None, features: OfferFeatures::empty(), absolute_expiry: None, issuer: None, paths: None,
@ -200,17 +203,19 @@ impl<'a, T: secp256k1::Signing> OfferBuilder<'a, DerivedMetadata, T> {
secp_ctx: Some(secp_ctx), secp_ctx: Some(secp_ctx),
} }
} }
} } }
impl<'a, M: MetadataStrategy, T: secp256k1::Signing> OfferBuilder<'a, M, T> { macro_rules! offer_builder_methods { (
$self: ident, $self_type: ty, $return_type: ty, $return_value: expr
) => {
/// Adds the chain hash of the given [`Network`] to [`Offer::chains`]. If not called, /// Adds the chain hash of the given [`Network`] to [`Offer::chains`]. If not called,
/// the chain hash of [`Network::Bitcoin`] is assumed to be the only one supported. /// the chain hash of [`Network::Bitcoin`] is assumed to be the only one supported.
/// ///
/// See [`Offer::chains`] on how this relates to the payment currency. /// See [`Offer::chains`] on how this relates to the payment currency.
/// ///
/// Successive calls to this method will add another chain hash. /// Successive calls to this method will add another chain hash.
pub fn chain(self, network: Network) -> Self { pub fn chain($self: $self_type, network: Network) -> $return_type {
self.chain_hash(ChainHash::using_genesis_block(network)) $self.chain_hash(ChainHash::using_genesis_block(network))
} }
/// Adds the [`ChainHash`] to [`Offer::chains`]. If not called, the chain hash of /// Adds the [`ChainHash`] to [`Offer::chains`]. If not called, the chain hash of
@ -219,45 +224,45 @@ impl<'a, M: MetadataStrategy, T: secp256k1::Signing> OfferBuilder<'a, M, T> {
/// See [`Offer::chains`] on how this relates to the payment currency. /// See [`Offer::chains`] on how this relates to the payment currency.
/// ///
/// Successive calls to this method will add another chain hash. /// Successive calls to this method will add another chain hash.
pub(crate) fn chain_hash(mut self, chain: ChainHash) -> Self { pub(crate) fn chain_hash(mut $self: $self_type, chain: ChainHash) -> $return_type {
let chains = self.offer.chains.get_or_insert_with(Vec::new); let chains = $self.offer.chains.get_or_insert_with(Vec::new);
if !chains.contains(&chain) { if !chains.contains(&chain) {
chains.push(chain); chains.push(chain);
} }
self $return_value
} }
/// Sets the [`Offer::amount`] as an [`Amount::Bitcoin`]. /// Sets the [`Offer::amount`] as an [`Amount::Bitcoin`].
/// ///
/// Successive calls to this method will override the previous setting. /// Successive calls to this method will override the previous setting.
pub fn amount_msats(self, amount_msats: u64) -> Self { pub fn amount_msats($self: $self_type, amount_msats: u64) -> $return_type {
self.amount(Amount::Bitcoin { amount_msats }) $self.amount(Amount::Bitcoin { amount_msats })
} }
/// Sets the [`Offer::amount`]. /// Sets the [`Offer::amount`].
/// ///
/// Successive calls to this method will override the previous setting. /// Successive calls to this method will override the previous setting.
pub(super) fn amount(mut self, amount: Amount) -> Self { pub(super) fn amount(mut $self: $self_type, amount: Amount) -> $return_type {
self.offer.amount = Some(amount); $self.offer.amount = Some(amount);
self $return_value
} }
/// Sets the [`Offer::absolute_expiry`] as seconds since the Unix epoch. Any expiry that has /// Sets the [`Offer::absolute_expiry`] as seconds since the Unix epoch. Any expiry that has
/// already passed is valid and can be checked for using [`Offer::is_expired`]. /// already passed is valid and can be checked for using [`Offer::is_expired`].
/// ///
/// Successive calls to this method will override the previous setting. /// Successive calls to this method will override the previous setting.
pub fn absolute_expiry(mut self, absolute_expiry: Duration) -> Self { pub fn absolute_expiry(mut $self: $self_type, absolute_expiry: Duration) -> $return_type {
self.offer.absolute_expiry = Some(absolute_expiry); $self.offer.absolute_expiry = Some(absolute_expiry);
self $return_value
} }
/// Sets the [`Offer::issuer`]. /// Sets the [`Offer::issuer`].
/// ///
/// Successive calls to this method will override the previous setting. /// Successive calls to this method will override the previous setting.
pub fn issuer(mut self, issuer: String) -> Self { pub fn issuer(mut $self: $self_type, issuer: String) -> $return_type {
self.offer.issuer = Some(issuer); $self.offer.issuer = Some(issuer);
self $return_value
} }
/// Adds a blinded path to [`Offer::paths`]. Must include at least one path if only connected by /// Adds a blinded path to [`Offer::paths`]. Must include at least one path if only connected by
@ -265,23 +270,23 @@ impl<'a, M: MetadataStrategy, T: secp256k1::Signing> OfferBuilder<'a, M, T> {
/// ///
/// Successive calls to this method will add another blinded path. Caller is responsible for not /// Successive calls to this method will add another blinded path. Caller is responsible for not
/// adding duplicate paths. /// adding duplicate paths.
pub fn path(mut self, path: BlindedPath) -> Self { pub fn path(mut $self: $self_type, path: BlindedPath) -> $return_type {
self.offer.paths.get_or_insert_with(Vec::new).push(path); $self.offer.paths.get_or_insert_with(Vec::new).push(path);
self $return_value
} }
/// Sets the quantity of items for [`Offer::supported_quantity`]. If not called, defaults to /// Sets the quantity of items for [`Offer::supported_quantity`]. If not called, defaults to
/// [`Quantity::One`]. /// [`Quantity::One`].
/// ///
/// Successive calls to this method will override the previous setting. /// Successive calls to this method will override the previous setting.
pub fn supported_quantity(mut self, quantity: Quantity) -> Self { pub fn supported_quantity(mut $self: $self_type, quantity: Quantity) -> $return_type {
self.offer.supported_quantity = quantity; $self.offer.supported_quantity = quantity;
self $return_value
} }
/// Builds an [`Offer`] from the builder's settings. /// Builds an [`Offer`] from the builder's settings.
pub fn build(mut self) -> Result<Offer, Bolt12SemanticError> { pub fn build(mut $self: $self_type) -> Result<Offer, Bolt12SemanticError> {
match self.offer.amount { match $self.offer.amount {
Some(Amount::Bitcoin { amount_msats }) => { Some(Amount::Bitcoin { amount_msats }) => {
if amount_msats > MAX_VALUE_MSAT { if amount_msats > MAX_VALUE_MSAT {
return Err(Bolt12SemanticError::InvalidAmount); return Err(Bolt12SemanticError::InvalidAmount);
@ -291,62 +296,79 @@ impl<'a, M: MetadataStrategy, T: secp256k1::Signing> OfferBuilder<'a, M, T> {
None => {}, None => {},
} }
if let Some(chains) = &self.offer.chains { if let Some(chains) = &$self.offer.chains {
if chains.len() == 1 && chains[0] == self.offer.implied_chain() { if chains.len() == 1 && chains[0] == $self.offer.implied_chain() {
self.offer.chains = None; $self.offer.chains = None;
} }
} }
Ok(self.build_without_checks()) Ok($self.build_without_checks())
} }
fn build_without_checks(mut self) -> Offer { fn build_without_checks(mut $self: $self_type) -> Offer {
// Create the metadata for stateless verification of an InvoiceRequest. // Create the metadata for stateless verification of an InvoiceRequest.
if let Some(mut metadata) = self.offer.metadata.take() { if let Some(mut metadata) = $self.offer.metadata.take() {
if metadata.has_derivation_material() { if metadata.has_derivation_material() {
if self.offer.paths.is_none() { if $self.offer.paths.is_none() {
metadata = metadata.without_keys(); metadata = metadata.without_keys();
} }
let mut tlv_stream = self.offer.as_tlv_stream(); let mut tlv_stream = $self.offer.as_tlv_stream();
debug_assert_eq!(tlv_stream.metadata, None); debug_assert_eq!(tlv_stream.metadata, None);
tlv_stream.metadata = None; tlv_stream.metadata = None;
if metadata.derives_recipient_keys() { if metadata.derives_recipient_keys() {
tlv_stream.node_id = None; tlv_stream.node_id = None;
} }
let (derived_metadata, keys) = metadata.derive_from(tlv_stream, self.secp_ctx); let (derived_metadata, keys) = metadata.derive_from(tlv_stream, $self.secp_ctx);
metadata = derived_metadata; metadata = derived_metadata;
if let Some(keys) = keys { if let Some(keys) = keys {
self.offer.signing_pubkey = keys.public_key(); $self.offer.signing_pubkey = keys.public_key();
} }
} }
self.offer.metadata = Some(metadata); $self.offer.metadata = Some(metadata);
} }
let mut bytes = Vec::new(); let mut bytes = Vec::new();
self.offer.write(&mut bytes).unwrap(); $self.offer.write(&mut bytes).unwrap();
Offer { bytes, contents: self.offer } Offer { bytes, contents: $self.offer }
} }
} } }
#[cfg(test)] #[cfg(test)]
macro_rules! offer_builder_test_methods { (
$self: ident, $self_type: ty, $return_type: ty, $return_value: expr
) => {
fn features_unchecked(mut $self: $self_type, features: OfferFeatures) -> $return_type {
$self.offer.features = features;
$return_value
}
pub(crate) fn clear_paths(mut $self: $self_type) -> $return_type {
$self.offer.paths = None;
$return_value
}
pub(super) fn build_unchecked($self: $self_type) -> Offer {
$self.build_without_checks()
}
} }
impl<'a, M: MetadataStrategy, T: secp256k1::Signing> OfferBuilder<'a, M, T> { impl<'a, M: MetadataStrategy, T: secp256k1::Signing> OfferBuilder<'a, M, T> {
fn features_unchecked(mut self, features: OfferFeatures) -> Self { offer_builder_methods!(self, Self, Self, self);
self.offer.features = features;
self
}
pub(crate) fn clear_paths(mut self) -> Self { #[cfg(test)]
self.offer.paths = None; offer_builder_test_methods!(self, Self, Self, self);
self }
}
pub(super) fn build_unchecked(self) -> Offer { impl<'a> OfferBuilder<'a, ExplicitMetadata, secp256k1::SignOnly> {
self.build_without_checks() offer_explicit_metadata_builder_methods!(self, Self, Self, self);
} }
impl<'a, T: secp256k1::Signing> OfferBuilder<'a, DerivedMetadata, T> {
offer_derived_metadata_builder_methods!();
} }
/// An `Offer` is a potentially long-lived proposal for payment of a good or service. /// An `Offer` is a potentially long-lived proposal for payment of a good or service.