Crates.io | hid-io-client |
lib.rs | hid-io-client |
version | 0.1.3 |
source | src |
created_at | 2022-11-17 08:57:23.437303 |
updated_at | 2023-09-07 23:28:33.799865 |
description | HID-IO Client library for hid-io-core. |
homepage | https://github.com/hid-io/hid-io-core |
repository | https://github.com/hid-io/hid-io-core |
max_upload_size | |
id | 717066 |
size | 137,016 |
HID-IO Client Side application interface
The purpose of this crate is to provide a common set of functions that can be used to connect directly to hid-io-core. Please see hid-io-client-ffi if you are looking for an FFI-compatible library interface.
extern crate tokio;
use hid_io_client::capnp;
use hid_io_client::common_capnp::NodeType;
use hid_io_client::setup_logging_lite;
use rand::Rng;
#[tokio::main]
pub async fn main() -> Result<(), capnp::Error> {
setup_logging_lite().ok();
tokio::task::LocalSet::new().run_until(try_main()).await
}
async fn try_main() -> Result<(), capnp::Error> {
// Prepare hid-io-core connection
let mut hidio_conn = hid_io_client::HidioConnection::new().unwrap();
let mut rng = rand::thread_rng();
// Connect and authenticate with hid-io-core
let (hidio_auth, _hidio_server) = hidio_conn
.connect(
hid_io_client::AuthType::Priviledged,
NodeType::HidioApi,
"lsnodes".to_string(),
format!("{:x} - pid:{}", rng.gen::<u64>(), std::process::id()),
true,
std::time::Duration::from_millis(1000),
)
.await?;
let hidio_auth = hidio_auth.expect("Could not authenticate to hid-io-core");
let nodes_resp = {
let request = hidio_auth.nodes_request();
request.send().promise.await?
};
let nodes = nodes_resp.get()?.get_nodes()?;
println!();
for n in nodes {
println!(" * {} - {}", n.get_id(), hid_io_client::format_node(n));
}
hidio_conn.disconnect().await?;
Ok(())
}