-
Notifications
You must be signed in to change notification settings - Fork 0
/
ls.go
167 lines (125 loc) · 3.95 KB
/
ls.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
package ls
import (
"github.com/macinnir/dvc/core/lib"
"go.uber.org/zap"
)
const CommandName = "ls"
// Ls lists database information
// TODO search fields
// TODO select from tables
// TODO show row counts in a table
func Cmd(logger *zap.Logger, config *lib.Config, args []string) error {
return nil
// database, e := lib.LoadSchema(config.Databases[0])
// if e != nil {
// return e
// }
// // Options
// // ls Show all Tables
// // ls [name] Show all Columns in table [name] is found
// // ls [partialName] Show all tables with name containing [partialName]
// // ls .[fieldPartialName] Show all columns with name containing [fieldPartialName]
// // ls - Show all tables
// fmt.Println("args", args)
// if len(args) == 0 {
// results := database.ToSortedTables()
// t := lib.NewCLITable([]string{"Table", "Columns", "Collation", "Engine", "Row Format"})
// for _, table := range results {
// t.Row()
// t.Col(table.Name)
// t.Colf("%d", len(table.Columns))
// t.Col(table.Collation)
// t.Col(table.Engine)
// t.Col(table.RowFormat)
// }
// fmt.Println(t.String())
// return
// }
// // ls .[fieldPartialName] - Show all columns with names containing [fieldPartialName]
// if strings.HasPrefix(args[0], ".") {
// if args[0] == "." {
// return
// }
// fieldSearch := strings.Trim(strings.ToLower(args[0][1:]), " ")
// fmt.Printf("Searching all fields for `%s`\n", fieldSearch)
// sortedTables := database.ToSortedTables()
// columns := []*schema.ColumnWithTable{}
// for j := range sortedTables {
// for k := range sortedTables[j].Columns {
// if strings.Contains(strings.ToLower(sortedTables[j].Columns[k].Name), fieldSearch) {
// column := &schema.ColumnWithTable{
// Column: sortedTables[j].Columns[k],
// TableName: sortedTables[j].Name,
// }
// columns = append(columns, column)
// }
// }
// }
// t := lib.NewCLITable([]string{"Table", "Name", "Type", "MaxLength", "Null", "Default", "Extra", "Key"})
// for _, col := range columns {
// t.Row()
// t.Col(col.TableName)
// t.Col(col.Name)
// t.Col(col.DataType)
// t.Colf("%d", col.MaxLength)
// if col.IsNullable {
// t.Col("YES")
// } else {
// t.Col("NO")
// }
// t.Col(col.Default)
// t.Col(col.Extra)
// t.Col(col.ColumnKey)
// }
// fmt.Println(t.String())
// return
// }
// tableName := strings.Trim(strings.ToLower(args[0]), " ")
// // findTable
// for k := range database.Tables {
// if strings.ToLower(database.Tables[k].Name) == tableName {
// tableName = database.Tables[k].Name
// // Found
// break
// }
// }
// // ls [tableName] - Show all column in the table [tableName]
// if _, ok := database.Tables[tableName]; ok {
// fmt.Printf("Listing all columns for table `%s`\n", tableName)
// table := database.Tables[tableName]
// sortedColumns := table.ToSortedColumns()
// t := lib.NewCLITable([]string{"Name", "Type", "MaxLength", "Null", "Default", "Extra", "Key"})
// for _, col := range sortedColumns {
// t.Row()
// t.Col(col.Name)
// t.Col(col.DataType)
// t.Colf("%d", col.MaxLength)
// if col.IsNullable {
// t.Col("YES")
// } else {
// t.Col("NO")
// }
// t.Col(col.Default)
// t.Col(col.Extra)
// t.Col(col.ColumnKey)
// }
// fmt.Println(t.String())
// return
// }
// // ls [partialTableName] - Show all tables with name containing [partialTableName]
// sortedTables := database.ToSortedTables()
// tableSearch := strings.Trim(strings.ToLower(args[0]), " ")
// t := lib.NewCLITable([]string{"Table", "Columns", "Collation", "Engine", "Row Format"})
// for _, table := range sortedTables {
// if !strings.Contains(strings.ToLower(table.Name), tableSearch) {
// continue
// }
// t.Row()
// t.Col(table.Name)
// t.Colf("%d", len(table.Columns))
// t.Col(table.Collation)
// t.Col(table.Engine)
// t.Col(table.RowFormat)
// }
// fmt.Println(t.String())
}