-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdoc.go
398 lines (361 loc) · 10.8 KB
/
doc.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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
package main
import (
"log"
"strings"
"time"
)
//MakeDoc make doc file
func MakeDoc(srcDB *DB, conf *Config) {
// make md file.
out := &Output{}
if err := out.Init(conf.Output); err != nil {
log.Fatal(err, conf.Output)
}
defer out.Close(true)
// get table list.
srcTableNames, err := srcDB.GetObjectList(TABLE, conf.Include, conf.Exclude)
if err != nil {
log.Fatal(err)
}
// get view list..
srcViewNames, err := srcDB.GetObjectList(VIEW, conf.Include, conf.Exclude)
if err != nil {
log.Fatal(err)
}
srcFunctionNames, err := srcDB.GetObjectList(FUNCTION, conf.Include, conf.Exclude)
if err != nil {
log.Fatal(err)
}
srcProcedureNames, err := srcDB.GetObjectList(PROCEDURE, conf.Include, conf.Exclude)
if err != nil {
log.Fatal(err)
}
if conf.DiffType == "sql" {
out.Printf("-- Create Date : %s --\n", time.Now().Format("2006-01-02T15:04:05"))
// output sql file
out.Printf("-- DB : %s\n\n", srcDB.DBName)
// generate table.
{
// detail table ..
for _, srcTable := range srcTableNames {
out.Printf("-- %s\n", srcTable)
script, err := srcDB.GetScript(TABLE, srcTable)
if err != nil {
log.Fatal(err)
}
out.Println(script + ";")
out.Printf("\n\n")
}
}
// generate view
{
for _, v := range srcViewNames {
out.Printf("-- %s\n", v)
script, err := srcDB.GetScript(VIEW, v)
if err != nil {
log.Fatal(err)
}
out.Println(script + ";")
out.Printf("\n\n")
}
}
// generate function
{
for _, f := range srcFunctionNames {
out.Printf("-- %s\n", f)
out.Println("DELIMITER //")
script, err := srcDB.GetScript(FUNCTION, f)
if err != nil {
log.Fatal(err)
}
out.Println(script + "//")
out.Println("DELIMITER ;")
out.Printf("\n\n")
}
}
// generate procedure
{
for _, p := range srcProcedureNames {
out.Printf("-- %s\n", p)
out.Println("DELIMITER //")
script, err := srcDB.GetScript(PROCEDURE, p)
if err != nil {
log.Fatal(err)
}
out.Println(script + "//")
out.Println("DELIMITER ;")
out.Printf("\n\n")
}
}
} else if conf.DiffType == "md" {
out.Printf("-- Create Date : %s --\n", time.Now().Format("2006-01-02T15:04:05"))
// output md file.
out.Println("# Schema : ", srcDB.DBName)
// set table list table.
out.Printf("## Tables\n")
out.Println("| name | comments |")
out.Println("| :--- | :--- |")
var srcTables []*Table
for _, t := range srcTableNames {
srcTable := srcDB.GetTableInfo(t)
if srcTable == nil {
log.Fatal("load table info error", err)
}
out.Printf("| [%s](#%s) | %s |\n", srcTable.Name, MDReplace(srcTable.Name), srcTable.Comment)
srcTables = append(srcTables, srcTable)
}
out.Println("<div style='page-break-after: always;'></div>")
out.Printf("\n\n---\n")
// set view list table.
out.Printf("## Views\n")
out.Println("| name |")
out.Println("| :--- |")
for _, v := range srcViewNames {
out.Printf("| [%s](#%s) |\n", v, MDReplace(v))
}
out.Println("<div style='page-break-after: always;'></div>")
out.Printf("\n\n---\n")
// set function list.
// set table list table.
out.Printf("## Functions\n")
out.Println("| name | comments |")
out.Println("| :--- | :--- |")
for _, f := range srcFunctionNames {
out.Printf("| [%s](#%s) | %s |\n", f, MDReplace(f), srcDB.GetObjectComments(FUNCTION, f))
}
out.Println("<div style='page-break-after: always;'></div>")
out.Printf("\n\n---\n")
// set procedure list.
out.Printf("## Procedures\n")
out.Println("| name | comments |")
out.Println("| :--- | :--- |")
for _, p := range srcProcedureNames {
out.Printf("| [%s](#%s) | %s |\n", p, MDReplace(p), srcDB.GetObjectComments(PROCEDURE, p))
}
out.Println("<div style='page-break-after: always;'></div>")
out.Printf("\n\n---\n")
// generate table.
{
// detail table ..
for _, srcTable := range srcTables {
out.Printf("<div id='%s'></div>\n\n", MDReplace(srcTable.Name))
out.Printf("## %s\n", srcTable.Name)
out.Printf("> Comment : %s \n", srcTable.Comment)
out.Printf("> Engine : %s \n", srcTable.Engine)
out.Printf("> Collation : %s \n\n", srcTable.Collation)
// print column..
out.Printf("### Columns\n")
out.Println("| name | type | null | default | extra | comment |")
out.Println("| :--- | :--- | :--- | :--- | :--- | :--- |")
for i := 0; i < len(srcTable.Cols); i++ {
col := srcTable.GetColumn(i)
out.Printf("| %s | %s | %s | %s | %s | %s |\n", col.Name, col.Type, col.Null, col.Default, col.Extra, col.Comment)
}
// print index.
out.Printf("\n### Indexs\n")
out.Println("| name | columns | isnull |")
out.Println("| :--- | :--- | :--- |")
for _, idx := range srcTable.Indexs {
out.Printf("%s | %s | %t \n", idx.Name, strings.Join(idx.Cols, ","), idx.IsUnique)
}
out.Printf("\n### Create Script\n")
out.Println("```sql")
script, err := srcDB.GetScript(TABLE, srcTable.Name)
if err != nil {
log.Fatal(err)
}
out.Println(script)
out.Printf("```\n")
out.Println("[goto table list...](#tables)")
out.Println("<div style='page-break-after: always;'></div>")
out.Printf("\n\n")
}
}
// generate view
{
for _, v := range srcViewNames {
out.Printf("<div id='%s'></div>\n\n", MDReplace(v))
out.Printf("## %s\n\n\n", v)
out.Printf("### Create Script\n")
out.Println("```sql")
script, err := srcDB.GetScript(VIEW, v)
if err != nil {
log.Fatal(err)
}
out.Println(script)
out.Printf("```\n")
out.Println("[goto view list...](#views)")
out.Println("<div style='page-break-after: always;'></div>")
out.Printf("\n\n")
}
}
// generate function
{
for _, f := range srcFunctionNames {
out.Printf("<div id='%s'></div>\n\n", MDReplace(f))
out.Printf("## %s\n", f)
out.Printf("> Comment : %s \n\n\n", srcDB.GetObjectComments(FUNCTION, f))
out.Printf("### Create Script\n")
out.Println("```sql")
script, err := srcDB.GetScript(FUNCTION, f)
if err != nil {
log.Fatal(err)
}
out.Println(script)
out.Printf("```\n")
out.Println("[goto function list...](#functions)")
out.Println("<div style='page-break-after: always;'></div>")
out.Printf("\n\n")
}
}
// generate procedure
{
for _, p := range srcProcedureNames {
out.Printf("<div id='%s'></div>\n\n", MDReplace(p))
out.Printf("## %s\n", p)
out.Printf("> Comment : %s \n\n\n", srcDB.GetObjectComments(PROCEDURE, p))
out.Printf("### Create Script\n")
out.Println("```sql")
script, err := srcDB.GetScript(PROCEDURE, p)
if err != nil {
log.Fatal(err)
}
out.Println(script)
out.Printf("```\n")
out.Println("[goto procedure list...](#procedures)")
out.Println("<div style='page-break-after: always;'></div>")
out.Printf("\n\n")
}
}
} else if conf.DiffType == "wiki" {
out.Printf("-- Update Date : %s --\n", time.Now().Format("2006-01-02T15:04:05"))
// output confluence wiki file.
out.Println("h1. Schema : ", srcDB.DBName)
// set table list table.
out.Printf("h3. Tables\n")
out.Println("||name||comments||")
var srcTables []*Table
for _, t := range srcTableNames {
srcTable := srcDB.GetTableInfo(t)
if srcTable == nil {
log.Fatal("load table info error", err)
}
out.Printf("|[%s|#%s]|%s |\n", srcTable.Name, WikiReplace(srcTable.Name), srcTable.Comment)
srcTables = append(srcTables, srcTable)
}
out.Printf("\\\\")
out.Printf("\n\n----\n")
// set view list table.
out.Printf("h3. Views\n")
out.Println("||name||")
for _, v := range srcViewNames {
out.Printf("|[%s|#%s]|\n", v, WikiReplace(v))
}
out.Printf("\\\\")
out.Printf("\n\n----\n")
// set function list.
// set table list table.
out.Printf("h3. Functions\n")
out.Println("||name||comments||")
for _, f := range srcFunctionNames {
out.Printf("|[%s|#%s]|%s |\n", f, WikiReplace(f), srcDB.GetObjectComments(FUNCTION, f))
}
out.Printf("\\\\")
out.Printf("\n\n----\n")
// set procedure list.
out.Printf("h3. Procedures\n")
out.Println("||name||comments||")
for _, p := range srcProcedureNames {
out.Printf("|[%s|#%s]|%s |\n", p, WikiReplace(p), srcDB.GetObjectComments(PROCEDURE, p))
}
out.Printf("\\\\")
out.Printf("\n\n----\n")
out.Printf("\n\n----\n")
// generate table doc.
{
// detail table ..
for _, srcTable := range srcTables {
out.Printf("h3. %s\n", srcTable.Name)
out.Printf("bq. Comment : %s\\\\", srcTable.Comment)
out.Printf("Engine : %s\\\\", srcTable.Engine)
out.Printf("Collation : %s\\\\", srcTable.Collation)
// print column..
out.Printf("\nh5. Columns\n")
out.Println("||name||type||null||default||extra||comment||")
for i := 0; i < len(srcTable.Cols); i++ {
col := srcTable.GetColumn(i)
out.Printf("| %s | %s | %s | %s | %s | %s |\n", col.Name, col.Type, col.Null, col.Default, col.Extra, col.Comment)
}
// print index.
out.Printf("\nh5. Indexs\n")
out.Println("||name||columns||isnull||")
for _, idx := range srcTable.Indexs {
out.Printf("| %s | %s | %t |\n", idx.Name, strings.Join(idx.Cols, ","), idx.IsUnique)
}
out.Printf("\nh5. Create Script\n")
out.Println("{code:theme=RDark|language=SQL}")
script, err := srcDB.GetScript(TABLE, srcTable.Name)
if err != nil {
log.Fatal(err)
}
out.Println(script)
out.Println("{code}")
out.Println("[goto table list...|#Tables]")
out.Printf("\\\\")
out.Printf("\n\n----\n")
}
}
// generate view
{
for _, v := range srcViewNames {
out.Printf("h3. %s\n\n\n", v)
out.Printf("\nh5. Create Script\n")
out.Println("{code:theme=RDark|language=SQL}")
script, err := srcDB.GetScript(VIEW, v)
if err != nil {
log.Fatal(err)
}
out.Println(script)
out.Printf("{code}\n")
out.Println("[goto view list...|#Views]")
out.Printf("\n\n----\n")
}
}
// generate function
{
for _, f := range srcFunctionNames {
out.Printf("h3. %s\n", f)
out.Printf("bq. Comment : %s \n\n\n", srcDB.GetObjectComments(FUNCTION, f))
out.Printf("\nh5. Create Script\n")
out.Println("{code:theme=RDark|language=SQL}")
script, err := srcDB.GetScript(FUNCTION, f)
if err != nil {
log.Fatal(err)
}
out.Println(script)
out.Printf("{code}\n")
out.Println("[goto function list...|#Functions]")
out.Printf("\n\n----\n")
}
}
// generate procedure
{
for _, p := range srcProcedureNames {
out.Printf("h3. %s\n", p)
out.Printf("bq. Comment : %s \n\n\n", srcDB.GetObjectComments(PROCEDURE, p))
out.Printf("\nh5. Create Script\n")
out.Println("{code:theme=RDark|language=SQL}")
script, err := srcDB.GetScript(PROCEDURE, p)
if err != nil {
log.Fatal(err)
}
out.Println(script)
out.Printf("{code}\n")
out.Println("[goto procedure list...|#Procedures]")
out.Printf("\n\n----\n")
}
}
} else {
log.Fatal("invalid diff_type")
}
}