Implements traits introduced in the previous diffs for basic types and marks legacy methods as deprecated.
Depends on D8789
Paths
| Differential D8790 Authored by bartek on Aug 10 2023, 3:44 PM.
Details Summary Implements traits introduced in the previous diffs for basic types and marks legacy methods as deprecated. Depends on D8789 Test Plan Tested later in the stack
Diff Detail
Event Timelinebartek held this revision as a draft. Herald added a reviewer: • jon. · View Herald TranscriptAug 10 2023, 3:44 PM2023-08-10 15:44:37 (UTC-7) bartek added a child revision: D8791: [services-lib] Add BlobInfo utility type.Aug 10 2023, 3:47 PM2023-08-10 15:47:11 (UTC-7) Harbormaster completed remote builds in B21708: Diff 29833.Aug 10 2023, 4:02 PM2023-08-10 16:02:00 (UTC-7) Comment Actions Potential ideas: (both of them are kinda iffy so up to you!)
trait NumberFromAttr: FromStr<Err = ParseIntError> {} impl NumberFromAttr for u8 {} // ... impl NumberFromAttr for i64 {} impl<T: NumberFromAttr> TryFromAttribute for T { fn try_from_attr( attribute_name: impl Into<String>, attribute: Option<AttributeValue>, ) -> Result<Self, DBItemError> { match &attribute { Some(AttributeValue::N(numeric_str)) => { parse_integer(attribute_name, numeric_str) } Some(_) => Err(DBItemError::new( attribute_name.into(), Value::AttributeValue(attribute), DBItemAttributeError::IncorrectType, )), None => Err(DBItemError::new( attribute_name.into(), Value::AttributeValue(attribute), DBItemAttributeError::Missing, )), } } }
This revision is now accepted and ready to land.Aug 11 2023, 4:14 AM2023-08-11 04:14:41 (UTC-7) Comment Actions
Thanks for these ideas! For sure we need to do a better number support, but I'd like to design this carefully. I'll create a follow-up task for these EDIT: https://linear.app/comm/issue/ENG-4658/improve-database-type-conversions-for-numbers
Harbormaster completed remote builds in B21796: Diff 29951.Aug 16 2023, 7:13 AM2023-08-16 07:13:50 (UTC-7) Closed by commit rCOMMfc8dbbfd4294: [services-lib] Implement DDB Attr conversions, deprecate old methods (authored by bartek). · Explain WhyAug 16 2023, 7:26 AM2023-08-16 07:26:03 (UTC-7) This revision was automatically updated to reflect the committed changes.
Revision Contents
Diff 29951 services/comm-services-lib/src/database.rs
|