forked from TencentBlueKing/blueking-dbm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(dbm-services): 模拟执行只备份导入变更SQL相关库 TencentBlueKing#8318
- Loading branch information
Showing
19 changed files
with
670 additions
and
227 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
173 changes: 173 additions & 0 deletions
173
dbm-services/mysql/db-simulation/app/syntax/parse_relation_db.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,173 @@ | ||
/* | ||
* TencentBlueKing is pleased to support the open source community by making 蓝鲸智云-DB管理系统(BlueKing-BK-DBM) available. | ||
* Copyright (C) 2017-2023 THL A29 Limited, a Tencent company. All rights reserved. | ||
* Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at https://opensource.org/licenses/MIT | ||
* 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 syntax | ||
|
||
import ( | ||
"bufio" | ||
"encoding/json" | ||
"errors" | ||
"io" | ||
"os" | ||
"runtime/debug" | ||
"slices" | ||
"sync" | ||
|
||
"github.com/samber/lo" | ||
|
||
"dbm-services/common/go-pubpkg/logger" | ||
) | ||
|
||
// DoParseRelationDbs parse relation db from sql file | ||
func (tf *TmysqlParseFile) DoParseRelationDbs(version string) (createDbs, relationDbs []string, dumpAll bool, | ||
err error) { | ||
logger.Info("doing....") | ||
tf.result = make(map[string]*CheckInfo) | ||
tf.tmpWorkdir = tf.BaseWorkdir | ||
tf.mu = sync.Mutex{} | ||
|
||
if !tf.IsLocalFile { | ||
if err = tf.Init(); err != nil { | ||
logger.Error("Do init failed %s", err.Error()) | ||
return nil, nil, false, err | ||
} | ||
if err = tf.Downloadfile(); err != nil { | ||
logger.Error("failed to download sql file from the product library %s", err.Error()) | ||
return nil, nil, false, err | ||
} | ||
} | ||
// 最后删除临时目录,不会返回错误 | ||
defer tf.delTempDir() | ||
|
||
errChan := make(chan error, 1) | ||
alreadExecutedSqlfileChan := make(chan string, len(tf.Param.FileNames)) | ||
|
||
go func() { | ||
if err = tf.Execute(alreadExecutedSqlfileChan, version); err != nil { | ||
logger.Error("failed to execute tmysqlparse: %s", err.Error()) | ||
errChan <- err | ||
} | ||
close(alreadExecutedSqlfileChan) | ||
}() | ||
|
||
logger.Info("start to analyze the parsing result") | ||
createDbs, relationDbs, dumpAll, err = tf.doParseInchan(alreadExecutedSqlfileChan, version) | ||
if err != nil { | ||
logger.Error("failed to analyze the parsing result:%s", err.Error()) | ||
return nil, nil, false, err | ||
} | ||
logger.Info("createDbs:%v,relationDbs:%v,dumpAll:%v,err:%v", createDbs, relationDbs, dumpAll, err) | ||
return createDbs, relationDbs, dumpAll, nil | ||
} | ||
|
||
// doParseInchan RelationDbs do parse relation db | ||
func (t *TmysqlParse) doParseInchan(alreadExecutedSqlfileCh chan string, | ||
mysqlVersion string) (createDbs []string, relationDbs []string, dumpAll bool, err error) { | ||
var errs []error | ||
c := make(chan struct{}, 10) | ||
errChan := make(chan error, 5) | ||
wg := &sync.WaitGroup{} | ||
stopChan := make(chan struct{}) | ||
|
||
for sqlfile := range alreadExecutedSqlfileCh { | ||
wg.Add(1) | ||
c <- struct{}{} | ||
go func(fileName string) { | ||
defer wg.Done() | ||
cdbs, dbs, dumpAllDbs, err := t.analyzeRelationDbs(fileName, mysqlVersion) | ||
logger.Info("createDbs:%v,dbs:%v,dumpAllDbs:%v,err:%v", cdbs, dbs, dumpAllDbs, err) | ||
if err != nil { | ||
errChan <- err | ||
} | ||
if dumpAllDbs { | ||
dumpAll = true | ||
stopChan <- struct{}{} | ||
} | ||
t.mu.Lock() | ||
relationDbs = append(relationDbs, dbs...) | ||
createDbs = append(createDbs, cdbs...) | ||
t.mu.Unlock() | ||
<-c | ||
}(sqlfile) | ||
} | ||
|
||
go func() { | ||
wg.Wait() | ||
close(errChan) | ||
stopChan <- struct{}{} | ||
}() | ||
|
||
for { | ||
select { | ||
case err := <-errChan: | ||
errs = append(errs, err) | ||
case <-stopChan: | ||
return createDbs, relationDbs, dumpAll, errors.Join(errs...) | ||
} | ||
} | ||
} | ||
|
||
// analyzeRelationDbs 分析变更sql相关的db | ||
func (t *TmysqlParse) analyzeRelationDbs(inputfileName, mysqlVersion string) ( | ||
createDbs []string, | ||
relationDbs []string, | ||
dumpAll bool, | ||
err error) { | ||
defer func() { | ||
if r := recover(); r != nil { | ||
logger.Error("panic error:%v,stack:%s", r, string(debug.Stack())) | ||
} | ||
}() | ||
t.result[inputfileName] = &CheckInfo{} | ||
f, err := os.Open(t.getAbsoutputfilePath(inputfileName, mysqlVersion)) | ||
if err != nil { | ||
logger.Error("open file failed %s", err.Error()) | ||
return nil, nil, false, err | ||
} | ||
defer f.Close() | ||
reader := bufio.NewReader(f) | ||
for { | ||
line, errx := reader.ReadBytes(byte('\n')) | ||
if errx != nil { | ||
if errx == io.EOF { | ||
break | ||
} | ||
logger.Error("read Line Error %s", errx.Error()) | ||
return nil, nil, false, errx | ||
} | ||
if len(line) == 1 && line[0] == byte('\n') { | ||
continue | ||
} | ||
var res ParseLineQueryBase | ||
if err = json.Unmarshal(line, &res); err != nil { | ||
logger.Error("json unmasrshal line:%s failed %s", string(line), err.Error()) | ||
return nil, nil, false, err | ||
} | ||
// 判断是否有语法错误 | ||
if res.ErrorCode != 0 { | ||
return nil, nil, false, err | ||
} | ||
if slices.Contains([]string{SQLTypeCreateProcedure, SQLTypeCreateFunction, SQLTypeCreateView, SQLTypeCreateTrigger}, | ||
res.Command) { | ||
return nil, nil, true, nil | ||
} | ||
if lo.IsEmpty(res.DbName) { | ||
continue | ||
} | ||
// create db not need dump db | ||
if slices.Contains([]string{SQLTypeCreateDb}, res.Command) { | ||
createDbs = append(createDbs, res.DbName) | ||
continue | ||
} | ||
relationDbs = append(relationDbs, res.DbName) | ||
|
||
} | ||
return createDbs, relationDbs, false, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.