301 lines
9.3 KiB
Rust
301 lines
9.3 KiB
Rust
use crate::telepathy;
|
|
use dbus::blocking::{stdintf::org_freedesktop_dbus::RequestNameReply, LocalConnection};
|
|
use dbus::tree;
|
|
use std::collections::HashMap;
|
|
use std::time::Duration;
|
|
|
|
pub const CONN_BUS_NAME: &'static str = "org.freedesktop.Telepathy.Connection.padfoot.delta";
|
|
pub const CONN_OBJECT_PATH: &'static str = "/org/freedesktop/Telepathy/Connection/padfoot/delta";
|
|
|
|
#[derive(Debug, Default)]
|
|
pub struct Connection {
|
|
id: String,
|
|
account: String,
|
|
password: String,
|
|
}
|
|
|
|
fn escape_one(b: u8) -> String {
|
|
format!("_{:0<2x}", b)
|
|
}
|
|
|
|
// Some non-empty sequence of ASCII letters, digits and underscores
|
|
fn escape(s: String) -> String {
|
|
// Special-case the empty string
|
|
if s.len() == 0 {
|
|
return "_".to_string();
|
|
}
|
|
|
|
let bytes = s.into_bytes();
|
|
let mut iter = bytes.iter();
|
|
let mut out = String::new();
|
|
|
|
// Only alphanumeric in the first byte
|
|
let x = *iter.next().expect("Already checked len > 0");
|
|
let first = match x {
|
|
b'a'..=b'z' | b'A'..=b'Z' => unsafe { String::from_utf8_unchecked(vec![x]) },
|
|
_ => escape_one(x),
|
|
};
|
|
|
|
out.push_str(&first);
|
|
|
|
for x in iter {
|
|
let next = match x {
|
|
b'a'..=b'z' | b'A'..=b'Z' | b'0'..=b'9' => unsafe {
|
|
String::from_utf8_unchecked(vec![*x])
|
|
},
|
|
_ => escape_one(*x),
|
|
};
|
|
|
|
out.push_str(&next);
|
|
}
|
|
|
|
out
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_escape() {
|
|
assert_eq!(escape("".to_string()), "_");
|
|
assert_eq!(escape("foo".to_string()), "foo");
|
|
assert_eq!(escape("foo@bar".to_string()), "foo_40bar");
|
|
assert_eq!(escape("foo_bar".to_string()), "foo_5fbar");
|
|
assert_eq!(escape("foo__@__bar".to_string()), "foo_5f_5f_40_5f_5fbar");
|
|
assert_eq!(escape("1foo".to_string()), "_31foo");
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Default)]
|
|
struct CData;
|
|
|
|
impl dbus::tree::DataType for CData {
|
|
type Interface = Connection;
|
|
type Tree = ();
|
|
type Property = ();
|
|
type ObjectPath = ();
|
|
|
|
type Method = ();
|
|
type Signal = ();
|
|
}
|
|
|
|
impl Connection {
|
|
// This is run inside its own thread
|
|
//
|
|
// FIXME: running several +process+ loops sure is convenient, but it also
|
|
// seems inefficient...
|
|
pub fn run(self) {
|
|
let bus = self.bus();
|
|
let path = self.path();
|
|
let f = tree::Factory::new_fn::<CData>();
|
|
let iface = telepathy::connection_server(&f, self, |m| m.iface.get_data());
|
|
|
|
let mut tree = f.tree(());
|
|
tree = tree.add(f.object_path(path, ()).introspectable().add(iface));
|
|
|
|
tree = tree.add(f.object_path("/", ()).introspectable());
|
|
|
|
// Setup DBus connection
|
|
let mut c = match LocalConnection::new_session() {
|
|
Ok(c) => c,
|
|
Err(e) => {
|
|
println!("Failed to establish DBUS session for {}: {}", bus, e);
|
|
return; // Leave early
|
|
}
|
|
};
|
|
|
|
tree.start_receive(&c);
|
|
|
|
match c.request_name(bus.clone(), false, false, true) {
|
|
Ok(RequestNameReply::Exists) => {
|
|
println!("Another process is already registered on {}", bus);
|
|
return;
|
|
}
|
|
Err(e) => {
|
|
println!("Failed to register {}: {}", bus, e);
|
|
return;
|
|
}
|
|
_ => println!("{} listening on {}", c.unique_name(), bus), // All other responses we can get are a success
|
|
};
|
|
|
|
loop {
|
|
match c.process(Duration::from_millis(100)) {
|
|
Err(e) => {
|
|
println!("Error processing: {}", e);
|
|
return;
|
|
}
|
|
_ => {}
|
|
}
|
|
|
|
// TODO: notice when the conn wants to exit
|
|
}
|
|
}
|
|
|
|
pub fn new(params: HashMap<&str, super::Variant>) -> Result<Self, dbus::tree::MethodErr> {
|
|
let err = Err(dbus::tree::MethodErr::no_arg());
|
|
|
|
let acct = match params.get("account") {
|
|
Some(variant) => match variant.0.as_str() {
|
|
Some(str) => str.to_string(),
|
|
None => return err,
|
|
},
|
|
None => return err,
|
|
};
|
|
|
|
let id = escape(acct.to_owned());
|
|
|
|
let password = match params.get("password") {
|
|
Some(variant) => match variant.0.as_str() {
|
|
Some(str) => str.to_string(),
|
|
None => return err,
|
|
},
|
|
None => return err,
|
|
};
|
|
|
|
Ok(Connection {
|
|
id: id,
|
|
account: acct,
|
|
password: password,
|
|
})
|
|
}
|
|
|
|
pub fn bus(&self) -> String {
|
|
CONN_BUS_NAME.to_owned() + "." + &self.id
|
|
}
|
|
|
|
pub fn path(&self) -> String {
|
|
CONN_OBJECT_PATH.to_owned() + "/" + &self.id
|
|
}
|
|
}
|
|
|
|
impl telepathy::Connection for Connection {
|
|
fn connect(&self) -> Result<(), tree::MethodErr> {
|
|
Err(tree::MethodErr::no_arg()) // FIXME: should be NotImplemented?
|
|
}
|
|
|
|
fn disconnect(&self) -> Result<(), tree::MethodErr> {
|
|
println!("Connection<{}>::disconnect()", self.id);
|
|
Err(tree::MethodErr::no_arg()) // FIXME: should be NotImplemented?
|
|
}
|
|
|
|
fn get_interfaces(&self) -> Result<Vec<String>, tree::MethodErr> {
|
|
println!("Connection<{}>::get_interfaces()", self.id);
|
|
Err(tree::MethodErr::no_arg()) // FIXME: should be NotImplemented?
|
|
}
|
|
|
|
fn get_protocol(&self) -> Result<String, tree::MethodErr> {
|
|
println!("Connection<{}>::get_protocol()", self.id);
|
|
Ok(super::PROTO_NAME.to_string())
|
|
}
|
|
|
|
fn get_self_handle(&self) -> Result<u32, tree::MethodErr> {
|
|
println!("Connection<{}>::get_self_handle()", self.id);
|
|
Err(tree::MethodErr::no_arg()) // FIXME: should be NotImplemented?
|
|
}
|
|
|
|
fn get_status(&self) -> Result<u32, tree::MethodErr> {
|
|
println!("Connection<{}>::get_status()", self.id);
|
|
Err(tree::MethodErr::no_arg()) // FIXME: should be NotImplemented?
|
|
}
|
|
|
|
fn hold_handles(&self, handle_type: u32, handles: Vec<u32>) -> Result<(), tree::MethodErr> {
|
|
println!(
|
|
"Connection<{}>::hold_handles({}, {:?})",
|
|
self.id, handle_type, handles
|
|
);
|
|
Err(tree::MethodErr::no_arg()) // FIXME: should be NotImplemented?
|
|
}
|
|
|
|
fn inspect_handles(
|
|
&self,
|
|
handle_type: u32,
|
|
handles: Vec<u32>,
|
|
) -> Result<Vec<String>, tree::MethodErr> {
|
|
println!(
|
|
"Connection<{}>::inspect_handles({}, {:?})",
|
|
self.id, handle_type, handles
|
|
);
|
|
Err(tree::MethodErr::no_arg()) // FIXME: should be NotImplemented?
|
|
}
|
|
|
|
fn list_channels(
|
|
&self,
|
|
) -> Result<Vec<(dbus::Path<'static>, String, u32, u32)>, tree::MethodErr> {
|
|
println!("Connection<{}>::list_channels()", self.id);
|
|
Err(tree::MethodErr::no_arg()) // FIXME: should be NotImplemented?
|
|
}
|
|
|
|
fn release_handles(&self, handle_type: u32, handles: Vec<u32>) -> Result<(), tree::MethodErr> {
|
|
println!(
|
|
"Connection<{}>::release_handles({}, {:?})",
|
|
self.id, handle_type, handles
|
|
);
|
|
Err(tree::MethodErr::no_arg()) // FIXME: should be NotImplemented?
|
|
}
|
|
|
|
fn request_channel(
|
|
&self,
|
|
type_: &str,
|
|
handle_type: u32,
|
|
handle: u32,
|
|
suppress_handler: bool,
|
|
) -> Result<dbus::Path<'static>, tree::MethodErr> {
|
|
println!(
|
|
"Connection<{}>::request_channel({}, {}, {}, {})",
|
|
self.id, type_, handle_type, handle, suppress_handler
|
|
);
|
|
Err(tree::MethodErr::no_arg()) // FIXME: should be NotImplemented?
|
|
}
|
|
|
|
fn request_handles(
|
|
&self,
|
|
handle_type: u32,
|
|
identifiers: Vec<&str>,
|
|
) -> Result<Vec<u32>, tree::MethodErr> {
|
|
println!(
|
|
"Connection<{}>::request_handles({}, {:?})",
|
|
self.id, handle_type, identifiers
|
|
);
|
|
Err(tree::MethodErr::no_arg()) // FIXME: should be NotImplemented?
|
|
}
|
|
|
|
fn add_client_interest(&self, tokens: Vec<&str>) -> Result<(), tree::MethodErr> {
|
|
println!("Connection<{}>::add_client_interest({:?})", self.id, tokens);
|
|
Err(tree::MethodErr::no_arg()) // FIXME: should be NotImplemented?
|
|
}
|
|
|
|
fn remove_client_interest(&self, tokens: Vec<&str>) -> Result<(), tree::MethodErr> {
|
|
println!(
|
|
"Connection<{}>::remove_client_interest({:?})",
|
|
self.id, tokens
|
|
);
|
|
Err(tree::MethodErr::no_arg()) // FIXME: should be NotImplemented?
|
|
}
|
|
|
|
fn interfaces(&self) -> Result<Vec<String>, tree::MethodErr> {
|
|
println!("Connection<{}>::interfaces()", self.id);
|
|
Err(tree::MethodErr::no_arg()) // FIXME: should be NotImplemented?
|
|
}
|
|
|
|
fn self_handle(&self) -> Result<u32, tree::MethodErr> {
|
|
println!("Connection<{}>::self_handle()", self.id);
|
|
Err(tree::MethodErr::no_arg()) // FIXME: should be NotImplemented?
|
|
}
|
|
|
|
fn self_id(&self) -> Result<String, tree::MethodErr> {
|
|
println!("Connection<{}>::self_id()", self.id);
|
|
Err(tree::MethodErr::no_arg()) // FIXME: should be NotImplemented?
|
|
}
|
|
|
|
fn status(&self) -> Result<u32, tree::MethodErr> {
|
|
println!("Connection<{}>::status()", self.id);
|
|
Err(tree::MethodErr::no_arg()) // FIXME: should be NotImplemented?
|
|
}
|
|
|
|
fn has_immortal_handles(&self) -> Result<bool, tree::MethodErr> {
|
|
println!("Connection<{}>::has_immortal_handles()", self.id);
|
|
Ok(true)
|
|
}
|
|
}
|