1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
use codeviz_common::ElementFormat;
use super::*;

#[derive(Debug, Clone)]
pub enum Name {
    Imported(ImportedName),
    BuiltIn(BuiltInName),
    Local(LocalName),
}

impl Name {
    pub fn imported(module: &str, name: &str) -> ImportedName {
        ImportedName {
            module: module.to_owned(),
            name: name.to_owned(),
            alias: None,
        }
    }

    pub fn imported_alias(module: &str, name: &str, alias: &str) -> ImportedName {
        ImportedName {
            module: module.to_owned(),
            name: name.to_owned(),
            alias: Some(alias.to_owned()),
        }
    }

    pub fn built_in(name: &str) -> BuiltInName {
        BuiltInName { name: name.to_owned() }
    }

    pub fn local(name: &str) -> LocalName {
        LocalName { name: name.to_owned() }
    }

    pub fn format<E>(&self, out: &mut E) -> Result<()>
    where
        E: ElementFormat,
    {
        match *self {
            Name::Imported(ref imported) => {
                if let Some(ref alias) = imported.alias {
                    write!(out, "{}::{}", alias, imported.name.clone())?;
                } else {
                    if let Some(last) = imported.module.split("::").last() {
                        write!(out, "{}::{}", last, imported.name.clone())?;
                    }
                }
            }
            Name::BuiltIn(ref built_in) => out.write_str(&built_in.name)?,
            Name::Local(ref local) => out.write_str(&local.name)?,
        }

        Ok(())
    }
}

#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub struct ImportedName {
    pub module: String,
    pub name: String,
    pub alias: Option<String>,
}

#[derive(Debug, Clone)]
pub struct BuiltInName {
    pub name: String,
}

#[derive(Debug, Clone)]
pub struct LocalName {
    pub name: String,
}

impl<'a, T> From<&'a T> for Name
where
    T: Into<Name> + Clone,
{
    fn from(value: &'a T) -> Name {
        value.clone().into()
    }
}

impl From<ImportedName> for Name {
    fn from(value: ImportedName) -> Name {
        Name::Imported(value)
    }
}

impl From<BuiltInName> for Name {
    fn from(value: BuiltInName) -> Name {
        Name::BuiltIn(value)
    }
}

impl From<LocalName> for Name {
    fn from(value: LocalName) -> Name {
        Name::Local(value)
    }
}

impl From<Name> for Variable {
    fn from(value: Name) -> Variable {
        Variable::Name(value)
    }
}

impl From<ImportedName> for Variable {
    fn from(value: ImportedName) -> Variable {
        Variable::Name(value.into())
    }
}

impl From<BuiltInName> for Variable {
    fn from(value: BuiltInName) -> Variable {
        Variable::Name(value.into())
    }
}

impl From<LocalName> for Variable {
    fn from(value: LocalName) -> Variable {
        Variable::Name(value.into())
    }
}