rLIPC

Struct rLIPC 

Source
pub struct rLIPC { /* private fields */ }

Implementations§

Source§

impl rLIPC

Source

pub fn new() -> Result<Self, String>

Returns a new LIPC client if a connection was successful Connects to the LIPC bus with no name.

Source

pub fn subscribe<F>( &self, service: &str, name: Option<&str>, callback: F, ) -> Result<(), String>
where F: FnMut(&str, &str, Option<LipcResult>) + Send,

Register a callback for events broadcasted by service. Optionally, you can filter to a single event by providing name.

For callback, we pass (source, name, optional int param, optional str param). an example callback payload would be “com.lab126.appmgrd”, “appActivating”, Some(1), Some(“com.lab126.booklet.reader”)

§Examples
use libopenlipc_sys::rLIPC;
let r = rLIPC::new().unwrap();
r.subscribe("com.lab126.powerd", Some("battLevelChanged"), |_, _, _, _| ());
// You will only get updates about battLevel in the callback
// battLevelChanged sends <int param> with the new battery value
use libopenlipc_sys::rLIPC;
let r = rLIPC::new().unwrap();
r.subscribe("com.lab126.powerd", None, |_, _, _, _| ());
// You will get updates all power related events (screen on, off, etc)
Source

pub fn get_str_prop(&self, service: &str, prop: &str) -> Result<String, String>

Get the current value of a string property

use libopenlipc_sys::rLIPC;
let r = rLIPC::new().unwrap();
let reader_status = r.get_str_prop("com.lab126.acxreaderplugin", "allReaderData").unwrap();
// reader_status would be a string containing JSON
Source

pub fn get_int_prop(&self, service: &str, prop: &str) -> Result<i32, String>

Get the current value of an int property

use libopenlipc_sys::rLIPC;
let r = rLIPC::new().unwrap();
let reader_status = r.get_int_prop("com.lab126.powerd", "battLevel").unwrap();
// reader_status will contain the battery charge % (ie: 75).

Trait Implementations§

Source§

impl Drop for rLIPC

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

impl Sync for rLIPC

Auto Trait Implementations§

§

impl Freeze for rLIPC

§

impl RefUnwindSafe for rLIPC

§

impl !Send for rLIPC

§

impl Unpin for rLIPC

§

impl UnwindSafe for rLIPC

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.