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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
use std;
use std::io::{Cursor, Write};
use std::rc::Rc;
use crate::build::Val;
use crate::build::Val::Tuple;
use crate::convert;
use crate::convert::traits::{ConvertResult, Converter};
use crate::error::BuildError;
use crate::error::ErrorType;
pub struct ExecConverter {}
impl ExecConverter {
pub fn new() -> Self {
ExecConverter {}
}
#[allow(unused_assignments)]
fn write(&self, v: &Val, w: &mut dyn Write) -> ConvertResult {
if let &Tuple(ref fields) = v {
if fields.len() > 3 {
return Err(BuildError::new(
"Exec tuples must have no more than 3 fields",
ErrorType::TypeFail,
)
.to_boxed());
}
let mut env: Option<&Vec<(String, Rc<Val>)>> = None;
let mut command: Option<&str> = None;
let mut args: Option<&Vec<Rc<Val>>> = None;
for &(ref name, ref val) in fields.iter() {
if name == "command" {
if command.is_some() {
return Err(BuildError::new(
"There can only be one command field in an exec tuple",
ErrorType::TypeFail,
)
.to_boxed());
}
if let &Val::Str(ref s) = val.as_ref() {
command = Some(s);
continue;
}
return Err(BuildError::new(
"The command field of an exec tuple must be a string",
ErrorType::TypeFail,
)
.to_boxed());
}
if name == "env" {
if let &Val::Tuple(ref l) = val.as_ref() {
if env.is_some() {
return Err(BuildError::new(
"There can only be one env field in an exec tuple",
ErrorType::TypeFail,
)
.to_boxed());
}
env = Some(l);
continue;
}
return Err(BuildError::new(
"The env field of an exec tuple must be a list",
ErrorType::TypeFail,
)
.to_boxed());
}
if name == "args" {
if let &Val::List(ref l) = val.as_ref() {
if args.is_some() {
return Err(BuildError::new(
"There can only be one args field of an exec tuple",
ErrorType::TypeFail,
)
.to_boxed());
}
args = Some(l);
continue;
}
return Err(BuildError::new(
"The args field of an exec tuple must be a list",
ErrorType::TypeFail,
)
.to_boxed());
}
}
if command.is_none() {
return Err(BuildError::new(
"An exec tuple must have a command field",
ErrorType::TypeFail,
)
.to_boxed());
}
let mut script = Cursor::new(vec![]);
write!(script, "#!/usr/bin/env bash\n")?;
write!(script, "# Turn on unofficial Bash-Strict-Mode\n")?;
write!(script, "set -euo pipefail\n")?;
if let Some(env_list) = env {
for &(ref name, ref v) in env_list.iter() {
if let &Val::Str(ref s) = v.as_ref() {
write!(script, "{}=\"{}\"\n", name, s)?;
continue;
}
return Err(BuildError::new(
"The env fields of an exec tuple must contain only string values",
ErrorType::TypeFail,
)
.to_boxed());
}
}
write!(script, "\n")?;
let flag_converter = convert::flags::FlagConverter::new();
write!(script, "exec {} ", command.unwrap())?;
if let Some(arg_list) = args {
for v in arg_list.iter() {
match v.as_ref() {
&Val::Str(ref s) => {
write!(script, "{} ", s)?;
}
&Val::Tuple(_) => flag_converter.convert(v.clone(), &mut script)?,
_ => {
return Err(BuildError::new(
"Exec args must be a list of strings or tuples of strings.",
ErrorType::TypeFail,
)
.to_boxed());
}
}
}
}
script.set_position(0);
std::io::copy(&mut script, w)?;
return Ok(());
}
Err(BuildError::new("Exec outputs must be of type Tuple", ErrorType::TypeFail).to_boxed())
}
}
impl Converter for ExecConverter {
fn convert(&self, v: Rc<Val>, mut w: &mut dyn Write) -> ConvertResult {
self.write(&v, &mut w)
}
fn file_ext(&self) -> String {
String::from("sh")
}
fn description(&self) -> String {
"Convert ucg Vals into an bash script with \nenvironment variables set and command line arguments sent..".to_string()
}
#[allow(unused_must_use)]
fn help(&self) -> String {
include_str!("exec_help.txt").to_string()
}
}
#[cfg(test)]
mod exec_test {
use super::*;
use crate::build::FileBuilder;
use crate::convert::traits::Converter;
use std;
use std::io::Cursor;
#[test]
fn convert_just_command_test() {
let i_paths = Vec::new();
let out: Vec<u8> = Vec::new();
let err: Vec<u8> = Vec::new();
let mut b = FileBuilder::new(std::env::current_dir().unwrap(), &i_paths, out, err);
let conv = ExecConverter::new();
b.eval_string(
"let script = {
command = \"/bin/echo\",
};",
)
.unwrap();
let result = b.get_out_by_name("script").unwrap();
let mut expected = "#!/usr/bin/env bash\n".to_string();
expected.push_str("# Turn on unofficial Bash-Strict-Mode\n");
expected.push_str("set -euo pipefail\n\n");
expected.push_str("exec /bin/echo ");
let mut buf = Cursor::new(vec![]);
conv.convert(result, &mut buf).unwrap();
assert_eq!(String::from_utf8_lossy(&buf.into_inner()), expected);
}
#[test]
fn convert_command_with_env_test() {
let i_paths = Vec::new();
let out: Vec<u8> = Vec::new();
let err: Vec<u8> = Vec::new();
let mut b = FileBuilder::new(std::env::current_dir().unwrap(), &i_paths, out, err);
let conv = ExecConverter::new();
b.eval_string(
"let script = {
command = \"/bin/echo\",
env = {
foo = \"bar\",
quux = \"baz\",
},
};",
)
.unwrap();
let result = b.get_out_by_name("script").unwrap();
let mut expected = "#!/usr/bin/env bash\n".to_string();
expected.push_str("# Turn on unofficial Bash-Strict-Mode\n");
expected.push_str("set -euo pipefail\n");
expected.push_str("foo=\"bar\"\n");
expected.push_str("quux=\"baz\"\n");
expected.push_str("\n");
expected.push_str("exec /bin/echo ");
let mut buf = Cursor::new(vec![]);
conv.convert(result, &mut buf).unwrap();
assert_eq!(String::from_utf8_lossy(&buf.into_inner()), expected);
}
#[test]
fn convert_command_with_arg_test() {
let i_paths = Vec::new();
let out: Vec<u8> = Vec::new();
let err: Vec<u8> = Vec::new();
let mut b = FileBuilder::new(std::env::current_dir().unwrap(), &i_paths, out, err);
let conv = ExecConverter::new();
b.eval_string(
"let script = {
command = \"/bin/echo\",
env = {
foo = \"bar\",
quux = \"baz\",
},
args = [
\"subcommand\",
{flag1 = 1},
],
};",
)
.unwrap();
let result = b.get_out_by_name("script").unwrap();
let mut expected = "#!/usr/bin/env bash\n".to_string();
expected.push_str("# Turn on unofficial Bash-Strict-Mode\n");
expected.push_str("set -euo pipefail\n");
expected.push_str("foo=\"bar\"\n");
expected.push_str("quux=\"baz\"\n");
expected.push_str("\n");
expected.push_str("exec /bin/echo subcommand --flag1 1 ");
let mut buf = Cursor::new(vec![]);
conv.convert(result, &mut buf).unwrap();
assert_eq!(String::from_utf8_lossy(&buf.into_inner()), expected);
}
}