|
|
|
@ -30,6 +30,7 @@ var (
|
|
|
|
|
skipquery bool
|
|
|
|
|
pos int64
|
|
|
|
|
prefix string
|
|
|
|
|
outasRow bool
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
@ -47,6 +48,7 @@ func init() {
|
|
|
|
|
cmd.Flags().IntVar(&bigThan, "big", 0, "show tx big than x bytes")
|
|
|
|
|
cmd.Flags().IntVar(&smallThan, "small", 0, "show tx small than x bytes")
|
|
|
|
|
cmd.Flags().StringVar(&prefix, "prefix", "mysql-bin", "mysql binlog prefix")
|
|
|
|
|
cmd.Flags().BoolVarP(&outasRow, "row-mode", "r", false, "output as row")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var cmd = &cobra.Command{
|
|
|
|
@ -101,7 +103,9 @@ func ParseBinlog() {
|
|
|
|
|
title.AddCell().SetValue("单语句影响表")
|
|
|
|
|
title.AddCell().SetValue("SQL类型")
|
|
|
|
|
title.AddCell().SetValue("具体SQL")
|
|
|
|
|
title.AddCell().SetValue("变更内容")
|
|
|
|
|
title.AddCell().SetValue("从属事务编号")
|
|
|
|
|
title.AddCell().SetValue("同事务行编号")
|
|
|
|
|
title.AddCell().SetValue("行变更内容")
|
|
|
|
|
res.SetColWidth(0, 0, 5)
|
|
|
|
|
res.SetColWidth(1, 1, 40)
|
|
|
|
|
res.SetColWidth(3, 6, 6)
|
|
|
|
@ -150,7 +154,7 @@ func ParseBinlog() {
|
|
|
|
|
fmt.Print(latest)
|
|
|
|
|
}
|
|
|
|
|
count++
|
|
|
|
|
case <-time.After(time.Second * 2):
|
|
|
|
|
case <-time.After(time.Millisecond * 200):
|
|
|
|
|
fmt.Print(latest)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -171,37 +175,243 @@ func ParseBinlog() {
|
|
|
|
|
if !vbo {
|
|
|
|
|
proc <- fmt.Sprintf("已找到%d个合法GTID\r", foundCount)
|
|
|
|
|
} else {
|
|
|
|
|
fmt.Printf("GTID:%s Time:%s StartPos:%v EndPos:%v RowsCount:%v Size:%v Detail:%+v\n",
|
|
|
|
|
tx.GTID, tx.Time, tx.StartPos, tx.EndPos, tx.RowsCount, tx.Size, tx.Txs)
|
|
|
|
|
if !outasRow {
|
|
|
|
|
fmt.Printf("GTID:%s Time:%s StartPos:%v EndPos:%v RowsCount:%v Size:%v Detail:%+v\n",
|
|
|
|
|
tx.GTID, tx.Time, tx.StartPos, tx.EndPos, tx.RowsCount, tx.Size, tx.Txs)
|
|
|
|
|
} else {
|
|
|
|
|
fmt.Printf("-------------------------\nGTID:%s Time:%s StartPos:%v EndPos:%v RowsCount:%v Size:%v\n\n",
|
|
|
|
|
tx.GTID, tx.Time, tx.StartPos, tx.EndPos, tx.RowsCount, tx.Size)
|
|
|
|
|
for _, t := range tx.Txs {
|
|
|
|
|
if skipquery && (strings.ToLower(t.Sql) == "begin" || strings.ToLower(t.Sql) == "commit") {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
switch t.SqlType {
|
|
|
|
|
case "insert":
|
|
|
|
|
for _, rows := range t.Rows {
|
|
|
|
|
setence := ""
|
|
|
|
|
for _, row := range rows {
|
|
|
|
|
switch row.(type) {
|
|
|
|
|
case uint, uint64, uint32, uint16, uint8, int, int64, int32, int16, int8, float64, float32:
|
|
|
|
|
setence += fmt.Sprintf("%v, ", row)
|
|
|
|
|
case string:
|
|
|
|
|
setence += fmt.Sprintf("'%v', ", strings.ReplaceAll(row.(string), "'", "''"))
|
|
|
|
|
case []byte:
|
|
|
|
|
setence += fmt.Sprintf("%v, ", row)
|
|
|
|
|
case nil:
|
|
|
|
|
setence += fmt.Sprintf("%v, ", "NULL")
|
|
|
|
|
default:
|
|
|
|
|
setence += fmt.Sprintf("%v, ", row)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if setence != "" && len(setence) > 2 {
|
|
|
|
|
setence = setence[:len(setence)-2]
|
|
|
|
|
}
|
|
|
|
|
sql := fmt.Sprintf(`INSERT INTO %s.%s VALUES (%v)`, t.Db, t.Table, setence)
|
|
|
|
|
fmt.Printf("GTID:%s\nTime:%s\nStartPos:%v\nEndPos:%v\nRowsCount:%v\nSQLOrigin:%v\nSQL:%+v\n\n",
|
|
|
|
|
tx.GTID, t.Time, t.StartPos, t.EndPos, t.RowCount, t.Sql, sql)
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
case "update":
|
|
|
|
|
var sql string
|
|
|
|
|
var where string
|
|
|
|
|
for idxc, rows := range t.Rows {
|
|
|
|
|
setence := ""
|
|
|
|
|
spec := ", "
|
|
|
|
|
if idxc%2 == 0 {
|
|
|
|
|
spec = " AND "
|
|
|
|
|
}
|
|
|
|
|
for idxf, row := range rows {
|
|
|
|
|
switch row.(type) {
|
|
|
|
|
case uint, uint64, uint32, uint16, uint8, int, int64, int32, int16, int8, float64, float32:
|
|
|
|
|
setence += fmt.Sprintf("$%d=%v%s", idxf, row, spec)
|
|
|
|
|
case string:
|
|
|
|
|
setence += fmt.Sprintf("$%d='%v'%s", idxf, strings.ReplaceAll(row.(string), "'", "''"), spec)
|
|
|
|
|
case []byte:
|
|
|
|
|
setence += fmt.Sprintf("$%d=%v%s", idxf, row, spec)
|
|
|
|
|
case nil:
|
|
|
|
|
setence += fmt.Sprintf("$%d=%v%s", idxf, "NULL", spec)
|
|
|
|
|
default:
|
|
|
|
|
setence += fmt.Sprintf("$%d=%v%s", idxf, row, spec)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if setence != "" && len(setence) > 2 {
|
|
|
|
|
setence = setence[:len(setence)-len(spec)]
|
|
|
|
|
}
|
|
|
|
|
if idxc%2 == 0 {
|
|
|
|
|
where = setence
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
sql = fmt.Sprintf("UPDATE %s.%s SET (%v) WHERE %v", t.Db, t.Table, setence, where)
|
|
|
|
|
fmt.Printf("GTID:%s\nTime:%s\nStartPos:%v\nEndPos:%v\nRowsCount:%v\nSQLOrigin:%v\nSQL:%+v\n\n",
|
|
|
|
|
tx.GTID, t.Time, t.StartPos, t.EndPos, t.RowCount, t.Sql, sql)
|
|
|
|
|
}
|
|
|
|
|
case "delete":
|
|
|
|
|
for _, rows := range t.Rows {
|
|
|
|
|
setence := ""
|
|
|
|
|
spec := " AND "
|
|
|
|
|
for idxf, row := range rows {
|
|
|
|
|
switch row.(type) {
|
|
|
|
|
case uint, uint64, uint32, uint16, uint8, int, int64, int32, int16, int8, float64, float32:
|
|
|
|
|
setence += fmt.Sprintf("$%d=%v%s", idxf, row, spec)
|
|
|
|
|
case string:
|
|
|
|
|
setence += fmt.Sprintf("$%d='%v'%s", idxf, strings.ReplaceAll(row.(string), "'", "''"), spec)
|
|
|
|
|
case []byte:
|
|
|
|
|
setence += fmt.Sprintf("$%d=%v%s", idxf, row, spec)
|
|
|
|
|
case nil:
|
|
|
|
|
setence += fmt.Sprintf("$%d=%v%s", idxf, "NULL", spec)
|
|
|
|
|
default:
|
|
|
|
|
setence += fmt.Sprintf("$%d=%v%s", idxf, row, spec)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if setence != "" && len(setence) > 2 {
|
|
|
|
|
setence = setence[:len(setence)-len(spec)]
|
|
|
|
|
}
|
|
|
|
|
sql := fmt.Sprintf("DELETE FROM %s.%s WHERE %v", t.Db, t.Table, setence)
|
|
|
|
|
fmt.Printf("GTID:%s\nTime:%s\nStartPos:%v\nEndPos:%v\nRowsCount:%v\nSQLOrigin:%v\nSQL:%+v\n\n",
|
|
|
|
|
tx.GTID, t.Time, t.StartPos, t.EndPos, t.RowCount, t.Sql, sql)
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
fmt.Printf("GTID:%s\nTime:%s\nStartPos:%v\nEndPos:%v\nRowsCount:%v\nSQLOrigin:%v\nSQL:%+v\n\n",
|
|
|
|
|
tx.GTID, t.Time, t.StartPos, t.EndPos, t.RowCount, t.Sql, t.Rows)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if outPath != "" {
|
|
|
|
|
for _, t := range tx.Txs {
|
|
|
|
|
for k, t := range tx.Txs {
|
|
|
|
|
if skipquery && (strings.ToLower(t.Sql) == "begin" || strings.ToLower(t.Sql) == "commit") {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
r := res.AddRow()
|
|
|
|
|
r.AddCell().SetValue(foundCount)
|
|
|
|
|
r.AddCell().SetValue(tx.GTID)
|
|
|
|
|
r.AddCell().SetValue(tx.Time.String())
|
|
|
|
|
r.AddCell().SetValue(tx.Timestamp)
|
|
|
|
|
r.AddCell().SetValue(tx.StartPos)
|
|
|
|
|
r.AddCell().SetValue(tx.EndPos)
|
|
|
|
|
r.AddCell().SetValue(tx.Size)
|
|
|
|
|
r.AddCell().SetValue(tx.RowsCount)
|
|
|
|
|
if t.CompressionType == "" {
|
|
|
|
|
r.AddCell().SetValue("NONE")
|
|
|
|
|
} else {
|
|
|
|
|
r.AddCell().SetValue(t.CompressionType)
|
|
|
|
|
addRow := func() *xlsx.Row {
|
|
|
|
|
r := res.AddRow()
|
|
|
|
|
r.AddCell().SetValue(foundCount)
|
|
|
|
|
r.AddCell().SetValue(tx.GTID)
|
|
|
|
|
r.AddCell().SetValue(tx.Time.String())
|
|
|
|
|
r.AddCell().SetValue(tx.Timestamp)
|
|
|
|
|
r.AddCell().SetValue(tx.StartPos)
|
|
|
|
|
r.AddCell().SetValue(tx.EndPos)
|
|
|
|
|
r.AddCell().SetValue(tx.Size)
|
|
|
|
|
r.AddCell().SetValue(tx.RowsCount)
|
|
|
|
|
if t.CompressionType == "" {
|
|
|
|
|
r.AddCell().SetValue("NONE")
|
|
|
|
|
} else {
|
|
|
|
|
r.AddCell().SetValue(t.CompressionType)
|
|
|
|
|
}
|
|
|
|
|
r.AddCell().SetValue(t.StartPos)
|
|
|
|
|
r.AddCell().SetValue(t.EndPos)
|
|
|
|
|
r.AddCell().SetValue(t.Time.String())
|
|
|
|
|
r.AddCell().SetValue(t.RowCount)
|
|
|
|
|
r.AddCell().SetValue(t.Db)
|
|
|
|
|
r.AddCell().SetValue(t.Table)
|
|
|
|
|
r.AddCell().SetValue(t.SqlType)
|
|
|
|
|
r.AddCell().SetValue(t.Sql)
|
|
|
|
|
return r
|
|
|
|
|
}
|
|
|
|
|
if !outasRow {
|
|
|
|
|
r := addRow()
|
|
|
|
|
r.AddCell().SetValue(k + 1)
|
|
|
|
|
r.AddCell().SetValue(1)
|
|
|
|
|
r.AddCell().SetValue(t.Rows)
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
switch t.SqlType {
|
|
|
|
|
case "insert":
|
|
|
|
|
for idx, rows := range t.Rows {
|
|
|
|
|
setence := ""
|
|
|
|
|
for _, row := range rows {
|
|
|
|
|
switch row.(type) {
|
|
|
|
|
case uint, uint64, uint32, uint16, uint8, int, int64, int32, int16, int8, float64, float32:
|
|
|
|
|
setence += fmt.Sprintf("%v, ", row)
|
|
|
|
|
case string:
|
|
|
|
|
setence += fmt.Sprintf("'%v', ", strings.ReplaceAll(row.(string), "'", "''"))
|
|
|
|
|
case []byte:
|
|
|
|
|
setence += fmt.Sprintf("%v, ", row)
|
|
|
|
|
case nil:
|
|
|
|
|
setence += fmt.Sprintf("%v, ", "NULL")
|
|
|
|
|
default:
|
|
|
|
|
setence += fmt.Sprintf("%v, ", row)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if setence != "" && len(setence) > 2 {
|
|
|
|
|
setence = setence[:len(setence)-2]
|
|
|
|
|
}
|
|
|
|
|
sql := fmt.Sprintf(`INSERT INTO %s.%s VALUES(%v)`, t.Db, t.Table, setence)
|
|
|
|
|
r := addRow()
|
|
|
|
|
r.AddCell().SetValue(k + 1)
|
|
|
|
|
r.AddCell().SetValue(idx + 1)
|
|
|
|
|
r.AddCell().SetValue(sql)
|
|
|
|
|
}
|
|
|
|
|
case "update":
|
|
|
|
|
var sql string
|
|
|
|
|
var where string
|
|
|
|
|
for idxc, rows := range t.Rows {
|
|
|
|
|
setence := ""
|
|
|
|
|
spec := ", "
|
|
|
|
|
if idxc%2 == 0 {
|
|
|
|
|
spec = " AND "
|
|
|
|
|
}
|
|
|
|
|
for idxf, row := range rows {
|
|
|
|
|
switch row.(type) {
|
|
|
|
|
case uint, uint64, uint32, uint16, uint8, int, int64, int32, int16, int8, float64, float32:
|
|
|
|
|
setence += fmt.Sprintf("$%d=%v%s", idxf, row, spec)
|
|
|
|
|
case string:
|
|
|
|
|
setence += fmt.Sprintf("$%d='%v'%s", idxf, strings.ReplaceAll(row.(string), "'", "''"), spec)
|
|
|
|
|
case []byte:
|
|
|
|
|
setence += fmt.Sprintf("$%d=%v%s", idxf, row, spec)
|
|
|
|
|
case nil:
|
|
|
|
|
setence += fmt.Sprintf("$%d=%v%s", idxf, "NULL", spec)
|
|
|
|
|
default:
|
|
|
|
|
setence += fmt.Sprintf("$%d=%v%s", idxf, row, spec)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if setence != "" && len(setence) > 2 {
|
|
|
|
|
setence = setence[:len(setence)-len(spec)]
|
|
|
|
|
}
|
|
|
|
|
if idxc%2 == 0 {
|
|
|
|
|
where = setence
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
sql = fmt.Sprintf("UPDATE %s.%s SET (%v) WHERE %v", t.Db, t.Table, setence, where)
|
|
|
|
|
r := addRow()
|
|
|
|
|
r.AddCell().SetValue(k + 1)
|
|
|
|
|
r.AddCell().SetValue((idxc + 1) / 2)
|
|
|
|
|
r.AddCell().SetValue(sql)
|
|
|
|
|
}
|
|
|
|
|
case "delete":
|
|
|
|
|
for idx, rows := range t.Rows {
|
|
|
|
|
setence := ""
|
|
|
|
|
spec := " AND "
|
|
|
|
|
for idxf, row := range rows {
|
|
|
|
|
switch row.(type) {
|
|
|
|
|
case uint, uint64, uint32, uint16, uint8, int, int64, int32, int16, int8, float64, float32:
|
|
|
|
|
setence += fmt.Sprintf("$%d=%v%s", idxf, row)
|
|
|
|
|
case string:
|
|
|
|
|
setence += fmt.Sprintf("$%d='%v'%s", idxf, strings.ReplaceAll(row.(string), "'", "''"))
|
|
|
|
|
case []byte:
|
|
|
|
|
setence += fmt.Sprintf("$%d=%v%s", idxf, row)
|
|
|
|
|
case nil:
|
|
|
|
|
setence += fmt.Sprintf("$%d=%v%s", idxf, "NULL")
|
|
|
|
|
default:
|
|
|
|
|
setence += fmt.Sprintf("$%d=%v%s", idxf, row)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if setence != "" && len(setence) > 2 {
|
|
|
|
|
setence = setence[:len(setence)-len(spec)]
|
|
|
|
|
}
|
|
|
|
|
sql := fmt.Sprintf("DELETE FROM %s.%s WHERE %v", t.Db, t.Table, setence)
|
|
|
|
|
r := addRow()
|
|
|
|
|
r.AddCell().SetValue(k + 1)
|
|
|
|
|
r.AddCell().SetValue(idx + 1)
|
|
|
|
|
r.AddCell().SetValue(sql)
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
r := addRow()
|
|
|
|
|
r.AddCell().SetValue(k + 1)
|
|
|
|
|
r.AddCell().SetValue(1)
|
|
|
|
|
r.AddCell().SetValue(t.Rows)
|
|
|
|
|
}
|
|
|
|
|
r.AddCell().SetValue(t.StartPos)
|
|
|
|
|
r.AddCell().SetValue(t.EndPos)
|
|
|
|
|
r.AddCell().SetValue(t.Time.String())
|
|
|
|
|
r.AddCell().SetValue(t.RowCount)
|
|
|
|
|
r.AddCell().SetValue(t.Db)
|
|
|
|
|
r.AddCell().SetValue(t.Table)
|
|
|
|
|
r.AddCell().SetValue(t.SqlType)
|
|
|
|
|
r.AddCell().SetValue(t.Sql)
|
|
|
|
|
r.AddCell().SetValue(t.Rows)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
@ -257,5 +467,5 @@ func ParseBinlog() {
|
|
|
|
|
if totalGtid != nil {
|
|
|
|
|
allGtid = totalGtid.String()
|
|
|
|
|
}
|
|
|
|
|
fmt.Printf("Total Gtid:%v\nTotal Binlog Number:%v\n", allGtid, foundCount)
|
|
|
|
|
fmt.Printf("Total Gtid:%v\nTotal SQL Number:%v\n", allGtid, foundCount)
|
|
|
|
|
}
|
|
|
|
|