show.go 15.1 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
/*
 * 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"
21
	"github.com/XiaoMi/soar/common"
martianzhang's avatar
martianzhang 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
	"regexp"
	"strconv"
	"strings"
)

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

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

// 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 {
85
			common.Log.Error("recover ShowTables()", err)
martianzhang's avatar
martianzhang 已提交
86 87 88 89 90 91 92 93 94 95 96
		}
	}()

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

	// 获取值
	var tables []string
97 98 99 100 101 102 103
	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 已提交
104 105 106 107 108 109 110
	}
	return tables, err
}

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

	// 执行 show table status
114
	res, err := db.Query(fmt.Sprintf("show table status where name = '%s'", tbStatus.Name))
martianzhang's avatar
martianzhang 已提交
115
	if err != nil {
116 117
		return tbStatus, err
	}
martianzhang's avatar
martianzhang 已提交
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
	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 已提交
146
	// 获取值
147 148 149
	for res.Rows.Next() {
		res.Rows.Scan(statusFields...)
		tbStatus.Rows = append(tbStatus.Rows, ts)
martianzhang's avatar
martianzhang 已提交
150
	}
151
	return tbStatus, err
martianzhang's avatar
martianzhang 已提交
152 153 154 155 156 157 158
}

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

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

// 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
177
	Visible      string
martianzhang's avatar
martianzhang 已提交
178 179 180 181 182 183
}

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

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

	// 执行 show create table
193
	res, err := db.Query(fmt.Sprintf("show index from `%s`.`%s`", db.Database, tableName))
martianzhang's avatar
martianzhang 已提交
194 195 196 197 198
	if err != nil {
		return nil, err
	}

	// 获取值
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
	for res.Rows.Next() {
		var ti TableIndexRow
		res.Rows.Scan(&ti.Table,
			&ti.NonUnique,
			&ti.KeyName,
			&ti.SeqInIndex,
			&ti.ColumnName,
			&ti.Collation,
			&ti.Cardinality,
			&ti.SubPart,
			&ti.Packed,
			&ti.Null,
			&ti.IndexType,
			&ti.Comment,
			&ti.IndexComment,
			&ti.Visible)
		tbIndex.Rows = append(tbIndex.Rows, ti)
martianzhang's avatar
martianzhang 已提交
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
	}
	return tbIndex, err
}

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

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

231
// FindIndex 获取 TableIndexInfo 中需要的索引
martianzhang's avatar
martianzhang 已提交
232 233 234 235 236 237 238 239 240 241
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:
242
		for _, index := range tbIndex.Rows {
martianzhang's avatar
martianzhang 已提交
243 244 245 246 247 248
			if strings.ToLower(index.KeyName) == value {
				result = append(result, index)
			}
		}

	case IndexColumnName:
249
		for _, index := range tbIndex.Rows {
martianzhang's avatar
martianzhang 已提交
250 251 252 253 254 255
			if strings.ToLower(index.ColumnName) == value {
				result = append(result, index)
			}
		}

	case IndexIndexType:
256
		for _, index := range tbIndex.Rows {
martianzhang's avatar
martianzhang 已提交
257 258 259 260 261 262
			if strings.ToLower(index.IndexType) == value {
				result = append(result, index)
			}
		}

	case IndexNonUnique:
263
		for _, index := range tbIndex.Rows {
martianzhang's avatar
martianzhang 已提交
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
			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 // 数据类型
290
	Collation  []byte // 字符集
martianzhang's avatar
martianzhang 已提交
291 292
	Null       string // 是否有NULL(NO、YES)
	Key        string // 键类型
293
	Default    []byte // 默认值
martianzhang's avatar
martianzhang 已提交
294
	Extra      string // 其他
295
	Privileges string // 权限
martianzhang's avatar
martianzhang 已提交
296 297 298 299 300 301 302 303 304 305 306
	Comment    string // 备注
}

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

martianzhang's avatar
martianzhang 已提交
307
// ShowColumns 获取 DB 中所有的 columns
martianzhang's avatar
martianzhang 已提交
308 309 310 311
func (db *Connector) ShowColumns(tableName string) (*TableDesc, error) {
	tbDesc := NewTableDesc(tableName)

	// 执行 show create table
312
	res, err := db.Query(fmt.Sprintf("show full columns from `%s`.`%s`", db.Database, tableName))
martianzhang's avatar
martianzhang 已提交
313 314 315 316 317
	if err != nil {
		return nil, err
	}

	// 获取值
318 319 320 321 322 323 324 325 326 327 328 329
	for res.Rows.Next() {
		var tc TableDescValue
		res.Rows.Scan(&tc.Field,
			&tc.Type,
			&tc.Collation,
			&tc.Null,
			&tc.Key,
			&tc.Default,
			&tc.Extra,
			&tc.Privileges,
			&tc.Comment)
		tbDesc.DescValues = append(tbDesc.DescValues, tc)
martianzhang's avatar
martianzhang 已提交
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
	}
	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) {
	// 执行 show create table
346
	res, err := db.Query(fmt.Sprintf("show create %s `%s`", createType, name))
martianzhang's avatar
martianzhang 已提交
347 348 349 350
	if err != nil {
		return "", err
	}

351 352 353 354
	// 获取 CREATE TABLE 语句
	var tableName, createTable string
	for res.Rows.Next() {
		res.Rows.Scan(&tableName, &createTable)
martianzhang's avatar
martianzhang 已提交
355 356
	}

357
	return createTable, err
martianzhang's avatar
martianzhang 已提交
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 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
}

// 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)

414 415 416 417
	if dbName != "" {
		sql += fmt.Sprintf(" and c.table_schema = '%s'", dbName)
	}

martianzhang's avatar
martianzhang 已提交
418 419 420 421 422 423 424 425
	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, ","))
	}

426
	common.Log.Debug("FindColumn, execute SQL: %s", sql)
martianzhang's avatar
martianzhang 已提交
427 428 429 430 431 432
	res, err := db.Query(sql)
	if err != nil {
		common.Log.Error("(db *Connector) FindColumn Error : ", err)
		return columns, err
	}

433 434 435 436 437 438 439
	var col common.Column
	for res.Rows.Next() {
		res.Rows.Scan(&col.Table,
			&col.DB,
			&col.DataType,
			&col.Character,
			&col.Collation)
martianzhang's avatar
martianzhang 已提交
440 441 442 443 444 445 446 447 448

		// 填充字符集和排序规则
		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)
449 450 451

			common.Log.Debug("FindColumn, execute SQL: %s", sql)
			var newRes QueryResult
martianzhang's avatar
martianzhang 已提交
452 453 454 455 456 457
			newRes, err = db.Query(sql)
			if err != nil {
				common.Log.Error("(db *Connector) FindColumn Error : ", err)
				return columns, err
			}

458 459 460 461
			var tbCollation string
			if newRes.Rows.Next() {
				newRes.Rows.Scan(&tbCollation)
			}
martianzhang's avatar
martianzhang 已提交
462 463 464 465 466
			if tbCollation != "" {
				col.Character = strings.Split(tbCollation, "_")[0]
				col.Collation = tbCollation
			}
		}
467
		columns = append(columns, &col)
martianzhang's avatar
martianzhang 已提交
468 469 470 471
	}
	return columns, err
}

472 473
// IsForeignKey 判断列是否是外键
func (db *Connector) IsForeignKey(dbName, tbName, column string) bool {
martianzhang's avatar
martianzhang 已提交
474 475 476 477 478 479
	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)

480
	common.Log.Debug("IsForeignKey, execute SQL: %s", sql)
martianzhang's avatar
martianzhang 已提交
481
	res, err := db.Query(sql)
482 483 484 485 486 487 488
	if err != nil {
		common.Log.Error("IsForeignKey, Error: %s", err.Error())
		return false
	}
	if res.Rows.Next() {
		return true
	}
martianzhang's avatar
martianzhang 已提交
489

490
	return false
martianzhang's avatar
martianzhang 已提交
491 492 493 494 495 496 497
}

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

// ReferenceValue 用于处理表之间的关系
type ReferenceValue struct {
498 499 500 501 502
	ReferencedTableSchema string // 夫表所属数据库
	ReferencedTableName   string // 父表
	TableSchema           string // 子表所属数据库
	TableName             string // 子表
	ConstraintName        string // 关系名称
martianzhang's avatar
martianzhang 已提交
503 504 505 506 507
}

// ShowReference 查找所有的外键信息
func (db *Connector) ShowReference(dbName string, tbName ...string) ([]ReferenceValue, error) {
	var referenceValues []ReferenceValue
508
	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 已提交
509 510 511 512 513 514 515
	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
	}

516
	common.Log.Debug("ShowReference, execute SQL: %s", sql)
martianzhang's avatar
martianzhang 已提交
517 518 519 520 521 522 523
	// 执行SQL查找外键关联关系
	res, err := db.Query(sql)
	if err != nil {
		return referenceValues, err
	}

	// 获取值
524 525 526 527 528 529 530 531
	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 已提交
532 533 534 535
	}

	return referenceValues, err
}