-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
90 lines (81 loc) · 1.52 KB
/
main.go
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
//go:generate pigeon -o main_gen.go host.peg
package main
import (
"log"
"os"
"fmt"
"github.com/fatih/color"
)
func toIfaceSlice(v interface{}) []interface{} {
if v == nil {
return nil
}
return v.([]interface{})
}
func toStringSlice(v interface{}) []string {
if v == nil {
return nil
}
vv := v.([]interface{})
strs := make([]string, len(vv))
for i := range vv {
s, ok := vv[i].(string)
if !ok {
continue
}
strs = append(strs, s)
}
return strs
}
func toASTHostLineSlice(v interface{}) []ASTHostLine {
if v == nil {
return nil
}
vv := v.([]interface{})
lns := make([]ASTHostLine, 0, len(vv))
for i := range vv {
l, ok := vv[i].(ASTHostLine)
if !ok {
continue
}
lns = append(lns, l)
}
return lns
}
func main() {
log.Println("Parsing hosts")
h, err := ParseFile("host")
if err != nil {
log.Fatal(err)
}
hlns, ok := h.(ASTHosts)
if !ok {
log.Fatalf("No tokens received\n%v", h)
}
blue := color.New(color.FgBlue)
green := color.New(color.FgGreen)
for _, v := range hlns {
//fmt.Printf("Line %d: %t\n", k, v)
P:
switch val := v.(type){
case ASTComment:
blue.Printf("#" + val.String())
case ASTHost:
green.Printf(val.String())
if val.comment != nil && val.comment.Comment != "" {
fmt.Printf("\t")
v = *val.comment
goto P
}
case ASTBlank:
fmt.Printf(v.String())
default:
log.Fatalf("Unexpected type %t ", v)
}
}
if err != nil {
log.Println("Got Error:", err)
os.Exit(1)
}
//log.Printf("Hostlines: %T\n\n%v\n", hlns, hlns.StringWOComments())
}