Git Product home page Git Product logo

Comments (6)

diwic avatar diwic commented on June 10, 2024

Is something similar possible in Rust with this dbus library?

Not currently, but that's mostly because nobody has implemented it yet. One problem is that Rust is torn between the older "rustcserialize" and the newer "serde", and I have had problems making up my mind w r t which one to support (or both).

Or is iterating through the individual message arguments really the idiomatic way?

Yes - that's basically what you do - or use get1, get2, or get3, but you would need a get6 so it doesn't work for you.

What looks a bit inconsistent in your code is that you return a Option<ServiceBrowserItemNew> but there is no way to return None from the function - instead you panic on message not matching.
Whether to unwrap or to do proper error handling is up to you, but this seems like a mix.

You do raise a valid point in that this could be done in a more ergonomic way. I'll give this a thought.

from dbus-rs.

diwic avatar diwic commented on June 10, 2024

Ok, so I've added an iter::read method now. Using it your code would look like:

fn service_browser_item_new_msg(m: &dbus::Message) -> Result<ServiceBrowserItemNew, TypeMismatchError> {
   let mut iter = m.iter_init();
   Ok(ServiceBrowserItemNew {
       interface: try!(iter.read()),
       protocol: try!(iter.read()),
       name: try!(iter.read::<&str>()).into(),
       item_type: try!(iter.read::<&str>()).into(),
       domain: try!(iter.read::<&str>()).into(),
       flags: try!(iter.read()),
   })
}

Could you give it a try and see if it works the way I expect it to? If so I might do a new release with this function in (and might even steal your struct definition and use as an example, with your permission).

from dbus-rs.

stapelberg avatar stapelberg commented on June 10, 2024

Thanks a bunch for the quick reply and fix! I’ll be happy to test that tomorrow. Do you happen to have a pointer as to how I can use the git version of your dbus library in my Cargo.toml in a way that includes the change you mentioned?

from dbus-rs.

diwic avatar diwic commented on June 10, 2024

Like this:

[dependencies]
dbus = { git = "https://github.com/diwic/dbus-rs" }

from dbus-rs.

stapelberg avatar stapelberg commented on June 10, 2024

Thanks a bunch! I can confirm that the following works for me:

fn service_browser_item_new_msg(m: &dbus::Message)
                                -> Result<ServiceBrowserItemNew, dbus::arg::TypeMismatchError> {
    let mut iter = m.iter_init();
    Ok(ServiceBrowserItemNew {
        interface: try!(iter.read()),
        protocol: try!(iter.read()),
        name: try!(iter.read()),
        item_type: try!(iter.read()),
        domain: try!(iter.read()),
        flags: try!(iter.read()),
    })
}

Feel free to use that in the documentation.

from dbus-rs.

diwic avatar diwic commented on June 10, 2024

👍

Now released as v0.3.4.

from dbus-rs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.