dg_network_manager 1.0.0

Network Manager DBUS API
Documentation
use super::{Device, DeviceClient};
use std::io::{Error, ErrorKind};
use std::sync::Arc;
use zbus::proxy::CacheProperties;
use zbus::zvariant::OwnedObjectPath;
use zbus::{Connection, Result as ZResult, proxy};

#[proxy(
    interface = "org.freedesktop.NetworkManager.Device.Veth",
    default_service = "org.freedesktop.NetworkManager"
)]
pub trait Veth {
    // Properties
    #[zbus(property)]
    fn peer(&self) -> ZResult<OwnedObjectPath>;
}

#[derive(Debug, Clone)]
pub struct VethClient {
    device: DeviceClient,
    proxy: VethProxy<'static>,
}

impl VethClient {
    pub async fn new(connection: Arc<Connection>, service_path: String) -> Result<Self, Error> {
        let device = DeviceClient::new(connection.clone(), service_path.clone()).await?;

        let proxy = VethProxy::builder(&connection)
            .path(service_path)
            .map_err(|e| Error::new(ErrorKind::InvalidInput, e.to_string()))?
            .cache_properties(CacheProperties::Yes)
            .build()
            .await
            .map_err(|e| Error::new(ErrorKind::Other, e.to_string()))?;

        // Verify we can access veth-specific properties
        proxy
            .peer()
            .await
            .map_err(|e| Error::new(ErrorKind::NotFound, e.to_string()))?;

        Ok(Self { device, proxy })
    }

    // Forward common device methods to the base device client
    pub fn service_path(&self) -> &str {
        self.device.service_path()
    }

    pub async fn interface(&self) -> Result<String, Error> {
        self.device.interface().await
    }

    pub async fn disconnect(&self) -> Result<(), Error> {
        self.device.disconnect().await
    }

    // Veth-specific methods
    pub async fn peer(&self) -> Result<OwnedObjectPath, Error> {
        self.proxy
            .peer()
            .await
            .map_err(|e| Error::new(ErrorKind::Other, e.to_string()))
    }

    // Helper method to get the peer device
    pub async fn get_peer_device(&self, connection: Arc<Connection>) -> Result<Device, Error> {
        let peer_path = self.peer().await?;
        Device::new(connection, peer_path.to_string()).await
    }
}