The original string interpolation was based on hil which didn't allow proper escaping, since they used a different escape pattern. Secondly, the golang Unquote function didn't deal with the variable substitution, which meant it had to be performed in a second step. Most importantly, because we did this partial job in Unquote (the fact that is strips the leading and trailing quotes tricked me into thinking I was done with interpolation!) it was impossible to remedy the remaining parts in a second pass with hil. Both operations needs to be done in a single step. This is logical when you aren't tunnel visioned. This patch replaces both of these so that string interpolation works properly. This removes the ability to allow inline function calls in a string, however this was an incidental feature, and it's not clear that having it is a good idea. It also requires you wrap the var name with curly braces. (They are not optional.) This comes with a load of tests, but I think I got some of it wrong, since I'm quite new at ragel. If you find something, please say so =D In any case, this is much better than the original hil implementation, and easy for a new contributor to patch to make the necessary fixes.
30 lines
710 B
Plaintext
30 lines
710 B
Plaintext
import "golang/os"
|
|
import "golang/os/exec"
|
|
import "fmt"
|
|
|
|
$tmpdir = os.temp_dir()
|
|
|
|
file "${tmpdir}/execinfo" {
|
|
state => $const.res.file.state.exists,
|
|
content => fmt.printf("mgmt is at %s\n", os.executable()),
|
|
}
|
|
|
|
$home = os.getenv("HOME")
|
|
file "${tmpdir}/mgmtenv" {
|
|
state => $const.res.file.state.exists,
|
|
content => os.expand_env("$HOME sweet ${home}\n"),
|
|
}
|
|
|
|
file "${tmpdir}/mgmtos" {
|
|
state => $const.res.file.state.exists,
|
|
content => os.readlink("/bin"),
|
|
}
|
|
|
|
$cache_dir = os.user_cache_dir()
|
|
$home_dir = os.user_home_dir()
|
|
$rm = exec.look_path("rm")
|
|
file "${tmpdir}/cache" {
|
|
state => $const.res.file.state.exists,
|
|
content => "Plz cache in ${cache_dir}.\nYour home is ${home_dir}. Remove with ${rm}\n",
|
|
}
|