2024-03-11 20:04:20 +08:00
|
|
|
|
package oracle
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
|
"fmt"
|
|
|
|
|
|
"mayfly-go/internal/db/dbm/dbi"
|
|
|
|
|
|
"mayfly-go/pkg/errorx"
|
|
|
|
|
|
"mayfly-go/pkg/utils/collx"
|
2024-03-18 12:25:40 +08:00
|
|
|
|
"mayfly-go/pkg/utils/stringx"
|
2024-03-11 20:04:20 +08:00
|
|
|
|
"strings"
|
2024-03-21 17:15:52 +08:00
|
|
|
|
|
2025-06-27 12:17:45 +08:00
|
|
|
|
"github.com/spf13/cast"
|
2024-03-11 20:04:20 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------------- DM元数据 -----------------------------------
|
|
|
|
|
|
const (
|
2024-03-18 12:25:40 +08:00
|
|
|
|
ORACLE_META_FILE = "metasql/oracle_meta.sql"
|
|
|
|
|
|
ORACLE_DB_SCHEMAS = "ORACLE_DB_SCHEMAS"
|
|
|
|
|
|
ORACLE_TABLE_INFO_KEY = "ORACLE_TABLE_INFO"
|
|
|
|
|
|
ORACLE_INDEX_INFO_KEY = "ORACLE_INDEX_INFO"
|
|
|
|
|
|
ORACLE_COLUMN_MA_KEY = "ORACLE_COLUMN_MA"
|
2024-03-11 20:04:20 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
2024-11-01 17:27:22 +08:00
|
|
|
|
type OracleMetadata struct {
|
|
|
|
|
|
dbi.DefaultMetadata
|
2024-03-15 13:31:53 +08:00
|
|
|
|
|
2024-03-11 20:04:20 +08:00
|
|
|
|
dc *dbi.DbConn
|
2024-10-20 03:52:23 +00:00
|
|
|
|
|
|
|
|
|
|
version dbi.DbVersion
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-11-01 17:27:22 +08:00
|
|
|
|
func (od *OracleMetadata11) GetCompatibleDbVersion() dbi.DbVersion {
|
2024-10-20 03:52:23 +00:00
|
|
|
|
return od.version
|
2024-03-11 20:04:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-11-01 17:27:22 +08:00
|
|
|
|
func (od *OracleMetadata) GetDbServer() (*dbi.DbServer, error) {
|
2024-03-11 20:04:20 +08:00
|
|
|
|
_, res, err := od.dc.Query("select * from v$instance")
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return nil, err
|
|
|
|
|
|
}
|
|
|
|
|
|
ds := &dbi.DbServer{
|
2024-03-21 17:15:52 +08:00
|
|
|
|
Version: cast.ToString(res[0]["VERSION"]),
|
2024-03-11 20:04:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
return ds, nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-11-01 17:27:22 +08:00
|
|
|
|
func (od *OracleMetadata) GetDbNames() ([]string, error) {
|
2024-03-11 20:04:20 +08:00
|
|
|
|
_, res, err := od.dc.Query("SELECT name AS DBNAME FROM v$database")
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return nil, err
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
databases := make([]string, 0)
|
|
|
|
|
|
for _, re := range res {
|
2024-03-21 17:15:52 +08:00
|
|
|
|
databases = append(databases, cast.ToString(re["DBNAME"]))
|
2024-03-11 20:04:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return databases, nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-11-01 17:27:22 +08:00
|
|
|
|
func (od *OracleMetadata) GetTables(tableNames ...string) ([]dbi.Table, error) {
|
|
|
|
|
|
dialect := od.dc.GetDialect()
|
2024-03-15 09:01:51 +00:00
|
|
|
|
names := strings.Join(collx.ArrayMap[string, string](tableNames, func(val string) string {
|
2024-12-08 13:04:23 +08:00
|
|
|
|
return fmt.Sprintf("'%s'", dialect.Quoter().Trim(val))
|
2024-03-15 09:01:51 +00:00
|
|
|
|
}), ",")
|
2024-03-11 20:04:20 +08:00
|
|
|
|
|
2024-03-15 09:01:51 +00:00
|
|
|
|
var res []map[string]any
|
|
|
|
|
|
var err error
|
2024-03-11 20:04:20 +08:00
|
|
|
|
|
2024-03-18 12:25:40 +08:00
|
|
|
|
sql, err := stringx.TemplateParse(dbi.GetLocalSql(ORACLE_META_FILE, ORACLE_TABLE_INFO_KEY), collx.M{"tableNames": names})
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return nil, err
|
2024-03-15 09:01:51 +00:00
|
|
|
|
}
|
2024-03-18 12:25:40 +08:00
|
|
|
|
|
|
|
|
|
|
_, res, err = od.dc.Query(sql)
|
2024-03-11 20:04:20 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
|
return nil, err
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
tables := make([]dbi.Table, 0)
|
|
|
|
|
|
for _, re := range res {
|
|
|
|
|
|
tables = append(tables, dbi.Table{
|
2024-03-21 17:15:52 +08:00
|
|
|
|
TableName: cast.ToString(re["TABLE_NAME"]),
|
|
|
|
|
|
TableComment: cast.ToString(re["TABLE_COMMENT"]),
|
|
|
|
|
|
CreateTime: cast.ToString(re["CREATE_TIME"]),
|
|
|
|
|
|
TableRows: cast.ToInt(re["TABLE_ROWS"]),
|
|
|
|
|
|
DataLength: cast.ToInt64(re["DATA_LENGTH"]),
|
|
|
|
|
|
IndexLength: cast.ToInt64(re["INDEX_LENGTH"]),
|
2024-03-11 20:04:20 +08:00
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
return tables, nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 获取列元信息, 如列名等
|
2024-11-01 17:27:22 +08:00
|
|
|
|
func (od *OracleMetadata) GetColumns(tableNames ...string) ([]dbi.Column, error) {
|
|
|
|
|
|
dialect := od.dc.GetDialect()
|
2024-03-11 20:04:20 +08:00
|
|
|
|
tableName := strings.Join(collx.ArrayMap[string, string](tableNames, func(val string) string {
|
2024-12-08 13:04:23 +08:00
|
|
|
|
return fmt.Sprintf("'%s'", dialect.Quoter().Trim(val))
|
2024-03-11 20:04:20 +08:00
|
|
|
|
}), ",")
|
|
|
|
|
|
|
|
|
|
|
|
// 如果表数量超过了1000,需要分批查询
|
|
|
|
|
|
if len(tableNames) > 1000 {
|
|
|
|
|
|
columns := make([]dbi.Column, 0)
|
|
|
|
|
|
for i := 0; i < len(tableNames); i += 1000 {
|
|
|
|
|
|
end := i + 1000
|
|
|
|
|
|
if end > len(tableNames) {
|
|
|
|
|
|
end = len(tableNames)
|
|
|
|
|
|
}
|
|
|
|
|
|
tables := tableNames[i:end]
|
|
|
|
|
|
cols, err := od.GetColumns(tables...)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return nil, err
|
|
|
|
|
|
}
|
|
|
|
|
|
columns = append(columns, cols...)
|
|
|
|
|
|
}
|
|
|
|
|
|
return columns, nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
_, res, err := od.dc.Query(fmt.Sprintf(dbi.GetLocalSql(ORACLE_META_FILE, ORACLE_COLUMN_MA_KEY), tableName))
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return nil, err
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
columns := make([]dbi.Column, 0)
|
|
|
|
|
|
for _, re := range res {
|
2024-03-21 03:35:18 +00:00
|
|
|
|
column := dbi.Column{
|
2024-03-21 17:15:52 +08:00
|
|
|
|
TableName: cast.ToString(re["TABLE_NAME"]),
|
|
|
|
|
|
ColumnName: cast.ToString(re["COLUMN_NAME"]),
|
2024-12-08 13:04:23 +08:00
|
|
|
|
DataType: cast.ToString(re["DATA_TYPE"]),
|
2024-03-26 09:05:28 +00:00
|
|
|
|
CharMaxLength: cast.ToInt(re["CHAR_MAX_LENGTH"]),
|
2024-03-21 17:15:52 +08:00
|
|
|
|
ColumnComment: cast.ToString(re["COLUMN_COMMENT"]),
|
2024-03-21 20:28:24 +08:00
|
|
|
|
Nullable: cast.ToString(re["NULLABLE"]) == "YES",
|
2024-03-21 17:15:52 +08:00
|
|
|
|
IsPrimaryKey: cast.ToInt(re["IS_PRIMARY_KEY"]) == 1,
|
2025-02-20 17:07:13 +08:00
|
|
|
|
AutoIncrement: cast.ToInt(re["IS_IDENTITY"]) == 1,
|
2024-03-26 09:05:28 +00:00
|
|
|
|
ColumnDefault: cast.ToString(re["COLUMN_DEFAULT"]),
|
|
|
|
|
|
NumPrecision: cast.ToInt(re["NUM_PRECISION"]),
|
2024-03-21 17:15:52 +08:00
|
|
|
|
NumScale: cast.ToInt(re["NUM_SCALE"]),
|
2024-03-21 03:35:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-12-08 13:04:23 +08:00
|
|
|
|
od.dc.GetDbDataType(column.DataType).FixColumn(&column)
|
2024-03-21 03:35:18 +00:00
|
|
|
|
columns = append(columns, column)
|
2024-03-11 20:04:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
return columns, nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-11-01 17:27:22 +08:00
|
|
|
|
func (od *OracleMetadata) GetPrimaryKey(tablename string) (string, error) {
|
2024-03-11 20:04:20 +08:00
|
|
|
|
columns, err := od.GetColumns(tablename)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return "", err
|
|
|
|
|
|
}
|
|
|
|
|
|
if len(columns) == 0 {
|
2025-10-18 11:21:33 +08:00
|
|
|
|
return "", errorx.NewBizf("[%s] 表不存在", tablename)
|
2024-03-11 20:04:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
for _, v := range columns {
|
|
|
|
|
|
if v.IsPrimaryKey {
|
|
|
|
|
|
return v.ColumnName, nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return columns[0].ColumnName, nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 获取表索引信息
|
2024-11-01 17:27:22 +08:00
|
|
|
|
func (od *OracleMetadata) GetTableIndex(tableName string) ([]dbi.Index, error) {
|
2024-03-11 20:04:20 +08:00
|
|
|
|
_, res, err := od.dc.Query(fmt.Sprintf(dbi.GetLocalSql(ORACLE_META_FILE, ORACLE_INDEX_INFO_KEY), tableName))
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return nil, err
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
indexs := make([]dbi.Index, 0)
|
|
|
|
|
|
for _, re := range res {
|
|
|
|
|
|
indexs = append(indexs, dbi.Index{
|
2024-03-21 17:15:52 +08:00
|
|
|
|
IndexName: cast.ToString(re["INDEX_NAME"]),
|
|
|
|
|
|
ColumnName: cast.ToString(re["COLUMN_NAME"]),
|
|
|
|
|
|
IndexType: cast.ToString(re["INDEX_TYPE"]),
|
|
|
|
|
|
IndexComment: cast.ToString(re["INDEX_COMMENT"]),
|
|
|
|
|
|
IsUnique: cast.ToInt(re["IS_UNIQUE"]) == 1,
|
|
|
|
|
|
SeqInIndex: cast.ToInt(re["SEQ_IN_INDEX"]),
|
2024-03-26 09:05:28 +00:00
|
|
|
|
IsPrimaryKey: cast.ToInt(re["IS_PRIMARY"]) == 1,
|
2024-03-11 20:04:20 +08:00
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
// 把查询结果以索引名分组,索引字段以逗号连接
|
|
|
|
|
|
result := make([]dbi.Index, 0)
|
|
|
|
|
|
key := ""
|
|
|
|
|
|
for _, v := range indexs {
|
|
|
|
|
|
// 当前的索引名
|
|
|
|
|
|
in := v.IndexName
|
|
|
|
|
|
if key == in {
|
|
|
|
|
|
// 索引字段已根据名称和顺序排序,故取最后一个即可
|
|
|
|
|
|
i := len(result) - 1
|
|
|
|
|
|
// 同索引字段以逗号连接
|
|
|
|
|
|
result[i].ColumnName = result[i].ColumnName + "," + v.ColumnName
|
|
|
|
|
|
} else {
|
|
|
|
|
|
key = in
|
|
|
|
|
|
result = append(result, v)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return result, nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-03-21 03:35:18 +00:00
|
|
|
|
// 获取建表ddl
|
2024-11-01 17:27:22 +08:00
|
|
|
|
func (od *OracleMetadata) GetTableDDL(tableName string, dropBeforeCreate bool) (string, error) {
|
2024-12-08 13:04:23 +08:00
|
|
|
|
return dbi.GenTableDDL(od.dc.GetDialect(), od, tableName, dropBeforeCreate)
|
2024-03-11 20:04:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 获取DM当前连接的库可访问的schemaNames
|
2024-11-01 17:27:22 +08:00
|
|
|
|
func (od *OracleMetadata) GetSchemas() ([]string, error) {
|
2024-03-11 20:04:20 +08:00
|
|
|
|
sql := dbi.GetLocalSql(ORACLE_META_FILE, ORACLE_DB_SCHEMAS)
|
|
|
|
|
|
_, res, err := od.dc.Query(sql)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return nil, err
|
|
|
|
|
|
}
|
|
|
|
|
|
schemaNames := make([]string, 0)
|
|
|
|
|
|
for _, re := range res {
|
2024-03-21 17:15:52 +08:00
|
|
|
|
schemaNames = append(schemaNames, cast.ToString(re["USERNAME"]))
|
2024-03-11 20:04:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
return schemaNames, nil
|
|
|
|
|
|
}
|