cli-table-derive 0.4.6

A crate for printing tables on command line
Documentation
use syn::{spanned::Spanned, Attribute, Error, Lit, LitBool, Meta, NestedMeta, Path, Result};

pub fn get_attributes(attrs: &[Attribute]) -> Result<Vec<(Path, Lit)>> {
    let mut attributes = Vec::new();

    for attribute in attrs {
        if !attribute.path.is_ident("table") {
            continue;
        }

        let meta = attribute.parse_meta()?;

        let meta_list = match meta {
            Meta::List(meta_list) => Ok(meta_list),
            bad => Err(Error::new_spanned(
                bad,
                "Attributes should be of type: #[table(key = \"value\", ..)]",
            )),
        }?;

        for nested_meta in meta_list.nested.into_iter() {
            let meta = match nested_meta {
                NestedMeta::Meta(meta) => Ok(meta),
                bad => Err(Error::new_spanned(
                    bad,
                    "Attributes should be of type: #[table(key = \"value\", ..)]",
                )),
            }?;

            match meta {
                Meta::Path(path) => {
                    let lit = LitBool {
                        value: true,
                        span: path.span(),
                    }
                    .into();
                    attributes.push((path, lit));
                }
                Meta::NameValue(meta_name_value) => {
                    attributes.push((meta_name_value.path, meta_name_value.lit));
                }
                bad => return Err(Error::new_spanned(
                    bad,
                    "Attributes should be of type: #[table(key = \"value\", ..)] or #[table(bool)]",
                )),
            }
        }
    }

    Ok(attributes)
}