common.go 3.5 KB

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