-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathidentifier.rs
More file actions
137 lines (128 loc) · 3.84 KB
/
identifier.rs
File metadata and controls
137 lines (128 loc) · 3.84 KB
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
125
126
127
128
129
130
131
132
133
134
135
136
137
use serde::{Deserialize, Serialize};
use std::hash::{Hash, Hasher};
/// Possible variants to identify a substance.
#[derive(Serialize, Deserialize, Debug, Clone, Copy)]
#[cfg_attr(feature = "python", pyo3::pyclass)]
pub enum IdentifierOption {
Cas,
Name,
IupacName,
Smiles,
Inchi,
Formula,
}
/// A collection of identifiers for a chemical structure or substance.
#[derive(Serialize, Deserialize, Debug, Clone, Default)]
pub struct Identifier {
/// CAS number
#[serde(default)]
#[serde(skip_serializing_if = "Option::is_none")]
pub cas: Option<String>,
/// Commonly used english name
#[serde(default)]
#[serde(skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
/// IUPAC name
#[serde(default)]
#[serde(skip_serializing_if = "Option::is_none")]
pub iupac_name: Option<String>,
/// SMILES key
#[serde(default)]
#[serde(skip_serializing_if = "Option::is_none")]
pub smiles: Option<String>,
/// InchI key
#[serde(default)]
#[serde(skip_serializing_if = "Option::is_none")]
pub inchi: Option<String>,
/// Chemical formula
#[serde(default)]
#[serde(skip_serializing_if = "Option::is_none")]
pub formula: Option<String>,
}
impl Identifier {
/// Create a new identifier.
///
/// # Examples
///
/// ```no_run
/// # use feos_core::parameter::Identifier;
/// let methanol = Identifier::new(
/// Some("67-56-1"),
/// Some("methanol"),
/// Some("methanol"),
/// Some("CO"),
/// Some("InChI=1S/CH4O/c1-2/h2H,1H3"),
/// Some("CH4O")
/// );
pub fn new(
cas: Option<&str>,
name: Option<&str>,
iupac_name: Option<&str>,
smiles: Option<&str>,
inchi: Option<&str>,
formula: Option<&str>,
) -> Identifier {
Identifier {
cas: cas.map(Into::into),
name: name.map(Into::into),
iupac_name: iupac_name.map(Into::into),
smiles: smiles.map(Into::into),
inchi: inchi.map(Into::into),
formula: formula.map(Into::into),
}
}
pub fn as_string(&self, option: IdentifierOption) -> Option<String> {
match option {
IdentifierOption::Cas => self.cas.clone(),
IdentifierOption::Name => self.name.clone(),
IdentifierOption::IupacName => self.iupac_name.clone(),
IdentifierOption::Smiles => self.smiles.clone(),
IdentifierOption::Inchi => self.inchi.clone(),
IdentifierOption::Formula => self.formula.clone(),
}
}
}
impl std::fmt::Display for Identifier {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut ids = Vec::new();
if let Some(n) = &self.cas {
ids.push(format!("cas={}", n));
}
if let Some(n) = &self.name {
ids.push(format!("name={}", n));
}
if let Some(n) = &self.iupac_name {
ids.push(format!("iupac_name={}", n));
}
if let Some(n) = &self.smiles {
ids.push(format!("smiles={}", n));
}
if let Some(n) = &self.inchi {
ids.push(format!("inchi={}", n));
}
if let Some(n) = &self.formula {
ids.push(format!("formula={}", n));
}
write!(f, "Identifier({})", ids.join(", "))
}
}
impl PartialEq for Identifier {
fn eq(&self, other: &Self) -> bool {
self.cas == other.cas
}
}
impl Eq for Identifier {}
impl Hash for Identifier {
fn hash<H: Hasher>(&self, state: &mut H) {
self.cas.hash(state);
}
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn test_fmt() {
let id = Identifier::new(None, Some("acetone"), None, Some("CC(=O)C"), None, None);
assert_eq!(id.to_string(), "Identifier(name=acetone, smiles=CC(=O)C)");
}
}