Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OpenEnum: an enum to represent protobuf's enumeration field values #1079

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Conversation

mzabaluev
Copy link
Contributor

@mzabaluev mzabaluev commented May 28, 2024

Another solution for #276, amenable to destructuring.

This changes the representation of enum fields in message structs to this generic wrapper, parameterized over the generated known enum type:

pub enum OpenEnum<T> {
    /// A known value defined in the proto
    Known(T),
    /// Unknown value as decoded from the wire
    Unknown(i32),
}

In an improvement over #1061, this allows convenient matching of enum field values as part of the message. There are also convenience methods to fallibly extract the known value in an Option or Result.

The wrapper to represent field of enumerated types
with the possibility of unknown values.
Replace i32 with the type-checked wrapper.
@caspermeijn
Copy link
Collaborator

Please add a description that explains your proposed change. That will make reviewing easier.

@mzabaluev mzabaluev marked this pull request as ready for review May 28, 2024 21:08
@QuentinPerez
Copy link
Contributor

Do you think that this logic could be applied to the oneof field ?

@mzabaluev
Copy link
Contributor Author

mzabaluev commented May 29, 2024

Do you think that this logic could be applied to the oneof field ?

I believe it works differently for oneofs: if an unknown field number is encountered in a message and it's not a known oneof variant or a regular field, the field is ignored. So the oneof field that would get the value if the variant field were described in the proto would get None instead.

@caspermeijn
Copy link
Collaborator

Will this break compatibility with proto2/closed enums? Personally, I don't use proto2, so I am not sure whether it is properly supported at all.

@caspermeijn
Copy link
Collaborator

I think it makes sense to provide a migration guide.

@caspermeijn
Copy link
Collaborator

What is the error message for a i32 field with #[prost(enumeration)]? Can we detect that scenario and print a nice error message?

@caspermeijn
Copy link
Collaborator

I would like to see some tests for OpenEnum.

Comment on lines +278 to +282
self.#ident.get(#take_ref key).cloned().and_then(|x| { x.known() })
}
#[doc=#insert_doc]
pub fn #insert(&mut self, key: #key_ty, value: #ty) -> ::core::option::Option<#ty> {
self.#ident.insert(key, value as i32).and_then(|x| {
let result: ::core::result::Result<#ty, _> = ::core::convert::TryFrom::try_from(x);
result.ok()
})
self.#ident.insert(key, value.into()).and_then(|x| { x.known() })
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it beneficial to provide a get and insert function with the new wrapper? I feel like the map can be used directly with the helper functions provided by OpenEnum.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As can be seen in the generated code itself, these methods provide considerable convenience for the most common use cases.

Copy link
Contributor Author

@mzabaluev mzabaluev Jun 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps the insert method could be changed to return the possible old value as Option<OpenEnum<#ty>> so the caller can choose the fallback behavior for unknown values, but that API would be inconsistent with the get method. If it's to be changed so, the only added convenience there would be the .into() conversion call.

Comment on lines 298 to 305
pub fn #get(&self) -> #ty {
::core::convert::TryFrom::try_from(self.#ident).unwrap_or(#default)
self.#ident.unwrap_or(#default)
}

#[doc=#set_doc]
pub fn #set(&mut self, value: #ty) {
self.#ident = value as i32;
self.#ident = value.into();
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it still beneficial to provide a get, set and push functions with the new wrapper? I feel like the field can be used directly with the helper functions provided by OpenEnum.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is some convenience in the setter method:

msg.set_kind(Kind::Foo)

is nicer and more type-ahead friendly than

msg.kind = Kind::Foo.into()

The same applies to the push method for repeated fields.

The getter hides a bit much opinionated behavior, in my opinion, so it might be better to leave it to OpenEnum helper methods to explicitly decide on how unknown values should be treated.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Another thing to consider here is porting the existing code. If these methods get used instead of direct access to fields, which I assume happens a lot now because the fields are just i32 or Option<i32>, updating to the version that generates OpenEnum would not require changes.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the better API is to have some sort of set operation on OpenEnum. Maybe something like:

msg.kind.set(Kind::Foo)

Well, this change will break existing code in many ways, so I think we should directly go for the best API

@@ -555,13 +550,13 @@ impl Ty {
Ty::Bool => quote!(bool),
Ty::String => quote!(&str),
Ty::Bytes(..) => quote!(&[u8]),
Ty::Enumeration(..) => quote!(i32),
Ty::Enumeration(..) => unreachable!("an enum should never be queried for its ref type"),
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you explain me why it should never be queried by ref?

}
}

pub fn module(&self) -> Ident {
match *self {
Ty::Enumeration(..) => Ident::new("int32", Span::call_site()),
Ty::Enumeration(..) => Ident::new("enumeration", Span::call_site()),
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does it make sense to use self.as_str() for enumerations as well?

Comment on lines +757 to +759
for value in values {
encode(tag, value, buf);
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could int32::encode_repeated be reused here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, unless int32::encode_repeated is generalized to take an impl IntoIterator that produces i32. Which might be a good idea.

Comment on lines +767 to +780
if values.is_empty() {
return;
}

encode_key(tag, WireType::LengthDelimited, buf);
let len: usize = values
.iter()
.map(|value| encoded_len_varint(value.to_raw() as u64))
.sum();
encode_varint(len as u64, buf);

for value in values {
encode_varint(value.to_raw() as u64, buf);
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could int32::encode_packed be reused here?

Comment on lines +794 to +809
if wire_type == WireType::LengthDelimited {
// Packed.
merge_loop(values, buf, ctx, |values, buf, ctx| {
let mut value = Default::default();
merge(WireType::Varint, &mut value, buf, ctx)?;
values.push(value);
Ok(())
})
} else {
// Unpacked.
check_wire_type(WireType::Varint, wire_type)?;
let mut value = Default::default();
merge(wire_type, &mut value, buf, ctx)?;
values.push(value);
Ok(())
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could int32::merge_repeated be reused here?

Comment on lines +823 to +827
key_len(tag) * values.len()
+ values
.iter()
.map(|value| encoded_len_varint(value.to_raw() as u64))
.sum::<usize>()
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could int32::encoded_len_repeated be reused here?

Comment on lines +834 to +842
if values.is_empty() {
0
} else {
let len = values
.iter()
.map(|value| encoded_len_varint(value.to_raw() as u64))
.sum::<usize>();
key_len(tag) + encoded_len_varint(len as u64) + len
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could int32::encoded_len_packed be reused here?

Comment on lines +189 to +192
let mut raw = 0;
<i32 as Message>::merge_field(&mut raw, tag, wire_type, buf, ctx)?;
*self = OpenEnum::from_raw(raw);
Ok(())
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the same function as encoding::enumeration::merge, right?

@mzabaluev
Copy link
Contributor Author

Will this break compatibility with proto2/closed enums? Personally, I don't use proto2, so I am not sure whether it is properly supported at all.

I believe prost has never been conformant with closed enums: the raw values have been left in the message as is.
I think we could try to support closed enums in two ways:

  1. Always represent an enum field as OpenEnum, but in the closed enum case, decode unknown values as Known(Default::default()). This leaves the possibility of producing unknown values on encoding.
  2. Represent closed enums with their generated Rust enum type. Decode unknown values as Default::default().

I prefer option 2, even though it requires more work. Protobuf edition 2023 has closed enums as a feature, so they need to be supported even if we ignore proto2.

@mzabaluev
Copy link
Contributor Author

I think it makes sense to provide a migration guide.

What would be a good place for it? I can add a section to the README.

@mzabaluev
Copy link
Contributor Author

I would like to see some tests for OpenEnum.

I'm going to add at least one good example/doctest on the type.

@caspermeijn
Copy link
Collaborator

Have thought some more about this PR: I don't want to break users in this way. At least not now.

I suggest making this an option in prost-build so that we can experiment with the API without breaking existing users. That way, interested users can opt in, and we don't have to create a perfect OpenEnum API on the first try.

Once we feel good about the new API, we can think about changing the default.

Please look at bytes for a good example of changing the generated data type.

@ArjixWasTaken
Copy link

ArjixWasTaken commented Jun 28, 2024

Instead of introducing a new type, a simple Result<T, i32> sounds more logical to me.
enum-repr-derive follows this approach when parsing an enum from i32

@mzabaluev
Copy link
Contributor Author

Instead of introducing a new type, a simple Result<T, i32> sounds more logical to me.

It's weird to have a Result as a struct field. The names of variants and methods of Result are less than intuitively applicable: it's not necessarily an error to receive an unknown enum value from the wire, so we should give the API users a speed bump to decide how to deal with them. There are convenience methods and the TryInto impl to convert the OpenEnum value to a Result if that's the chosen approach.

Another benefit of introducing a new type is for the add-on macros and code generators that derive something on structs generated by prost-build. These could deal with the OpenEnum type in some specific way, even without access to the proto descriptor data for the field. Doing the same (e.g. defining generic trait impls) for Result would feel like too much overloading.

@caspermeijn
Copy link
Collaborator

How are default values handles in this solution? Especially default values set for a specific field in the proto file.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants