-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.go
258 lines (212 loc) · 6.82 KB
/
config.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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
package bingodb
import (
"errors"
"fmt"
"gopkg.in/yaml.v2"
"io/ioutil"
"strings"
)
type MetricsConfig struct {
Ttl int64 `yaml:"ttl"`
Interval int64 `yaml:"interval"`
ExpireKey string `yaml:"expireKey"`
Count string `yaml:"count"`
Time string `yaml:"time"`
}
type SubIndexConfig struct {
HashKey string `yaml:"hashKey"`
SortKey string `yaml:"sortKey"`
}
type TableConfig struct {
Fields map[string]string `yaml:"fields"`
HashKey string `yaml:"hashKey"`
SortKey string `yaml:"sortKey"`
SubIndices map[string]SubIndexConfig `yaml:"subIndices"`
ExpireKey string `yaml:"expireKey"`
Metrics *MetricsConfig `yaml:"metrics"`
ExpireKeyRequired bool `yaml:"expireKeyRequired"`
}
type ServerConfig struct {
Addr string `yaml:"addr,omitempty"`
Logging bool `yaml:"logging,omitempty"`
Mode string `yaml:"mode,omitempty"`
}
type BingoConfig struct {
ServerConfig *ServerConfig `yaml:"server,omitempty"`
Tables map[string]TableConfig `yaml:"tables,omitempty"`
}
const (
STRING = "string"
INTEGER = "integer"
)
// NewBingoFromConfigFile configuration file with specified path and
// parse it to create source schema to prepare bingo.
// It returns any error encountered.
func ParseConfig(bingo *Bingo, path string) error {
configBytes, err := ioutil.ReadFile(path)
if err != nil {
return err
}
return ParseConfigBytes(bingo, configBytes)
}
// Parse specified string of configuration and
// create source schema to prepare bingo.
// It returns any error encountered.
func ParseConfigString(bingo *Bingo, configString string) error {
return ParseConfigBytes(bingo, []byte(configString))
}
// Parse specified bytes of configuration and
// create source schema to prepare bingo.
// It returns any error encountered.
func ParseConfigBytes(bingo *Bingo, configBytes []byte) error {
bingoConfig := &BingoConfig{}
if err := yaml.Unmarshal(configBytes, bingoConfig); err != nil {
return err
}
if len(bingoConfig.Tables) == 0 {
return errors.New("Table cannot be empty")
}
for tableName, tableConfig := range bingoConfig.Tables {
if len(tableName) == 0 {
continue
}
if err := isValidTable(tableName, tableConfig); err != nil {
return err
}
fields := make(map[string]*FieldSchema)
for fieldKey, fieldType := range tableConfig.Fields {
field := &FieldSchema{Name: fieldKey, Type: fieldType}
fields[fieldKey] = field
}
primaryKeySchema := &KeySchema{
hashKey: fields[tableConfig.HashKey],
sortKey: fields[tableConfig.SortKey],
}
tableSchema := &TableSchema{
fields: fields,
primaryKey: primaryKeySchema,
expireField: fields[tableConfig.ExpireKey]}
primaryIndex := &PrimaryIndex{index: newIndex(primaryKeySchema)}
subIndices := make(map[string]*SubIndex)
for indexName, indexConfig := range tableConfig.SubIndices {
subKeySchema := &KeySchema{
hashKey: fields[indexConfig.HashKey],
sortKey: fields[indexConfig.SortKey],
}
subIndices[indexName] = &SubIndex{
index: newIndex(subKeySchema),
primaryKeySchema: primaryKeySchema,
}
}
bingo.tables[tableName] = newTable(
bingo,
tableName,
tableSchema,
primaryIndex,
subIndices,
tableConfig.Metrics,
tableConfig.ExpireKeyRequired)
}
bingo.setTableMetrics()
bingo.ServerConfig = bingoConfig.ServerConfig
return nil
}
func isValidTable(tableName string, tableInfo TableConfig) error {
format := fmt.Sprintf("Table configuration error (Table '%v')", tableName)
if strings.HasPrefix(tableName, "_") {
return errors.New("Table name starts with '_' is prohibited.")
} else if tableName == "metrics" {
return errors.New("Table name cannot be 'metrics'")
}
if err := isValidFields(tableInfo.Fields); err != nil {
return errors.New(fmt.Sprintf("%v - %v", format, err.Error()))
}
if err := isValidMetrics(tableInfo.Metrics); err != nil {
return errors.New(fmt.Sprintf("%v - %v", format, err.Error()))
}
//if err := isValidSubIndices(tableInfo.SubIndices, tableInfo.Fields); err != nil {
// return errors.New(fmt.Sprintf("%v - %v", format, err.Error()))
//}
if err := isValidKeySet(tableInfo.HashKey, tableInfo.SortKey, tableInfo.Fields); err != nil {
return errors.New(fmt.Sprintf("%v - %v", format, err.Error()))
}
if err := isValidExpireKey(tableInfo.ExpireKey, tableInfo.Fields); err != nil {
return errors.New(fmt.Sprintf("%v - %v", format, err.Error()))
}
return nil
}
// check fields is not empty and field's value type is valid
func isValidFields(fields map[string]string) error {
if len(fields) == 0 {
return errors.New("fields cannot be empty")
}
for fieldName, fieldType := range fields {
if ok := isAllowedFieldType(fieldType); !ok {
return errors.New(fmt.Sprintf("unknown field type '%v' in '%v'", fieldType, fieldName))
}
}
return nil
}
// check fields is not empty and field's value type is valid
func isValidMetrics(metricConfig *MetricsConfig) error {
if metricConfig == nil {
return nil
}
if metricConfig.Ttl == 0 {
return errors.New("ttl value must be specified in metrics")
}
if metricConfig.Interval == 0 {
return errors.New("interval value must be specified in metrics")
}
return nil
}
// check subIndices empty, HashKey and SortKey's difference, value is contains in fields
//func isValidSubIndices(subIndices map[string]IndexConfig, fields map[string]string) error {
// for IndexName, indexInfo := range subIndices {
// if err := isValidKeySet(indexInfo.HashKey, indexInfo.SortKey, fields); err != nil {
// return errors.New(fmt.Sprintf("%v in index '%v' for subIndices", err.Error(), IndexName))
// }
// }
//
// return nil
//}
func isValidKeySet(hashKey string, sortKey string, fields map[string]string) error {
if err := isValidReferenceField(hashKey, "HashKey", fields); err != nil {
return err
}
//if err := isValidReferenceField(sortKey, "sortKey", fields); err != nil {
// return err
//}
if hashKey == sortKey {
return errors.New("HashKey and sortKey must be different")
}
return nil
}
func isValidExpireKey(expireKey string, fields map[string]string) error {
if err := isValidReferenceField(expireKey, "expireKey", fields); err != nil {
return err
}
if fields[expireKey] != INTEGER {
return errors.New(
fmt.Sprintf("Only integer type can be used for expireKey. Current key '%v' is '%v'", expireKey, fields[expireKey]))
}
return nil
}
func isValidReferenceField(key string, name string, fields map[string]string) error {
if key == "" {
return errors.New(fmt.Sprintf("%v cannot be empty", name))
}
if _, ok := fields[key]; !ok {
return errors.New(fmt.Sprintf("undefined field '%v' for %v", key, name))
}
return nil
}
func isAllowedFieldType(fieldType string) bool {
switch fieldType {
case
STRING,
INTEGER:
return true
}
return false
}