You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we want xmlgen to be as useful as similar tools (e.g gdbus-codegen), it needs to be able to generate service-side code as well (i-e dbus_interface). Unlike proxy, this will be mostly a template for user to fill in the implementation.
The text was updated successfully, but these errors were encountered:
Unlike proxy, this will be mostly a template for user to fill in the implementation.
This would be the simpler route but it won't suffice if we want xmlgen to grow into a reusable tool that generates code as part of a build so its output can be used as is.
The better way would be to generate a trait (e.g OurInterface) and impl<T: OurInterface> zbus::Interface for T and then user can implement the generated OurInterface in their code. If we go this route, it'd be worthwhile to also look into making this work with dbus_interface itself. Many times you've the client and service in the same code base, so this would allow users to declare their API once (either in their XML or in the code):
#[dbus_interface(interface = "org.blah")]#[dbus_proxy(interface = "org.blah")]traitBlah{fnblah(&self,arg:&str) -> Result<usize>;}// xmlgen can generate the above part.structBlahImpl;implBlahforBlahImpl{fnblah(&self,arg:&str) -> Result<usize>{Ok(arg.len())}}
If we want xmlgen to be as useful as similar tools (e.g gdbus-codegen), it needs to be able to generate service-side code as well (i-e dbus_interface). Unlike proxy, this will be mostly a template for user to fill in the implementation.
The text was updated successfully, but these errors were encountered: