show.go 16.3 KB
Newer Older
martianzhang's avatar
martianzhang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * Copyright 2018 Xiaomi, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package database

import (
	"fmt"
	"regexp"
	"strconv"
	"strings"
24 25

	"github.com/XiaoMi/soar/common"
martianzhang's avatar
martianzhang 已提交
26 27 28 29 30 31 32 33 34 35 36 37
)

// SHOW TABLE STATUS Syntax
// https://dev.mysql.com/doc/refman/5.7/en/show-table-status.html

// TableStatInfo 用以保存 show table status 之后获取的table信息
type TableStatInfo struct {
	Name string
	Rows []tableStatusRow
}

// tableStatusRow 用于 show table status value
38
// use []byte instead of string, because []byte allow to be null, string not
martianzhang's avatar
martianzhang 已提交
39 40
type tableStatusRow struct {
	Name         string // 表名
41 42 43
	Engine       []byte // 该表使用的存储引擎
	Version      []byte // 该表的 .frm 文件版本号
	RowFormat    []byte // 该表使用的行存储格式
martianzhang's avatar
martianzhang 已提交
44
	Rows         int64  // 表行数, InnoDB 引擎中为预估值,甚至可能会有40%~50%的数值偏差
martianzhang's avatar
martianzhang 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
	AvgRowLength int    // 平均行长度

	// MyISAM: Data_length 为数据文件的大小,单位为 bytes
	// InnoDB: Data_length 为聚簇索引分配的近似内存量,单位为 bytes, 计算方式为聚簇索引数量乘以 InnoDB 页面大小
	// 其他不同的存储引擎中该值的意义可能不尽相同
	DataLength int

	// MyISAM: Max_data_length 为数据文件长度的最大值。这是在给定使用的数据指针大小的情况下,可以存储在表中的数据的最大字节数
	// InnoDB: 未使用
	// 其他不同的存储引擎中该值的意义可能不尽相同
	MaxDataLength int

	// MyISAM: Index_length 为 index 文件的大小,单位为 bytes
	// InnoDB: Index_length 为非聚簇索引分配的近似内存量,单位为 bytes,计算方式为非聚簇索引数量乘以 InnoDB 页面大小
	// 其他不同的存储引擎中该值的意义可能不尽相同
	IndexLength int

62 63 64 65 66 67 68 69 70
	DataFree      int    // 已分配但未使用的字节数
	AutoIncrement []byte // 下一个自增值
	CreateTime    []byte // 创建时间
	UpdateTime    []byte // 最近一次更新时间,该值不准确
	CheckTime     []byte // 上次检查时间
	Collation     []byte // 字符集及排序规则信息
	Checksum      []byte // 校验和
	CreateOptions []byte // 创建表的时候的时候一切其他属性
	Comment       []byte // 注释
martianzhang's avatar
martianzhang 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
}

// newTableStat 构造 table Stat 对象
func newTableStat(tableName string) *TableStatInfo {
	return &TableStatInfo{
		Name: tableName,
		Rows: make([]tableStatusRow, 0),
	}
}

// ShowTables 执行 show tables
func (db *Connector) ShowTables() ([]string, error) {
	defer func() {
		err := recover()
		if err != nil {
86
			common.Log.Error("recover ShowTables()", err)
martianzhang's avatar
martianzhang 已提交
87 88 89 90 91 92 93 94 95 96 97
		}
	}()

	// 执行 show table status
	res, err := db.Query("show tables")
	if err != nil {
		return []string{}, err
	}

	// 获取值
	var tables []string
98 99 100 101 102 103 104
	for res.Rows.Next() {
		var table string
		err = res.Rows.Scan(&table)
		if err != nil {
			return []string{}, err
		}
		tables = append(tables, table)
martianzhang's avatar
martianzhang 已提交
105 106 107 108 109 110 111
	}
	return tables, err
}

// ShowTableStatus 执行 show table status
func (db *Connector) ShowTableStatus(tableName string) (*TableStatInfo, error) {
	// 初始化struct
112
	tbStatus := newTableStat(tableName)
martianzhang's avatar
martianzhang 已提交
113 114

	// 执行 show table status
115
	res, err := db.Query(fmt.Sprintf("show table status where name = '%s'", tbStatus.Name))
martianzhang's avatar
martianzhang 已提交
116
	if err != nil {
117 118
		return tbStatus, err
	}
martianzhang's avatar
martianzhang 已提交
119

120
	// columns info
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
	ts := tableStatusRow{}
	statusFields := make([]interface{}, 0)
	fields := map[string]interface{}{
		"Name":            &ts.Name,
		"Engine":          &ts.Engine,
		"Version":         &ts.Version,
		"Row_format":      &ts.RowFormat,
		"Rows":            &ts.Rows,
		"Avg_row_length":  &ts.AvgRowLength,
		"Data_length":     &ts.DataLength,
		"Max_data_length": &ts.MaxDataLength,
		"Index_length":    &ts.IndexLength,
		"Data_free":       &ts.DataFree,
		"Auto_increment":  &ts.AutoIncrement,
		"Create_time":     &ts.CreateTime,
		"Update_time":     &ts.UpdateTime,
		"Check_time":      &ts.CheckTime,
		"Collation":       &ts.Collation,
		"Checksum":        &ts.Checksum,
		"Create_options":  &ts.CreateOptions,
		"Comment":         &ts.Comment,
	}
	cols, err := res.Rows.Columns()
	common.LogIfError(err, "")
	for _, col := range cols {
		statusFields = append(statusFields, fields[col])
	}
martianzhang's avatar
martianzhang 已提交
148
	// 获取值
149 150 151
	for res.Rows.Next() {
		res.Rows.Scan(statusFields...)
		tbStatus.Rows = append(tbStatus.Rows, ts)
martianzhang's avatar
martianzhang 已提交
152
	}
153
	return tbStatus, err
martianzhang's avatar
martianzhang 已提交
154 155 156 157 158 159 160
}

// https://dev.mysql.com/doc/refman/5.7/en/show-index.html

// TableIndexInfo 用以保存 show index 之后获取的 index 信息
type TableIndexInfo struct {
	TableName string
161
	Rows      []TableIndexRow
martianzhang's avatar
martianzhang 已提交
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
}

// TableIndexRow 用以存放show index之后获取的每一条index信息
type TableIndexRow struct {
	Table        string // 表名
	NonUnique    int    // 0:unique key,1:not unique
	KeyName      string // index的名称,如果是主键则为 "PRIMARY"
	SeqInIndex   int    // 该列在索引中的位置。计数从 1 开始
	ColumnName   string // 列名
	Collation    string // A or Null
	Cardinality  int    // 索引中唯一值的数量,"ANALYZE TABLE" 可更新该值
	SubPart      int    // 索引前缀字节数
	Packed       int
	Null         string // 表示该列是否可以为空,如果可以为 'YES',反之''
	IndexType    string // BTREE, FULLTEXT, HASH, RTREE
	Comment      string
	IndexComment string
179
	Visible      string
180
	Expression   []byte
martianzhang's avatar
martianzhang 已提交
181 182 183 184 185 186
}

// NewTableIndexInfo 构造 TableIndexInfo
func NewTableIndexInfo(tableName string) *TableIndexInfo {
	return &TableIndexInfo{
		TableName: tableName,
187
		Rows:      make([]TableIndexRow, 0),
martianzhang's avatar
martianzhang 已提交
188 189 190 191 192 193 194
	}
}

// ShowIndex show Index
func (db *Connector) ShowIndex(tableName string) (*TableIndexInfo, error) {
	tbIndex := NewTableIndexInfo(tableName)

195 196 197 198
	if db.Database == "" || tableName == "" {
		return nil, fmt.Errorf("database('%s') or table('%s') name should not empty", db.Database, tableName)
	}

martianzhang's avatar
martianzhang 已提交
199
	// 执行 show create table
200
	res, err := db.Query(fmt.Sprintf("show index from `%s`.`%s`", db.Database, tableName))
martianzhang's avatar
martianzhang 已提交
201 202 203 204
	if err != nil {
		return nil, err
	}

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
	// columns info
	ti := TableIndexRow{}
	indexFields := make([]interface{}, 0)
	fields := map[string]interface{}{
		"Table":         &ti.Table,
		"Non_unique":    &ti.NonUnique,
		"Key_name":      &ti.KeyName,
		"Seq_in_index":  &ti.SeqInIndex,
		"Column_name":   &ti.ColumnName,
		"Collation":     &ti.Collation,
		"Cardinality":   &ti.Cardinality,
		"Sub_part":      &ti.SubPart,
		"Packed":        &ti.Packed,
		"Null":          &ti.Null,
		"Index_type":    &ti.IndexType,
		"Comment":       &ti.Comment,
		"Index_comment": &ti.IndexComment,
		"Visible":       &ti.Visible,
		"Expression":    &ti.Expression,
	}
	cols, err := res.Rows.Columns()
	common.LogIfError(err, "")
	for _, col := range cols {
		indexFields = append(indexFields, fields[col])
	}
martianzhang's avatar
martianzhang 已提交
230
	// 获取值
231
	for res.Rows.Next() {
232
		res.Rows.Scan(indexFields...)
233
		tbIndex.Rows = append(tbIndex.Rows, ti)
martianzhang's avatar
martianzhang 已提交
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
	}
	return tbIndex, err
}

// IndexSelectKey 用以对 TableIndexInfo 进行查询
type IndexSelectKey string

// 索引相关
const (
	IndexKeyName    = IndexSelectKey("KeyName")    // 索引名称
	IndexColumnName = IndexSelectKey("ColumnName") // 索引列名称
	IndexIndexType  = IndexSelectKey("IndexType")  // 索引类型
	IndexNonUnique  = IndexSelectKey("NonUnique")  // 唯一索引
)

249
// FindIndex 获取 TableIndexInfo 中需要的索引
martianzhang's avatar
martianzhang 已提交
250 251 252 253 254 255 256 257 258 259
func (tbIndex *TableIndexInfo) FindIndex(arg IndexSelectKey, value string) []TableIndexRow {
	var result []TableIndexRow
	if tbIndex == nil {
		return result
	}

	value = strings.ToLower(value)

	switch arg {
	case IndexKeyName:
260
		for _, index := range tbIndex.Rows {
martianzhang's avatar
martianzhang 已提交
261 262 263 264 265 266
			if strings.ToLower(index.KeyName) == value {
				result = append(result, index)
			}
		}

	case IndexColumnName:
267
		for _, index := range tbIndex.Rows {
martianzhang's avatar
martianzhang 已提交
268 269 270 271 272 273
			if strings.ToLower(index.ColumnName) == value {
				result = append(result, index)
			}
		}

	case IndexIndexType:
274
		for _, index := range tbIndex.Rows {
martianzhang's avatar
martianzhang 已提交
275 276 277 278 279 280
			if strings.ToLower(index.IndexType) == value {
				result = append(result, index)
			}
		}

	case IndexNonUnique:
281
		for _, index := range tbIndex.Rows {
martianzhang's avatar
martianzhang 已提交
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
			unique := strconv.Itoa(index.NonUnique)
			if unique == value {
				result = append(result, index)
			}
		}

	default:
		common.Log.Error("no such args: TableIndexRow")
	}

	return result
}

// desc table
// https://dev.mysql.com/doc/refman/5.7/en/show-columns.html

// TableDesc show columns from rental;
type TableDesc struct {
	Name       string
	DescValues []TableDescValue
}

// TableDescValue 含有每一列的属性
type TableDescValue struct {
	Field      string // 列名
	Type       string // 数据类型
308
	Collation  []byte // 字符集
martianzhang's avatar
martianzhang 已提交
309 310
	Null       string // 是否有NULL(NO、YES)
	Key        string // 键类型
311
	Default    []byte // 默认值
martianzhang's avatar
martianzhang 已提交
312
	Extra      string // 其他
313
	Privileges string // 权限
martianzhang's avatar
martianzhang 已提交
314 315 316 317 318 319 320 321 322 323 324
	Comment    string // 备注
}

// NewTableDesc 初始化一个*TableDesc
func NewTableDesc(tableName string) *TableDesc {
	return &TableDesc{
		Name:       tableName,
		DescValues: make([]TableDescValue, 0),
	}
}

martianzhang's avatar
martianzhang 已提交
325
// ShowColumns 获取 DB 中所有的 columns
martianzhang's avatar
martianzhang 已提交
326 327 328 329
func (db *Connector) ShowColumns(tableName string) (*TableDesc, error) {
	tbDesc := NewTableDesc(tableName)

	// 执行 show create table
330
	res, err := db.Query(fmt.Sprintf("show full columns from `%s`.`%s`", db.Database, tableName))
martianzhang's avatar
martianzhang 已提交
331 332 333 334
	if err != nil {
		return nil, err
	}

335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
	// columns info
	tc := TableDescValue{}
	columnFields := make([]interface{}, 0)
	fields := map[string]interface{}{
		"Field":      &tc.Field,
		"Type":       &tc.Type,
		"Collation":  &tc.Collation,
		"Null":       &tc.Null,
		"Key":        &tc.Key,
		"Default":    &tc.Default,
		"Extra":      &tc.Extra,
		"Privileges": &tc.Privileges,
		"Comment":    &tc.Comment,
	}
	cols, err := res.Rows.Columns()
	common.LogIfError(err, "")
	for _, col := range cols {
		columnFields = append(columnFields, fields[col])
	}

martianzhang's avatar
martianzhang 已提交
355
	// 获取值
356
	for res.Rows.Next() {
357
		res.Rows.Scan(columnFields...)
358
		tbDesc.DescValues = append(tbDesc.DescValues, tc)
martianzhang's avatar
martianzhang 已提交
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
	}
	return tbDesc, err
}

// Columns 用于获取TableDesc中所有列的名称
func (td TableDesc) Columns() []string {
	var cols []string
	for _, col := range td.DescValues {
		cols = append(cols, col.Field)
	}
	return cols
}

// showCreate show create
func (db *Connector) showCreate(createType, name string) (string, error) {
martianzhang's avatar
martianzhang 已提交
374 375
	// 执行 show create table|database
	// createType = [table|database]
376
	res, err := db.Query(fmt.Sprintf("show create %s `%s`", createType, name))
martianzhang's avatar
martianzhang 已提交
377 378 379 380
	if err != nil {
		return "", err
	}

381 382 383 384
	// 获取 CREATE TABLE 语句
	var tableName, createTable string
	for res.Rows.Next() {
		res.Rows.Scan(&tableName, &createTable)
martianzhang's avatar
martianzhang 已提交
385 386
	}

387
	return createTable, err
martianzhang's avatar
martianzhang 已提交
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
}

// ShowCreateDatabase show create database
func (db *Connector) ShowCreateDatabase(dbName string) (string, error) {
	defer func() {
		err := recover()
		if err != nil {
			common.Log.Error("recover ShowCreateDatabase()", err)
		}
	}()
	return db.showCreate("database", dbName)
}

// ShowCreateTable show create table
func (db *Connector) ShowCreateTable(tableName string) (string, error) {
	defer func() {
		err := recover()
		if err != nil {
			common.Log.Error("recover ShowCreateTable()", err)
		}
	}()

	ddl, err := db.showCreate("table", tableName)

	// 去除外键关联条件
	var noConstraint []string
	relationReg, _ := regexp.Compile("CONSTRAINT")
	for _, line := range strings.Split(ddl, "\n") {

		if relationReg.Match([]byte(line)) {
			continue
		}

		// 去除外键语句会使DDL中多一个','导致语法错误,要把多余的逗号去除
		if strings.Index(line, ")") == 0 {
			lineWrongSyntax := noConstraint[len(noConstraint)-1]
			// 如果')'前一句的末尾是',' 删除 ',' 保证语法正确性
			if strings.Index(lineWrongSyntax, ",") == len(lineWrongSyntax)-1 {
				noConstraint[len(noConstraint)-1] = lineWrongSyntax[:len(lineWrongSyntax)-1]
			}
		}

		noConstraint = append(noConstraint, line)
	}

	return strings.Join(noConstraint, "\n"), err
}

// FindColumn find column
func (db *Connector) FindColumn(name, dbName string, tables ...string) ([]*common.Column, error) {
	// 执行 show create table
	var columns []*common.Column
	sql := fmt.Sprintf("SELECT "+
		"c.TABLE_NAME,c.TABLE_SCHEMA,c.COLUMN_TYPE,c.CHARACTER_SET_NAME, c.COLLATION_NAME "+
		"FROM `INFORMATION_SCHEMA`.`COLUMNS` as c where c.COLUMN_NAME = '%s' ", name)

444 445 446 447
	if dbName != "" {
		sql += fmt.Sprintf(" and c.table_schema = '%s'", dbName)
	}

martianzhang's avatar
martianzhang 已提交
448 449 450 451 452 453 454 455
	if len(tables) > 0 {
		var tmp []string
		for _, table := range tables {
			tmp = append(tmp, "'"+table+"'")
		}
		sql += fmt.Sprintf(" and c.table_name in (%s)", strings.Join(tmp, ","))
	}

456
	common.Log.Debug("FindColumn, execute SQL: %s", sql)
martianzhang's avatar
martianzhang 已提交
457 458 459 460 461 462
	res, err := db.Query(sql)
	if err != nil {
		common.Log.Error("(db *Connector) FindColumn Error : ", err)
		return columns, err
	}

463 464
	var col common.Column
	for res.Rows.Next() {
martianzhang's avatar
martianzhang 已提交
465 466 467
		var character, collation []byte
		res.Rows.Scan(
			&col.Table,
468 469
			&col.DB,
			&col.DataType,
470
			&character,
martianzhang's avatar
martianzhang 已提交
471 472 473 474 475
			&collation,
		)
		col.Name = name
		col.Character = string(character)
		col.Collation = string(collation)
martianzhang's avatar
martianzhang 已提交
476 477 478 479 480 481 482 483
		// 填充字符集和排序规则
		if col.Character == "" {
			// 当从`INFORMATION_SCHEMA`.`COLUMNS`表中查询不到相关列的character和collation的信息时
			// 认为该列使用的character和collation与其所处的表一致
			// 由于`INFORMATION_SCHEMA`.`TABLES`表中未找到表的character,所以从按照MySQL中collation的规则从中截取character

			sql = fmt.Sprintf("SELECT `t`.`TABLE_COLLATION` FROM `INFORMATION_SCHEMA`.`TABLES` AS `t` "+
				"WHERE `t`.`TABLE_NAME`='%s' AND `t`.`TABLE_SCHEMA` = '%s'", col.Table, col.DB)
484 485 486

			common.Log.Debug("FindColumn, execute SQL: %s", sql)
			var newRes QueryResult
martianzhang's avatar
martianzhang 已提交
487 488 489 490 491 492
			newRes, err = db.Query(sql)
			if err != nil {
				common.Log.Error("(db *Connector) FindColumn Error : ", err)
				return columns, err
			}

493
			var tbCollation []byte
494 495 496
			if newRes.Rows.Next() {
				newRes.Rows.Scan(&tbCollation)
			}
497 498 499
			if string(tbCollation) != "" {
				col.Character = strings.Split(string(tbCollation), "_")[0]
				col.Collation = string(tbCollation)
martianzhang's avatar
martianzhang 已提交
500 501
			}
		}
502
		columns = append(columns, &col)
martianzhang's avatar
martianzhang 已提交
503 504 505 506
	}
	return columns, err
}

507 508
// IsForeignKey 判断列是否是外键
func (db *Connector) IsForeignKey(dbName, tbName, column string) bool {
martianzhang's avatar
martianzhang 已提交
509 510 511 512 513 514
	sql := fmt.Sprintf("SELECT REFERENCED_COLUMN_NAME FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE C "+
		"WHERE REFERENCED_TABLE_SCHEMA <> 'NULL' AND"+
		" TABLE_NAME='%s' AND"+
		" TABLE_SCHEMA='%s' AND"+
		" COLUMN_NAME='%s'", tbName, dbName, column)

515
	common.Log.Debug("IsForeignKey, execute SQL: %s", sql)
martianzhang's avatar
martianzhang 已提交
516
	res, err := db.Query(sql)
517 518 519 520 521 522 523
	if err != nil {
		common.Log.Error("IsForeignKey, Error: %s", err.Error())
		return false
	}
	if res.Rows.Next() {
		return true
	}
martianzhang's avatar
martianzhang 已提交
524

525
	return false
martianzhang's avatar
martianzhang 已提交
526 527 528 529 530 531 532
}

// Reference 用于存储关系
type Reference map[string][]ReferenceValue

// ReferenceValue 用于处理表之间的关系
type ReferenceValue struct {
533 534 535 536 537
	ReferencedTableSchema string // 夫表所属数据库
	ReferencedTableName   string // 父表
	TableSchema           string // 子表所属数据库
	TableName             string // 子表
	ConstraintName        string // 关系名称
martianzhang's avatar
martianzhang 已提交
538 539 540 541 542
}

// ShowReference 查找所有的外键信息
func (db *Connector) ShowReference(dbName string, tbName ...string) ([]ReferenceValue, error) {
	var referenceValues []ReferenceValue
543
	sql := `SELECT DISTINCT C.REFERENCED_TABLE_SCHEMA,C.REFERENCED_TABLE_NAME,C.TABLE_SCHEMA,C.TABLE_NAME,C.CONSTRAINT_NAME FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE C JOIN INFORMATION_SCHEMA. TABLES T ON T.TABLE_NAME = C.TABLE_NAME WHERE C.REFERENCED_TABLE_NAME IS NOT NULL`
martianzhang's avatar
martianzhang 已提交
544 545 546 547 548 549 550
	sql = sql + fmt.Sprintf(` AND C.TABLE_SCHEMA = "%s"`, dbName)

	if len(tbName) > 0 {
		extra := fmt.Sprintf(` AND C.TABLE_NAME IN ("%s")`, strings.Join(tbName, `","`))
		sql = sql + extra
	}

551
	common.Log.Debug("ShowReference, execute SQL: %s", sql)
martianzhang's avatar
martianzhang 已提交
552 553 554 555 556 557 558
	// 执行SQL查找外键关联关系
	res, err := db.Query(sql)
	if err != nil {
		return referenceValues, err
	}

	// 获取值
559 560 561 562 563 564 565 566
	for res.Rows.Next() {
		var rv ReferenceValue
		res.Rows.Scan(&rv.ReferencedTableSchema,
			&rv.ReferencedTableName,
			&rv.TableSchema,
			&rv.TableName,
			&rv.ConstraintName)
		referenceValues = append(referenceValues, rv)
martianzhang's avatar
martianzhang 已提交
567 568 569 570
	}

	return referenceValues, err
}