use gio_sys;
use glib;
use glib::object::IsA;
use glib::object::ObjectType as ObjectType_;
use glib::signal::connect_raw;
use glib::signal::SignalHandlerId;
use glib::translate::*;
use glib::GString;
use glib::StaticType;
use glib::Value;
use glib_sys;
use gobject_sys;
use std::boxed::Box as Box_;
use std::fmt;
use std::mem::transmute;
use std::ptr;
use Cancellable;
use DBusAuthObserver;
use DBusConnection;
use DBusServerFlags;
glib_wrapper! {
pub struct DBusServer(Object<gio_sys::GDBusServer, DBusServerClass>);
match fn {
get_type => || gio_sys::g_dbus_server_get_type(),
}
}
impl DBusServer {
pub fn new_sync<P: IsA<Cancellable>>(
address: &str,
flags: DBusServerFlags,
guid: &str,
observer: Option<&DBusAuthObserver>,
cancellable: Option<&P>,
) -> Result<DBusServer, glib::Error> {
unsafe {
let mut error = ptr::null_mut();
let ret = gio_sys::g_dbus_server_new_sync(
address.to_glib_none().0,
flags.to_glib(),
guid.to_glib_none().0,
observer.to_glib_none().0,
cancellable.map(|p| p.as_ref()).to_glib_none().0,
&mut error,
);
if error.is_null() {
Ok(from_glib_full(ret))
} else {
Err(from_glib_full(error))
}
}
}
pub fn get_client_address(&self) -> Option<GString> {
unsafe {
from_glib_none(gio_sys::g_dbus_server_get_client_address(
self.to_glib_none().0,
))
}
}
pub fn get_flags(&self) -> DBusServerFlags {
unsafe { from_glib(gio_sys::g_dbus_server_get_flags(self.to_glib_none().0)) }
}
pub fn get_guid(&self) -> Option<GString> {
unsafe { from_glib_none(gio_sys::g_dbus_server_get_guid(self.to_glib_none().0)) }
}
pub fn is_active(&self) -> bool {
unsafe { from_glib(gio_sys::g_dbus_server_is_active(self.to_glib_none().0)) }
}
pub fn start(&self) {
unsafe {
gio_sys::g_dbus_server_start(self.to_glib_none().0);
}
}
pub fn stop(&self) {
unsafe {
gio_sys::g_dbus_server_stop(self.to_glib_none().0);
}
}
pub fn get_property_active(&self) -> bool {
unsafe {
let mut value = Value::from_type(<bool as StaticType>::static_type());
gobject_sys::g_object_get_property(
self.as_ptr() as *mut gobject_sys::GObject,
b"active\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value
.get()
.expect("Return Value for property `active` getter")
.unwrap()
}
}
pub fn get_property_address(&self) -> Option<GString> {
unsafe {
let mut value = Value::from_type(<GString as StaticType>::static_type());
gobject_sys::g_object_get_property(
self.as_ptr() as *mut gobject_sys::GObject,
b"address\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value
.get()
.expect("Return Value for property `address` getter")
}
}
pub fn get_property_authentication_observer(&self) -> Option<DBusAuthObserver> {
unsafe {
let mut value = Value::from_type(<DBusAuthObserver as StaticType>::static_type());
gobject_sys::g_object_get_property(
self.as_ptr() as *mut gobject_sys::GObject,
b"authentication-observer\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value
.get()
.expect("Return Value for property `authentication-observer` getter")
}
}
pub fn connect_new_connection<F: Fn(&DBusServer, &DBusConnection) -> bool + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn new_connection_trampoline<
F: Fn(&DBusServer, &DBusConnection) -> bool + 'static,
>(
this: *mut gio_sys::GDBusServer,
connection: *mut gio_sys::GDBusConnection,
f: glib_sys::gpointer,
) -> glib_sys::gboolean {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this), &from_glib_borrow(connection)).to_glib()
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"new-connection\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
new_connection_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
pub fn connect_property_active_notify<F: Fn(&DBusServer) + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_active_trampoline<F: Fn(&DBusServer) + 'static>(
this: *mut gio_sys::GDBusServer,
_param_spec: glib_sys::gpointer,
f: glib_sys::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::active\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_active_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
pub fn connect_property_client_address_notify<F: Fn(&DBusServer) + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_client_address_trampoline<F: Fn(&DBusServer) + 'static>(
this: *mut gio_sys::GDBusServer,
_param_spec: glib_sys::gpointer,
f: glib_sys::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::client-address\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_client_address_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}
impl fmt::Display for DBusServer {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "DBusServer")
}
}