nlink 0.15.1

Async netlink library for Linux network configuration
Documentation
//! Printable implementation for RouteMessage.

use std::io::Write;

use crate::{
    netlink::{
        messages::RouteMessage,
        types::route::{RouteProtocol, RouteScope},
    },
    output::{OutputOptions, Printable},
};

impl Printable for RouteMessage {
    fn print_text<W: Write>(&self, w: &mut W, _opts: &OutputOptions) -> std::io::Result<()> {
        // Destination
        write!(w, "{}", self.destination_str())?;

        // Gateway
        if let Some(ref gw) = self.gateway {
            write!(w, " via {}", gw)?;
        }

        // Device
        if let Some(oif) = self.oif {
            let dev = crate::util::get_ifname_or_index(oif);
            write!(w, " dev {}", dev)?;
        }

        // Protocol
        let protocol = self.protocol();
        if protocol != RouteProtocol::Unspec {
            write!(w, " proto {}", protocol.name())?;
        }

        // Scope
        let scope = self.scope();
        if scope != RouteScope::Universe {
            write!(w, " scope {}", scope.name())?;
        }

        // Preferred source
        if let Some(ref src) = self.prefsrc {
            write!(w, " src {}", src)?;
        }

        // Metric
        if let Some(prio) = self.priority {
            write!(w, " metric {}", prio)?;
        }

        writeln!(w)?;

        Ok(())
    }

    fn to_json(&self) -> serde_json::Value {
        let mut obj = serde_json::json!({
            "type": self.route_type().name(),
            "protocol": self.protocol().name(),
            "scope": self.scope().name(),
            "table": crate::util::names::table_name(self.table_id()),
            "dst": self.destination_str(),
        });

        if let Some(ref gw) = self.gateway {
            obj["gateway"] = serde_json::json!(gw.to_string());
        }

        if let Some(oif) = self.oif {
            let dev = crate::util::get_ifname_or_index(oif);
            obj["dev"] = serde_json::json!(dev);
        }

        if let Some(ref src) = self.prefsrc {
            obj["prefsrc"] = serde_json::json!(src.to_string());
        }

        if let Some(prio) = self.priority {
            obj["metric"] = serde_json::json!(prio);
        }

        obj
    }
}