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
138
139
140
141
142
143
144
145
use crate::utils::{
expression::Variable,
utils::{did_you_mean, parse_comma_separated},
};
use anyhow::{bail, Result};
use std::collections::BTreeMap;
pub struct Variables<'a> {
variables: &'a str,
}
impl<'a> Variables<'a> {
pub fn new(str: &'a str) -> Self {
Self { variables: str }
}
pub fn parse_one(
&self,
reference_data: &BTreeMap<&'static str, Variable<'static>>,
) -> Result<String> {
let variable = self.variables;
let var_vec_check = reference_data
.iter()
.map(|(e, _)| e.to_string())
.collect::<Vec<String>>();
if !var_vec_check.contains(&variable.to_string()) {
let var_vec_mean = did_you_mean(&var_vec_check, variable);
if let Some(value) = var_vec_mean {
bail!(
"In your variable (`-v`) you typed \"{}\" - did you mean \"{}\"?",
variable,
value
)
}
}
Ok(variable.to_string())
}
pub fn parse(
&self,
reference_data: &BTreeMap<&'static str, Variable<'static>>,
) -> Result<String> {
let base = "&fields=";
let delimiter = "%2C";
let mut parsed_string = String::new();
let split_vec = parse_comma_separated(self.variables);
let var_vec_check = reference_data
.iter()
.map(|(e, _)| e.to_string())
.collect::<Vec<String>>();
for variable in &split_vec {
if !var_vec_check.contains(variable) {
let var_vec_mean = did_you_mean(&var_vec_check, variable);
if let Some(value) = var_vec_mean {
bail!(
"In your variable (`-v`) you typed \"{}\" - did you mean \"{}\"?",
variable,
value
)
}
}
}
parsed_string += base;
for el in split_vec {
parsed_string += ⪙
parsed_string += delimiter;
}
parsed_string.drain(parsed_string.len() - 3..);
Ok(parsed_string)
}
pub fn parse_exclude(
&self,
reference_data: &BTreeMap<&'static str, Variable<'static>>,
) -> Result<String> {
const ANCESTRAL: &str = "&excludeAncestral";
const MISSING: &str = "&excludeMissing";
const OPEN_ANGLE_BRACE: &str = "%5B";
const CLOSE_ANGLE_BRACE: &str = "%5D";
let mut exclusion_string = String::new();
let split_vec = parse_comma_separated(self.variables);
let var_vec_check = reference_data
.iter()
.map(|(e, _)| e.to_string())
.collect::<Vec<String>>();
for variable in &split_vec {
if !var_vec_check.contains(variable) {
let var_vec_mean = did_you_mean(&var_vec_check, variable);
if let Some(value) = var_vec_mean {
bail!(
"In your variable (`-v`) you typed \"{}\" - did you mean \"{}\"?",
variable,
value
)
}
}
}
for (exclude_index, field) in split_vec.into_iter().enumerate() {
exclusion_string += ANCESTRAL;
exclusion_string += OPEN_ANGLE_BRACE;
exclusion_string += &exclude_index.to_string();
exclusion_string += CLOSE_ANGLE_BRACE;
exclusion_string += &format!("={field}");
exclusion_string += MISSING;
exclusion_string += OPEN_ANGLE_BRACE;
exclusion_string += &exclude_index.to_string();
exclusion_string += CLOSE_ANGLE_BRACE;
exclusion_string += &format!("={field}");
}
Ok(exclusion_string)
}
}