Skip to content

Commit ad19d93

Browse files
authored
Merge pull request #3349 from TheBlueMatt/2024-10-3270-followups
Minor #3270 Followups
2 parents cb4584a + 5c1440a commit ad19d93

File tree

4 files changed

+19
-17
lines changed

4 files changed

+19
-17
lines changed

lightning-invoice/src/de.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1+
use alloc::string;
12
#[cfg(feature = "std")]
23
use std::error;
34
#[cfg(not(feature = "std"))]
45
use core::convert::TryFrom;
56
use core::fmt;
67
use core::fmt::{Display, Formatter};
78
use core::num::ParseIntError;
8-
use core::str;
99
use core::str::FromStr;
1010

1111
use bech32::primitives::decode::{CheckedHrpstring, CheckedHrpstringError};
@@ -613,7 +613,7 @@ impl FromBase32 for Description {
613613

614614
fn from_base32(field_data: &[Fe32]) -> Result<Description, Bolt11ParseError> {
615615
let bytes = Vec::<u8>::from_base32(field_data)?;
616-
let description = String::from(str::from_utf8(&bytes)?);
616+
let description = String::from_utf8(bytes)?;
617617
Ok(Description::new(description).expect(
618618
"Max len is 639=floor(1023*5/8) since the len field is only 10bits long"
619619
))
@@ -712,7 +712,7 @@ impl FromBase32 for PrivateRoute {
712712
return Err(Bolt11ParseError::UnexpectedEndOfTaggedFields);
713713
}
714714

715-
let mut route_hops = Vec::<RouteHintHop>::new();
715+
let mut route_hops = Vec::with_capacity(bytes.len() / 51);
716716

717717
let mut bytes = bytes.as_slice();
718718
while !bytes.is_empty() {
@@ -824,7 +824,7 @@ macro_rules! from_error {
824824

825825
from_error!(Bolt11ParseError::MalformedSignature, bitcoin::secp256k1::Error);
826826
from_error!(Bolt11ParseError::ParseAmountError, ParseIntError);
827-
from_error!(Bolt11ParseError::DescriptionDecodeError, str::Utf8Error);
827+
from_error!(Bolt11ParseError::DescriptionDecodeError, string::FromUtf8Error);
828828

829829
impl From<CheckedHrpstringError> for Bolt11ParseError {
830830
fn from(e: CheckedHrpstringError) -> Self {

lightning-invoice/src/lib.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ use core::num::ParseIntError;
5151
use core::ops::Deref;
5252
use core::slice::Iter;
5353
use core::time::Duration;
54-
use core::str;
54+
use alloc::string;
5555

5656
#[cfg(feature = "serde")]
5757
use serde::{Deserialize, Deserializer,Serialize, Serializer, de::Error};
@@ -98,7 +98,7 @@ pub enum Bolt11ParseError {
9898
MalformedHRP,
9999
TooShortDataPart,
100100
UnexpectedEndOfTaggedFields,
101-
DescriptionDecodeError(str::Utf8Error),
101+
DescriptionDecodeError(string::FromUtf8Error),
102102
PaddingError,
103103
IntegerOverflowError,
104104
InvalidSegWitProgramLength,
@@ -313,6 +313,7 @@ impl RawHrp {
313313
pub fn to_hrp(&self) -> bech32::Hrp {
314314
let hrp_str = self.to_string();
315315
let s = core::str::from_utf8(&hrp_str.as_bytes()).expect("HRP bytes should be ASCII");
316+
debug_assert!(bech32::Hrp::parse(s).is_ok(), "We should always build BIP 173-valid HRPs");
316317
bech32::Hrp::parse_unchecked(s)
317318
}
318319
}

lightning-invoice/src/ser.rs

+11-10
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pub(crate) trait Base32Len: Base32Iterable {
2929

3030
impl<const N: usize> Base32Iterable for [u8; N] {
3131
fn fe_iter<'s>(&'s self) -> Box<dyn Iterator<Item = Fe32> + 's> {
32-
Box::new((*self).into_iter().bytes_to_fes())
32+
self[..].fe_iter()
3333
}
3434
}
3535

@@ -218,19 +218,20 @@ impl Display for SiPrefix {
218218
}
219219

220220
/// Encode an integer to base32, big endian, without leading zeros
221-
fn encode_int_be_base32(int: u64) -> Vec<Fe32> {
221+
fn encode_int_be_base32(int: u64) -> impl ExactSizeIterator<Item=Fe32> {
222222
let base = 32u64;
223223

224224
// (64 + 4) / 5 == 13
225-
let mut out_vec = Vec::<Fe32>::with_capacity(13);
225+
let mut out = [Fe32::Q; 13];
226+
let mut out_pos = 0;
226227
let mut rem_int = int;
227228
while rem_int != 0 {
228-
out_vec.push(Fe32::try_from((rem_int % base) as u8).expect("always <32"));
229+
out[out_pos] = Fe32::try_from((rem_int % base) as u8).expect("always <32");
230+
out_pos += 1;
229231
rem_int /= base;
230232
}
231233

232-
out_vec.reverse();
233-
out_vec
234+
out.into_iter().take(out_pos).rev()
234235
}
235236

236237
/// The length of the output of `encode_int_be_base32`.
@@ -252,7 +253,7 @@ impl Base32Iterable for PositiveTimestamp {
252253
let fes = encode_int_be_base32(self.as_unix_timestamp());
253254
debug_assert!(fes.len() <= 7, "Invalid timestamp length");
254255
let to_pad = 7 - fes.len();
255-
Box::new(core::iter::repeat(Fe32::Q).take(to_pad).chain(fes.into_iter()))
256+
Box::new(core::iter::repeat(Fe32::Q).take(to_pad).chain(fes))
256257
}
257258
}
258259

@@ -305,7 +306,7 @@ impl Base32Len for PayeePubKey {
305306

306307
impl Base32Iterable for ExpiryTime {
307308
fn fe_iter<'s>(&'s self) -> Box<dyn Iterator<Item = Fe32> + 's> {
308-
Box::new(encode_int_be_base32(self.as_seconds()).into_iter())
309+
Box::new(encode_int_be_base32(self.as_seconds()))
309310
}
310311
}
311312

@@ -317,7 +318,7 @@ impl Base32Len for ExpiryTime {
317318

318319
impl Base32Iterable for MinFinalCltvExpiryDelta {
319320
fn fe_iter<'s>(&'s self) -> Box<dyn Iterator<Item = Fe32> + 's> {
320-
Box::new(encode_int_be_base32(self.0).into_iter())
321+
Box::new(encode_int_be_base32(self.0))
321322
}
322323
}
323324

@@ -504,6 +505,6 @@ mod test {
504505
.map(|v| Fe32::try_from(v).expect("<= 31"))
505506
.collect::<Vec<Fe32>>();
506507

507-
assert_eq!(expected_out, encode_int_be_base32(input));
508+
assert_eq!(expected_out, encode_int_be_base32(input).collect::<Vec<Fe32>>());
508509
}
509510
}

lightning/src/offers/parse.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ mod sealed {
5858

5959
let parsed = CheckedHrpstring::new::<NoChecksum>(encoded.as_ref())?;
6060
let hrp = parsed.hrp();
61-
if hrp.to_string() != Self::BECH32_HRP {
61+
if hrp.as_str() != Self::BECH32_HRP {
6262
return Err(Bolt12ParseError::InvalidBech32Hrp);
6363
}
6464

0 commit comments

Comments
 (0)