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

xmlgen to generate service-side (interface) code #118

Open
zeenix opened this issue Jan 2, 2021 · 3 comments
Open

xmlgen to generate service-side (interface) code #118

zeenix opened this issue Jan 2, 2021 · 3 comments
Labels
enhancement New feature or request zbus_xmlgen

Comments

@zeenix
Copy link
Contributor

zeenix commented Jan 2, 2021

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.

@zeenix
Copy link
Contributor Author

zeenix commented Jan 5, 2022

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")]
trait Blah {
    fn blah(&self, arg: &str) -> Result<usize>;
}

// xmlgen can generate the above part.

struct BlahImpl;

impl Blah for BlahImpl {
   fn blah(&self, arg: &str) -> Result<usize> {
       Ok(arg.len())
   }
}

@zeenix
Copy link
Contributor Author

zeenix commented Jan 5, 2022

Created #236 for the macros part.

@bachrc
Copy link

bachrc commented Feb 13, 2025

Is there any news for this feature? As I'm writing a dbus server, it would really be helpful 🙂

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request zbus_xmlgen
Projects
None yet
Development

No branches or pull requests

2 participants