Coder Social home page Coder Social logo

server emit signal example about dbus-rs HOT 3 CLOSED

diwic avatar diwic commented on June 28, 2024
server emit signal example

from dbus-rs.

Comments (3)

diwic avatar diwic commented on June 28, 2024

Hi! I added "sending a signal" to my existing server example. While I did that I realized that there are some room to make things work more ergonomic. Anyhow, here's something that works for now:

extern crate dbus;

use std::cell::RefCell;
use std::sync::Arc;
use dbus::{Connection, BusType, NameFlag};
use dbus::tree::{Factory, Signal};

fn main() {
    let c = Connection::get_private(BusType::Session).unwrap();
    c.register_name("com.example.dbustest", NameFlag::ReplaceExisting as u32).unwrap();

    let f = Factory::new_fn();
    let signal: RefCell<Option<Arc<Signal>>> = RefCell::new(None);
    let tree = f.tree().add(f.object_path("/hello").introspectable().add({
        let mut i = f.interface("com.example.dbustest").add_m(
            f.method("Hello", |m,_,_| {
                let s = format!("Hello {}!", m.sender().unwrap());
                Ok(vec!(m.method_return().append1(s), signal.borrow().as_ref().unwrap().emit(&[])))
            }).outarg::<&str,_>("reply") // One output argument, no input arguments
        );
        *signal.borrow_mut() = Some(i.add_s_ref(f.signal("HelloHappened")));
        i
    }));

    tree.set_registered(&c, true).unwrap();
    for _ in tree.run(&c, c.iter(1000)) {}
}

from dbus-rs.

diwic avatar diwic commented on June 28, 2024

...and the committed code now includes a slightly more ergonomic example (which avoids RefCell<Option<>>) which uses some just added API.

from dbus-rs.

sbwtw avatar sbwtw commented on June 28, 2024

thanks a lot !

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.