-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathxls2lua.go
306 lines (284 loc) · 7.06 KB
/
xls2lua.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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
package main
import (
"bufio"
"bytes"
"flag"
"fmt"
"io/ioutil"
"os"
"strconv"
"strings"
"sync"
"github.com/tealeg/xlsx"
)
const (
fieldDelimiter = ", "
luaExtension = ".lua"
xlsxExtension = ".xlsx"
fieldInfoSplit = ":"
)
var (
wg *sync.WaitGroup
confDir string // 配置文件目录
excelDir string // Excel目录
luaOut string // 输出目录
luaFiles []string
)
func fixedPathSuffix(s *string) {
if !strings.HasSuffix(*s, "/") {
*s = *s + "/"
}
}
func writeLuaFile(fileName string, text []byte) error {
return ioutil.WriteFile(luaOut+fileName+luaExtension, []byte(text), 0666)
}
func initConfigs() {
file, err := os.Open(confDir)
if err != nil {
panic(err)
}
defer file.Close()
scanner := bufio.NewScanner(file)
for scanner.Scan() {
luaFiles = append(luaFiles, parseFileName(strings.TrimSpace(scanner.Text())))
}
if err := scanner.Err(); err != nil {
panic(err)
}
fixedPathSuffix(&luaOut)
fixedPathSuffix(&excelDir)
fmt.Printf("Excel表路径\t[%#v]\n", excelDir)
fmt.Printf("Lua路径\t[%#v]\n", luaOut)
}
type xlsField struct {
name string // 字段名称
fType string // 字段类型, number, bool, string, any
}
func parseField(s string) (*xlsField, error) {
args := strings.Split(s, fieldInfoSplit)
if len(args) < 2 {
return nil, fmt.Errorf("解析字段错误,没有用:分割.例如fieldName:number [%v]", s)
}
name := strings.TrimSpace(args[0])
if name == "" {
return nil, fmt.Errorf("解析字段为空")
}
t := strings.ToLower(args[1])
switch t {
case "number", "bool", "string", "array":
default:
return nil, fmt.Errorf("解析字段类型出错,不是number,bool,string,array")
}
return &xlsField{name, t}, nil
}
func parseHeader(src string, headRow []*xlsx.Cell) (fields []*xlsField, headerSize int) {
fields = make([]*xlsField, len(headRow))
for i, cell := range headRow {
fieldString := cell.Value
fieldString = strings.TrimSpace(fieldString)
if fieldString != "" && fieldString != "-" {
field, err := parseField(fieldString)
if field == nil {
panic(fmt.Errorf("[%s]标题头格式问题[%s], [number, bool, string, array] [%v]", src, fieldString, err))
}
fields[i] = field
headerSize++
}
}
return
}
func fixedFloatType(cell string) string {
dotIndex := strings.Index(cell, ".")
if dotIndex != -1 && (len(cell)-dotIndex) > 3 {
if f, err := strconv.ParseFloat(cell, 64); err == nil {
newValue := fmt.Sprintf("%.3f", f)
for {
if strings.HasSuffix(newValue, "0") {
newValue = newValue[:len(newValue)-1]
} else {
if strings.HasSuffix(newValue, ".") {
newValue = newValue[:len(newValue)-1]
}
break
}
}
return newValue
}
}
if cell == "" {
return "0"
} else {
return cell
}
}
func fixedBoolType(cell string) string {
x := strings.ToLower(cell)
if x == "1" || x == "true" {
return "true"
} else {
return "false"
}
}
func parseRow(fields []*xlsField, cells []*xlsx.Cell) (error, string, string) {
values := make([]string, 0, 128)
idValue := ""
var keyValue string
for i, f := range fields {
if f != nil {
if i >= len(cells) {
return fmt.Errorf("字段数量不匹配,第[%d]列为空", i+1), "", ""
}
cellStr := cells[i].Value
var writeValue string
switch f.fType {
case "number":
writeValue = fixedFloatType(cellStr)
case "string":
writeValue = `"` + cellStr + `"`
case "bool":
writeValue = fixedBoolType(cellStr)
case "array":
writeValue = cellStr
}
if idValue == "" {
idValue = writeValue
}
if keyValue == "" {
keyValue = writeValue
}
values = append(values, fmt.Sprintf(`["%v"]=%v`, f.name, writeValue))
}
}
if idValue == "" {
return fmt.Errorf("没有主键"), "", keyValue
}
return nil, fmt.Sprintf(" [%v] = {%s}", idValue, strings.Join(values, fieldDelimiter)), keyValue
}
func xls2lua(fileName string) bool {
sb := &strings.Builder{}
sb.WriteString(fmt.Sprintf("开始处理[%s]\n", fileName))
if wg != nil {
defer wg.Done()
}
defer func(s *strings.Builder) {
fmt.Printf(s.String())
}(sb)
xlFile, err := xlsx.OpenFile(excelDir + fileName + xlsxExtension)
if err != nil {
if wg != nil {
sb.WriteString(fmt.Sprintf("错误!没有找到[%v][%v]\n", fileName, err))
}
return false
}
buf := make([]byte, 0, 4096)
buffer := bytes.NewBuffer(buf)
buffer.WriteString("return {\n")
sheet := xlFile.Sheets[0] // 只读第一个Sheet
fields, fieldSize := parseHeader(fileName, sheet.Rows[1].Cells)
rows := sheet.Rows[2:] // 忽略前两列(第一列,策划描述,第二列定义程序用的格式)
mainKeySet := map[string]int{}
for rindex, row := range rows {
cellLen := len(row.Cells)
if cellLen == 0 { // 有空行就结束了
break
}
if cellLen < fieldSize {
sb.WriteString(fmt.Sprintf("[%s]字段数量不匹配,标题数量[%d], 当前[%d]行的字段数量[%d]!\n", fileName, fieldSize, rindex+2, len(row.Cells)))
return false
}
err, line, mainKeyValue := parseRow(fields, row.Cells)
if err != nil {
sb.WriteString(fmt.Sprintf("解析失败[%s][%v], 错误在第[%d]行!\n", fileName, err, rindex+2))
return false
}
if lastLineNum, ok := mainKeySet[mainKeyValue]; ok {
sb.WriteString(fmt.Sprintf("解析失败,相同的key重复出现[%s], 主键[%s], 之前行数[%v], 错误在第[%d]行!\n", fileName, mainKeyValue, lastLineNum, rindex+2))
return false
}
mainKeySet[mainKeyValue] = rindex + 2
buffer.WriteString(line + ",\n")
}
buffer.WriteString("}")
err = writeLuaFile(fileName, buffer.Bytes())
if err != nil {
sb.WriteString(fmt.Sprintf("写入文件失败[%s][%v]!\n", fileName, err))
return false
}
sb.WriteString(fmt.Sprintf("写入[%s]成功!\n", fileName))
return true
}
func parseFileName(x string) string {
fmt.Println("File ", x)
i := strings.LastIndex(x, ".")
chars := x[:i]
return chars
}
func findInArray(s string, strs []string) bool {
for _, v := range strs {
if s == v {
return true
}
}
return false
}
func outTables() {
wg = &sync.WaitGroup{}
for _, v := range luaFiles {
wg.Add(1)
go xls2lua(v)
}
wg.Wait()
}
func outOneTable() {
fmt.Println("请输入表格名称:")
for _, v := range luaFiles {
fmt.Println(v)
}
tabSelect:
var tab string
fmt.Scan(&tab)
if !findInArray(tab, luaFiles) {
fmt.Printf("错误!没有找到[%v], 请注意,大小写敏感!\n", tab)
fmt.Println("请输入表格名称:")
goto tabSelect
} else {
if !xls2lua(tab) {
fmt.Println("表格输出失败")
}
}
}
func readInputs() {
var i int
start:
fmt.Println("1.全部表格")
fmt.Println("2.单个表格")
fmt.Printf("请输入:")
fmt.Scan(&i)
switch i {
case 1:
outTables()
case 2:
outOneTable()
default:
goto start
}
}
func init() {
flag.StringVar(&excelDir, "e", "./excel", "excel directory")
flag.StringVar(&luaOut, "o", "./gameconf", "lua output directory")
flag.StringVar(&confDir, "c", "./config", "config file path")
flag.Parse()
}
func main() {
initConfigs()
fmt.Println()
readInputs()
fmt.Println("输入Q键退出")
scanner := bufio.NewScanner(os.Stdin)
for scanner.Scan() {
line := scanner.Text()
if line == "q" || line == "Q" {
break
}
}
}