2022-10-15 17:38:34 +08:00
|
|
|
|
package application
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
|
"fmt"
|
|
|
|
|
|
"mayfly-go/pkg/biz"
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------------- mysql元数据 -----------------------------------
|
|
|
|
|
|
const (
|
|
|
|
|
|
// mysql 表信息元数据
|
2022-10-16 14:22:19 +08:00
|
|
|
|
MYSQL_TABLE_MA = `SELECT table_name tableName, table_comment tableComment from information_schema.tables WHERE table_schema = (SELECT database())`
|
2022-10-15 17:38:34 +08:00
|
|
|
|
|
|
|
|
|
|
// mysql 表信息
|
|
|
|
|
|
MYSQL_TABLE_INFO = `SELECT table_name tableName, table_comment tableComment, table_rows tableRows,
|
|
|
|
|
|
data_length dataLength, index_length indexLength, create_time createTime
|
|
|
|
|
|
FROM information_schema.tables
|
2022-10-16 11:01:45 +08:00
|
|
|
|
WHERE table_schema = (SELECT database())`
|
2022-10-15 17:38:34 +08:00
|
|
|
|
|
|
|
|
|
|
// mysql 索引信息
|
2022-10-29 20:08:15 +08:00
|
|
|
|
MYSQL_INDEX_INFO = `SELECT index_name indexName, column_name columnName, index_type indexType, non_unique nonUnique,
|
2022-10-15 17:38:34 +08:00
|
|
|
|
SEQ_IN_INDEX seqInIndex, INDEX_COMMENT indexComment
|
|
|
|
|
|
FROM information_schema.STATISTICS
|
2022-10-29 20:08:15 +08:00
|
|
|
|
WHERE table_schema = (SELECT database()) AND table_name = '%s' ORDER BY index_name asc , SEQ_IN_INDEX asc`
|
2022-10-15 17:38:34 +08:00
|
|
|
|
|
|
|
|
|
|
// mysql 列信息元数据
|
2022-10-23 17:55:22 +08:00
|
|
|
|
MYSQL_COLUMN_MA = `SELECT table_name tableName, column_name columnName, column_type columnType, column_default columnDefault,
|
2022-10-15 17:38:34 +08:00
|
|
|
|
column_comment columnComment, column_key columnKey, extra, is_nullable nullable from information_schema.columns
|
2022-10-16 11:01:45 +08:00
|
|
|
|
WHERE table_schema = (SELECT database()) AND table_name in (%s) ORDER BY tableName, ordinal_position`
|
2022-10-15 17:38:34 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
type MysqlMetadata struct {
|
|
|
|
|
|
di *DbInstance
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 获取表基础元信息, 如表名等
|
|
|
|
|
|
func (mm *MysqlMetadata) GetTables() []map[string]interface{} {
|
2022-10-16 11:14:13 +08:00
|
|
|
|
res, err := mm.di.innerSelect(MYSQL_TABLE_MA)
|
|
|
|
|
|
biz.ErrIsNilAppendErr(err, "获取表基本信息失败: %s")
|
2022-10-15 17:38:34 +08:00
|
|
|
|
return res
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 获取列元信息, 如列名等
|
|
|
|
|
|
func (mm *MysqlMetadata) GetColumns(tableNames ...string) []map[string]interface{} {
|
2022-10-16 11:01:45 +08:00
|
|
|
|
tableName := ""
|
2022-10-15 17:38:34 +08:00
|
|
|
|
for i := 0; i < len(tableNames); i++ {
|
|
|
|
|
|
if i != 0 {
|
|
|
|
|
|
tableName = tableName + ", "
|
|
|
|
|
|
}
|
|
|
|
|
|
tableName = tableName + "'" + tableNames[i] + "'"
|
|
|
|
|
|
}
|
2022-10-16 11:01:45 +08:00
|
|
|
|
result, err := mm.di.innerSelect(fmt.Sprintf(MYSQL_COLUMN_MA, tableName))
|
|
|
|
|
|
biz.ErrIsNilAppendErr(err, "获取数据库列信息失败: %s")
|
|
|
|
|
|
return result
|
2022-10-15 17:38:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2022-11-23 20:48:37 +08:00
|
|
|
|
// 获取表主键字段名,不存在主键标识则默认第一个字段
|
2022-10-15 17:38:34 +08:00
|
|
|
|
func (mm *MysqlMetadata) GetPrimaryKey(tablename string) string {
|
|
|
|
|
|
columns := mm.GetColumns(tablename)
|
|
|
|
|
|
if len(columns) == 0 {
|
|
|
|
|
|
panic(biz.NewBizErr(fmt.Sprintf("[%s] 表不存在", tablename)))
|
|
|
|
|
|
}
|
2022-11-23 20:48:37 +08:00
|
|
|
|
for _, v := range columns {
|
|
|
|
|
|
if v["columnKey"].(string) == "PRI" {
|
|
|
|
|
|
return v["columnName"].(string)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-10-15 17:38:34 +08:00
|
|
|
|
return columns[0]["columnName"].(string)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 获取表信息,比GetTableMetedatas获取更详细的表信息
|
|
|
|
|
|
func (mm *MysqlMetadata) GetTableInfos() []map[string]interface{} {
|
2022-10-16 11:01:45 +08:00
|
|
|
|
res, err := mm.di.innerSelect(MYSQL_TABLE_INFO)
|
|
|
|
|
|
biz.ErrIsNilAppendErr(err, "获取表信息失败: %s")
|
2022-10-15 17:38:34 +08:00
|
|
|
|
return res
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 获取表索引信息
|
|
|
|
|
|
func (mm *MysqlMetadata) GetTableIndex(tableName string) []map[string]interface{} {
|
2022-10-16 11:01:45 +08:00
|
|
|
|
res, err := mm.di.innerSelect(fmt.Sprintf(MYSQL_INDEX_INFO, tableName))
|
|
|
|
|
|
biz.ErrIsNilAppendErr(err, "获取表索引信息失败: %s")
|
2022-10-29 20:08:15 +08:00
|
|
|
|
// 把查询结果以索引名分组,索引字段以逗号连接
|
|
|
|
|
|
result := make([]map[string]interface{}, 0)
|
|
|
|
|
|
key := ""
|
|
|
|
|
|
i := 0
|
|
|
|
|
|
for k, v := range res {
|
|
|
|
|
|
// 当前的索引名
|
|
|
|
|
|
in := v["indexName"].(string)
|
|
|
|
|
|
if key == in {
|
|
|
|
|
|
// 同索引字段以逗号连接
|
|
|
|
|
|
result[i]["columnName"] = result[i]["columnName"].(string) + "," + v["columnName"].(string)
|
|
|
|
|
|
} else {
|
|
|
|
|
|
i = k
|
|
|
|
|
|
key = in
|
|
|
|
|
|
result = append(result, v)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return result
|
2022-10-15 17:38:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 获取建表ddl
|
|
|
|
|
|
func (mm *MysqlMetadata) GetCreateTableDdl(tableName string) []map[string]interface{} {
|
2022-10-16 11:01:45 +08:00
|
|
|
|
res, _ := mm.di.innerSelect(fmt.Sprintf("show create table %s ", tableName))
|
2022-10-15 17:38:34 +08:00
|
|
|
|
return res
|
|
|
|
|
|
}
|
2022-12-17 22:24:21 +08:00
|
|
|
|
|
|
|
|
|
|
func (mm *MysqlMetadata) GetTableRecord(tableName string, pageNum, pageSize int) ([]string, []map[string]interface{}, error) {
|
|
|
|
|
|
return mm.di.SelectData(fmt.Sprintf("SELECT * FROM %s LIMIT %d, %d", tableName, (pageNum-1)*pageSize, pageSize))
|
|
|
|
|
|
}
|