1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
// Copyright Materialize, Inc. and contributors. All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0.
use bytes::Bytes;
/// Denotes that `Self` is wire compatible with type `T`.
///
/// You should not implement this yourself, instead use the `wire_compatible!` macro.
pub unsafe trait WireCompatible<T: prost::Message>: prost::Message + Default {
/// Converts the type `T` into `Self` by serializing `T` and deserializing as `Self`.
fn convert(old: &T) -> Self {
let bytes = old.encode_to_vec();
// Note: use Bytes to enable possible re-use of the underlying buffer.
let bytes = Bytes::from(bytes);
Self::decode(bytes).expect("wire compatible")
}
}
// SAFETY: A message type is trivially wire compatible with itself.
unsafe impl<T: prost::Message + Default + Clone> WireCompatible<T> for T {
fn convert(old: &Self) -> Self {
old.clone()
}
}
/// Defines one protobuf type as wire compatible with another.
///
/// ```text
/// wire_compatible!(objects_v28::DatabaseKey with objects_v27::DatabaseKey);
/// ```
///
/// Internally this will implement the `WireCompatible<B> for <A>`, e.g.
/// `WireCompatible<objects_v27::DatabaseKey> for objects_v28::DatabaseKey` and generate `proptest`
/// cases that will create arbitrary objects of type `B` and assert they can be deserialized with
/// type `A`, and vice versa.
#[macro_export]
macro_rules! wire_compatible {
($a:ident $(:: $a_sub:ident)* with $b:ident $(:: $b_sub:ident)*) => {
::static_assertions::assert_impl_all!(
$a $(::$a_sub)* : ::proptest::arbitrary::Arbitrary, ::prost::Message, Default,
);
::static_assertions::assert_impl_all!(
$b $(::$b_sub)* : ::proptest::arbitrary::Arbitrary, ::prost::Message, Default,
);
// SAFETY: Below we assert that these types are wire compatible by generating arbitrary
// structs, encoding in one, and then decoding in the other.
unsafe impl $crate::wire_compatible::WireCompatible< $b $(::$b_sub)* > for $a $(::$a_sub)* {}
unsafe impl $crate::wire_compatible::WireCompatible< $a $(::$a_sub)* > for $b $(::$b_sub)* {}
::paste::paste! {
::proptest::proptest! {
#[mz_ore::test]
#[cfg_attr(miri, ignore)] // slow
fn [<proptest_wire_compat_ $a:snake $(_$a_sub:snake)* _to_ $b:snake $(_$b_sub:snake)* >](a: $a $(::$a_sub)* ) {
use ::prost::Message;
let a_bytes = a.encode_to_vec();
let b_decoded = $b $(::$b_sub)*::decode(&a_bytes[..]);
::proptest::prelude::prop_assert!(b_decoded.is_ok());
// Maybe superfluous, but this is a method called in production.
let b_decoded = b_decoded.expect("asserted Ok");
let b_converted: $b $(::$b_sub)* = $crate::wire_compatible::WireCompatible::convert(&a);
assert_eq!(b_decoded, b_converted);
let b_bytes = b_decoded.encode_to_vec();
::proptest::prelude::prop_assert_eq!(a_bytes, b_bytes, "a and b serialize differently");
}
#[mz_ore::test]
#[cfg_attr(miri, ignore)] // slow
fn [<proptest_wire_compat_ $b:snake $(_$b_sub:snake)* _to_ $a:snake $(_$a_sub:snake)* >](b: $b $(::$b_sub)* ) {
use ::prost::Message;
let b_bytes = b.encode_to_vec();
let a_decoded = $a $(::$a_sub)*::decode(&b_bytes[..]);
::proptest::prelude::prop_assert!(a_decoded.is_ok());
// Maybe superfluous, but this is a method called in production.
let a_decoded = a_decoded.expect("asserted Ok");
let a_converted: $a $(::$a_sub)* = $crate::wire_compatible::WireCompatible::convert(&b);
assert_eq!(a_decoded, a_converted);
let a_bytes = a_decoded.encode_to_vec();
::proptest::prelude::prop_assert_eq!(a_bytes, b_bytes, "a and b serialize differently");
}
}
}
};
}
pub use wire_compatible;