-
Notifications
You must be signed in to change notification settings - Fork 1
/
tmpSchemaList.go
69 lines (57 loc) · 1.92 KB
/
tmpSchemaList.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
package pgGenerate
import (
"bytes"
"fmt"
"github.com/pepelazz/go-toml"
"github.com/pkg/errors"
"log"
"text/template"
)
//прасинг файла с schemaList.toml
func processFileSchemaList(path string) (err error) {
t, err := toml.LoadFile(path)
if err != nil {
if err != nil {
fmt.Printf("Error: toml.LoadFile path:'%s': %s \n", path, err)
}
return
}
if !t.Has("schemaList") {
log.Fatalf("In file %s missed field: 'schemaList'", path)
}
data := t.Get("schemaList").([]interface{})
arr := make([]string, len(data))
for i, res := range data {
arr[i] = res.(string)
}
docModels.Schemas = &arr
return
}
func generateSchemaFile() (result []byte, err error) {
tmpl := template.New("template").Delims("[[", "]]")
// берем шаблон из последней указанной директории, на случай переопределения в конечном проекте
lastPath := config.TemplateDir[len(config.TemplateDir)-1]
path := fmt.Sprintf("%s/docs/default/schema.sql", lastPath)
// функция сборки html темплейтов для данного типа документа (читаем все файлы из указанной директории)
_, err = tmpl.ParseFiles(path)
if err != nil {
err = errors.New(fmt.Sprintf("Read template file '%s: %s'.", path, err))
return
}
if err != nil {
err = errors.New(fmt.Sprintf("readSchemaTmpl error: %s", err))
return
}
if docModels.Schemas == nil {
err = errors.New(fmt.Sprintf("Not load schema model from schemaList.toml. May be you forget make file model/schemaList.toml"))
return
}
for _, schema := range *docModels.Schemas {
var tmplBytes bytes.Buffer
if err := tmpl.ExecuteTemplate(&tmplBytes, "createSchemaTmpl", schema); err != nil {
return nil, errors.New(fmt.Sprintf("ExecuteTemplate file 'createSchemaTmpl'. Error: %s", err))
}
result = append(result, tmplBytes.Bytes()...)
}
return
}