common.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. package common
  2. import (
  3. "context"
  4. "database/sql"
  5. "fmt"
  6. "io"
  7. "net/url"
  8. "os"
  9. "reflect"
  10. "regexp"
  11. "strings"
  12. "time"
  13. "github.com/amacneil/dbmate/pkg/dbmate"
  14. _ "github.com/amacneil/dbmate/pkg/driver/mysql"
  15. _ "github.com/amacneil/dbmate/pkg/driver/postgres"
  16. _ "github.com/amacneil/dbmate/pkg/driver/sqlite"
  17. "golang.org/x/exp/slices"
  18. )
  19. type Engine interface {
  20. Begin(ctx context.Context, opts *sql.TxOptions) (*Tx, error)
  21. Close() error
  22. Each(ctx context.Context, query string, logic func(ctx context.Context, rows *Rows) error, args ...any) error
  23. Exec(ctx context.Context, query string, args ...any) (sql.Result, error)
  24. Ping(context.Context) error
  25. Prepare(ctx context.Context, query string) (*sql.Stmt, error)
  26. Query(ctx context.Context, query string, args ...any) (*Rows, error)
  27. QueryRow(ctx context.Context, query string, args ...any) *Row
  28. SetConnMaxLifetime(d time.Duration)
  29. SetMaxIdleConns(n int)
  30. SetMaxOpenConns(n int)
  31. Transaction(ctx context.Context, queries func(ctx context.Context, tx *Tx) error) error
  32. }
  33. var rSqlParam = regexp.MustCompile(`\$\d+`)
  34. var rLogSpacesAll = regexp.MustCompile(`[\s\t]+`)
  35. var rLogSpacesEnd = regexp.MustCompile(`[\s\t]+;$`)
  36. func fixQuery(query string) string {
  37. return rSqlParam.ReplaceAllString(query, "?")
  38. }
  39. func log(w io.Writer, fname string, start time.Time, err error, tx bool, query string, args ...any) string {
  40. var values []string
  41. bold := "0"
  42. color := "33"
  43. // Transaction or not
  44. if tx {
  45. bold = "1"
  46. values = append(values, "[TX]")
  47. }
  48. // Function name
  49. if fname != "" {
  50. values = append(values, "[func "+fname+"]")
  51. }
  52. // SQL query
  53. if query != "" {
  54. values = append(values, rLogSpacesEnd.ReplaceAllString(
  55. strings.Trim(rLogSpacesAll.ReplaceAllString(query, " "), " "), ";",
  56. ))
  57. }
  58. // Params
  59. if len(args) > 0 {
  60. values = append(values, fmt.Sprintf("(%v)", args))
  61. } else {
  62. values = append(values, "(empty)")
  63. }
  64. // Error
  65. if err != nil {
  66. color = "31"
  67. values = append(values, "("+err.Error()+")")
  68. } else {
  69. values = append(values, "(nil)")
  70. }
  71. // Execute time with close color symbols
  72. values = append(values, fmt.Sprintf("%.3f ms\033[0m", time.Since(start).Seconds()))
  73. // Prepend start caption with colors
  74. values = append([]string{"\033[" + bold + ";" + color + "m[SQL]"}, values...)
  75. res := fmt.Sprintln(strings.Join(values, " "))
  76. fmt.Fprint(w, res)
  77. return res
  78. }
  79. func scans(row any) []any {
  80. v := reflect.ValueOf(row).Elem()
  81. res := make([]interface{}, v.NumField())
  82. for i := 0; i < v.NumField(); i++ {
  83. res[i] = v.Field(i).Addr().Interface()
  84. }
  85. return res
  86. }
  87. func ParseUrl(dbURL string) (*url.URL, error) {
  88. databaseURL, err := url.Parse(dbURL)
  89. if err != nil {
  90. return nil, fmt.Errorf("unable to parse URL: %w", err)
  91. }
  92. if databaseURL.Scheme == "" {
  93. return nil, fmt.Errorf("protocol scheme is not defined")
  94. }
  95. protocols := []string{"mysql", "postgres", "postgresql", "sqlite", "sqlite3"}
  96. if !slices.Contains(protocols, databaseURL.Scheme) {
  97. return nil, fmt.Errorf("unsupported protocol scheme: %s", databaseURL.Scheme)
  98. }
  99. return databaseURL, nil
  100. }
  101. func OpenDB(databaseURL *url.URL, migrationsDir string, skipMigration bool, debug bool) (*sql.DB, error) {
  102. mate := dbmate.New(databaseURL)
  103. mate.AutoDumpSchema = false
  104. mate.Log = io.Discard
  105. if migrationsDir != "" {
  106. mate.MigrationsDir = migrationsDir
  107. }
  108. driver, err := mate.GetDriver()
  109. if err != nil {
  110. return nil, fmt.Errorf("DB get driver error: %w", err)
  111. }
  112. if !skipMigration {
  113. if err := mate.CreateAndMigrate(); err != nil {
  114. return nil, fmt.Errorf("DB migration error: %w", err)
  115. }
  116. }
  117. var db *sql.DB
  118. start := time.Now()
  119. db, err = driver.Open()
  120. if debug {
  121. log(os.Stdout, "Open", start, err, false, "")
  122. }
  123. if err != nil {
  124. return nil, fmt.Errorf("DB open error: %w", err)
  125. }
  126. return db, nil
  127. }