-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
159 lines (138 loc) · 2.89 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
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
package main
import (
"embed"
"io/ioutil"
"log"
"os"
"path"
"strings"
"text/template"
"unsafe"
"github.com/icpd/ddl2plantuml/constants"
"github.com/icpd/ddl2plantuml/driver"
"github.com/urfave/cli/v2"
)
//go:embed default.tmpl
var tmpl embed.FS
func main() {
app := cli.NewApp()
app.Name = "ddl2plantuml"
app.Usage = "Convert DDL to PlantUML"
app.Description = "ddl2plantuml is a tool to generate plantuml ER diagram from database ddl."
app.Version = constants.Version
app.Action = action
app.Flags = []cli.Flag{
&cli.StringFlag{
Name: "driver",
Aliases: []string{"d"},
Usage: "database driver",
Value: "mysql",
},
&cli.StringFlag{
Name: "template",
Aliases: []string{"t"},
Usage: "plantuml template file",
},
&cli.StringFlag{
Name: "file",
Aliases: []string{"f"},
Usage: "ddl sql file, required",
Required: true,
},
&cli.StringFlag{
Name: "output",
Aliases: []string{"o"},
Usage: "output directory",
Value: ".",
},
}
if err := app.Run(os.Args); err != nil {
log.Fatal(err)
}
}
func action(c *cli.Context) error {
var d driver.Driver
switch strings.ToLower(c.String("driver")) {
case "mysql":
d = &driver.Mysql{}
default:
return cli.Exit("unsupported driver", 1)
}
// get template
tpl, err := getTemplateFile(c.String("template"))
if err != nil {
return cli.Exit(err, 1)
}
// get ddl from sql file
ddl, err := ioutil.ReadFile(c.String("file"))
if err != nil {
return cli.Exit(err, 1)
}
// parse ddl
tables, err := d.Parse(*(*string)(unsafe.Pointer(&ddl)))
if err != nil {
return cli.Exit(err, 1)
}
relationship := tables.Relationship()
// generate plantuml file
outputFile := path.Join(c.String("output"), "er.puml")
data := tmplData{
Tables: tables,
Relationship: relationship,
}
err = data.generate(tpl, outputFile)
if err != nil {
return cli.Exit(err, 1)
}
log.Print("file saved: ", outputFile)
return nil
}
type tmplData struct {
Tables []driver.Table
Relationship []driver.Relation
}
func (t tmplData) generate(tpl *template.Template, outputFile string) error {
dir := path.Dir(outputFile)
if !exists(dir) {
err := mkDir(dir)
if err != nil {
return err
}
}
file, err := os.OpenFile(
outputFile,
os.O_WRONLY|os.O_TRUNC|os.O_CREATE,
0666,
)
if err != nil {
return err
}
defer func(file *os.File) {
err := file.Close()
if err != nil {
log.Fatal(err)
}
}(file)
err = tpl.Execute(file, t)
if err != nil {
return err
}
return nil
}
func getTemplateFile(filepath string) (*template.Template, error) {
if filepath == "" {
return template.ParseFS(tmpl, "default.tmpl")
}
return template.ParseFiles(filepath)
}
func exists(path string) bool {
_, err := os.Stat(path)
if err != nil {
return os.IsExist(err)
}
return true
}
func mkDir(path string) error {
dir, _ := os.Getwd()
return os.MkdirAll(dir+"/"+path, os.ModePerm)
}