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
//brace takes a string with {} as deliminators
//and can replace the contents with something else

use std::env;

//A simple Util function for this library
pub fn split_on(s:&str,c:char)->(&str,&str){
        match s.find(c){
            Some(n)=>{
                let (lt,rt) = s.split_at(n);
                let rt = &rt[1..];
                (lt,rt)
            },
            None=>(s,"")
        }
}

pub fn replace(s:&str,f:&Fn(&str)->String)->String{
    let mut res = "".to_string();

    let mut depth = 0;
    let mut midepth = 0; //max inner depth
    let mut esc = false;
    let mut temp = "".to_string();
    for c in s.chars(){
        if esc {
            res.push(c) ;
            esc = false;
            continue;
        }
        if c == '\\'{
            esc = true; 
            continue;
        }
        if c == '{' {
            if depth == 0 {
                temp = "".to_string();
            }else{
                temp.push('{');
            }
            depth +=1;
            if midepth < depth {midepth +=1}
            continue;
        }
        if depth == 0 {
            res.push(c);
            continue;
        }
        if c == '}' {
            depth -=1;
            if depth == 0{
                if midepth >1 {
                    temp = replace(&temp,f);
                } 
                res.push_str(&f(&temp));
                
                continue;
            }
        }
        temp.push(c);
    }
    if depth > 1 {
        temp = replace(&temp,f);
    }
    if depth > 0 {
        res.push_str(&f(&temp));
    }
    return res;
}


pub fn env(s:&str)->String{
    match env::var_os(s) {
        Some(ros)=> match ros.to_str(){
            Some(res)=>String::from(res),
            None=>String::from(""),
        },
        None => String::from(""),
    }
}

pub fn env_replace(s:&str)->String{
    replace(s,&env)
}