Skip to content

Commit ca3ebd7

Browse files
committedNov 28, 2024
bitcoin: Stop using impl_parse_str_from_int
We just got bitten by macros *again*. Feature gates only work if the feature exists, using a macro with feature gates in other crates is error prone and can fail silently. This time, eventually, the tooling found our mistake. Stop using `impl_parse_str_from_int` and just write the code. Say after me, "macros are a constant source of trouble and should probably be avoided".

File tree

3 files changed

+68
-6
lines changed

3 files changed

+68
-6
lines changed
 

‎bitcoin/src/blockdata/locktime/absolute.rs

+34-2
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,18 @@
88
99
use core::cmp::Ordering;
1010
use core::fmt;
11+
use core::str::FromStr;
1112

1213
use io::{Read, Write};
1314
#[cfg(all(test, mutate))]
1415
use mutagen::mutate;
15-
use units::parse;
16+
use units::parse::{self, ParseIntError};
1617

1718
#[cfg(doc)]
1819
use crate::absolute;
1920
use crate::consensus::encode::{self, Decodable, Encodable};
2021
use crate::error::{ContainsPrefixError, MissingPrefixError, PrefixedHexError, UnprefixedHexError};
22+
use crate::prelude::{Box, String};
2123

2224
#[rustfmt::skip] // Keep public re-exports separate.
2325
#[doc(inline)]
@@ -284,7 +286,37 @@ impl LockTime {
284286
}
285287
}
286288

287-
units::impl_parse_str_from_int_infallible!(LockTime, u32, from_consensus);
289+
impl FromStr for LockTime {
290+
type Err = ParseIntError;
291+
292+
fn from_str(s: &str) -> Result<Self, Self::Err> {
293+
parse::int::<u32, &str>(s).map(LockTime::from_consensus)
294+
}
295+
}
296+
297+
impl TryFrom<&str> for LockTime {
298+
type Error = ParseIntError;
299+
300+
fn try_from(s: &str) -> Result<Self, Self::Error> {
301+
LockTime::from_str(s)
302+
}
303+
}
304+
305+
impl TryFrom<String> for LockTime {
306+
type Error = ParseIntError;
307+
308+
fn try_from(s: String) -> Result<Self, Self::Error> {
309+
LockTime::from_str(&s)
310+
}
311+
}
312+
313+
impl TryFrom<Box<str>> for LockTime {
314+
type Error = ParseIntError;
315+
316+
fn try_from(s: Box<str>) -> Result<Self, Self::Error> {
317+
LockTime::from_str(&s)
318+
}
319+
}
288320

289321
impl From<Height> for LockTime {
290322
#[inline]

‎bitcoin/src/blockdata/transaction.rs

+34-3
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,13 @@
1111
//! This module provides the structures and functions needed to support transactions.
1212
//!
1313
14-
use core::{cmp, fmt, str};
14+
use core::{cmp, fmt};
15+
use core::str::FromStr;
1516

1617
use hashes::{sha256d, Hash};
1718
use internals::write_err;
1819
use io::{Read, Write};
19-
use units::parse;
20+
use units::parse::{self, ParseIntError};
2021

2122
use super::Weight;
2223
use crate::blockdata::locktime::absolute::{self, Height, Time};
@@ -527,7 +528,37 @@ impl fmt::Debug for Sequence {
527528
}
528529
}
529530

530-
units::impl_parse_str_from_int_infallible!(Sequence, u32, from_consensus);
531+
impl FromStr for Sequence {
532+
type Err = ParseIntError;
533+
534+
fn from_str(s: &str) -> Result<Self, Self::Err> {
535+
parse::int::<u32, &str>(s).map(Sequence::from_consensus)
536+
}
537+
}
538+
539+
impl TryFrom<&str> for Sequence {
540+
type Error = ParseIntError;
541+
542+
fn try_from(s: &str) -> Result<Self, Self::Error> {
543+
Sequence::from_str(s)
544+
}
545+
}
546+
547+
impl TryFrom<String> for Sequence {
548+
type Error = ParseIntError;
549+
550+
fn try_from(s: String) -> Result<Self, Self::Error> {
551+
Sequence::from_str(&s)
552+
}
553+
}
554+
555+
impl TryFrom<Box<str>> for Sequence {
556+
type Error = ParseIntError;
557+
558+
fn try_from(s: Box<str>) -> Result<Self, Self::Error> {
559+
Sequence::from_str(&s)
560+
}
561+
}
531562

532563
/// Bitcoin transaction output.
533564
///

‎units/src/parse.rs

-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,6 @@ macro_rules! impl_parse_str_from_int_infallible {
160160
$crate::parse::int::<$inner, &str>(s).map($to::$fn)
161161
}
162162
}
163-
164163
}
165164
}
166165

0 commit comments

Comments
 (0)
Please sign in to comment.