-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.go
192 lines (171 loc) · 4.02 KB
/
conf.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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
package goku
import (
"github.com/ghodss/yaml"
"github.com/v1990/protoc-gen-goku/helper"
"io/ioutil"
"strconv"
)
type Loop string
const (
LoopFile Loop = "file"
LoopService Loop = "service"
LoopMethod Loop = "method"
LoopMessage Loop = "message"
LoopEnum Loop = "enum"
LoopNestedMessage Loop = "nested_message" // 嵌套在message中的message
LoopNestedEnum Loop = "nested_enum" // 嵌套在message中的enum
)
type Config struct {
// 声明全局变量
// - 支持模版解析
// 因为 map 是无序的,所以不可相互引用
Data Data
// 全局启用插件列表
Plugins []string
// 任务列表
// TODO 改为 map[string]Job,并且params增加jobs,excludeJobs来选择要执行的job
Jobs []Job
}
type Job struct {
// 任务名称
Name string
// 根据所处阶段
Loop LoopCondition
// 用户自定义的判断条件:返回 "true"/"false"
// - 支持模版解析
If IfCondition
// 模版内容
Template string
// 模板路径 - 支持模板解析
// -- Template 为空时才会读取模板文件
TemplatePath string
// 输出文件路径
Out string
// 启用插件列表
//
Plugins []string
// 任务级别的变量
// - 与全局的 Config.Data
Data Data
}
type Condition interface {
OK(ctx *Context) bool
}
type LoopCondition []Loop
type IfCondition string
func (t LoopCondition) OK(ctx *Context) bool {
if len(t) == 0 {
return true
}
return helper.In(ctx.Loop(), t)
}
func (t IfCondition) OK(ctx *Context) bool {
if len(t) == 0 {
return true
}
str := ctx.MustEval(string(t))
ok, err := strconv.ParseBool(str)
ctx.FatalOnErr(err, "parse if: %s parsed:%s", t, str)
return ok
}
func (j Job) GetConditions() []Condition {
return []Condition{
j.Loop,
j.If,
}
}
func (j Job) IsEnable(ctx *Context) bool {
for _, condition := range j.GetConditions() {
if !condition.OK(ctx) {
return false
}
}
return true
}
//type IConfig interface {
// GetVar() []Data
// GetPlugin() []string
//}
//
//func (t Config) GetVar() []Data { return t.Data }
//func (t Config) GetPlugin() []string { return t.Plugins }
//
//func (t Job) GetVar() []Data { return t.Data }
//func (t Job) GetPlugin() []string { return t.Plugins }
//
//func (t Job) IsEnable(ctx *Context) bool {
// return t.Enable.OK(ctx)
//}
//func (t Job) getOutPlugins() []string {
// if len(t.OutPlugins) == 0 {
// return t.Plugins
// }
//
// exclude := make([]string, 0)
// include := make([]string, 0)
//
// for _, name := range t.OutPlugins {
// if strings.HasPrefix(name, "-") {
// exclude = append(exclude, name[1:])
// } else {
// include = append(include, name)
// }
// }
//
// for _, name := range t.Plugins {
// // 已经被排除的,不要
// if helper.InStrings(name, exclude...) {
// continue
// }
// // 已经包含了,不要
// if helper.InStrings(name, include...) {
// continue
// }
//
// include = append(include, name)
// }
//
// return include
//}
//
//func (c Enable) OK(ctx *Context) bool {
// return c.loopOK(ctx) && c.ifOK(ctx)
//}
//
//func (c Enable) loopOK(ctx *Context) bool {
// if len(c.Loop) == 0 {
// return true
// }
// //ctx.Debug("loopOK: %+v", utils.InStrings(string(ctx.Loop()), c.Loop...))
// return helper.InStrings(string(ctx.Loop()), c.Loop...)
//}
//
//func (c Enable) ifOK(ctx *Context) bool {
// if len(c.If) == 0 {
// return true
// }
// str := ctx.parseTextTpl(c.If, ctx)
// ok, err := strconv.ParseBool(str)
// //log.Println("ifOK:",c.If,str,ok,err)
// ctx.FatalOnErr(err, "parse if: %s parsed:%s", c.If, str)
//
// return ok
//}
func (g *Generator) getConfig() Config {
// TODO 先读取编译进来的配置对象
// 读取配置文件
filename := g.params["conf"]
if len(filename) == 0 {
filename = "config.yaml"
}
if !helper.FileExists(filename) {
}
body, err := ioutil.ReadFile(filename)
g.FatalOnErr(err, "read config: %s", filename)
var conf Config
err = yaml.Unmarshal(body, &conf)
g.FatalOnErr(err, "unmarshal conf[YAML]: %s", filename)
// TODO 配置检查
g.Debug("conf: %s", helper.ShowJSON(conf))
return conf
}