common.go 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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. QueryRowByID(ctx context.Context, id int64, row any) error
  29. SetConnMaxLifetime(d time.Duration)
  30. SetMaxIdleConns(n int)
  31. SetMaxOpenConns(n int)
  32. Transaction(ctx context.Context, queries func(ctx context.Context, tx *Tx) error) error
  33. }
  34. var rSqlParam = regexp.MustCompile(`\$\d+`)
  35. var rLogSpacesAll = regexp.MustCompile(`[\s\t]+`)
  36. var rLogSpacesEnd = regexp.MustCompile(`[\s\t]+;$`)
  37. func fixQuery(query string) string {
  38. return rSqlParam.ReplaceAllString(query, "?")
  39. }
  40. func log(w io.Writer, fname string, start time.Time, err error, tx bool, query string, args ...any) string {
  41. var values []string
  42. bold := "0"
  43. color := "33"
  44. // Transaction or not
  45. if tx {
  46. bold = "1"
  47. values = append(values, "[TX]")
  48. }
  49. // Function name
  50. if fname != "" {
  51. values = append(values, "[func "+fname+"]")
  52. }
  53. // SQL query
  54. if query != "" {
  55. values = append(values, rLogSpacesEnd.ReplaceAllString(
  56. strings.Trim(rLogSpacesAll.ReplaceAllString(query, " "), " "), ";",
  57. ))
  58. }
  59. // Params
  60. if len(args) > 0 {
  61. values = append(values, fmt.Sprintf("(%v)", args))
  62. } else {
  63. values = append(values, "(empty)")
  64. }
  65. // Error
  66. if err != nil {
  67. color = "31"
  68. values = append(values, "("+err.Error()+")")
  69. } else {
  70. values = append(values, "(nil)")
  71. }
  72. // Execute time with close color symbols
  73. values = append(values, fmt.Sprintf("%.3f ms\033[0m", time.Since(start).Seconds()))
  74. // Prepend start caption with colors
  75. values = append([]string{"\033[" + bold + ";" + color + "m[SQL]"}, values...)
  76. res := fmt.Sprintln(strings.Join(values, " "))
  77. fmt.Fprint(w, res)
  78. return res
  79. }
  80. func scans(row any) []any {
  81. v := reflect.ValueOf(row).Elem()
  82. res := make([]interface{}, v.NumField())
  83. for i := 0; i < v.NumField(); i++ {
  84. res[i] = v.Field(i).Addr().Interface()
  85. }
  86. return res
  87. }
  88. func queryRowByIDString(row any) string {
  89. v := reflect.ValueOf(row).Elem()
  90. t := v.Type()
  91. var table string
  92. fields := []string{}
  93. for i := 0; i < t.NumField(); i++ {
  94. if table == "" {
  95. if tag := t.Field(i).Tag.Get("table"); tag != "" {
  96. table = tag
  97. }
  98. }
  99. if tag := t.Field(i).Tag.Get("field"); tag != "" {
  100. fields = append(fields, tag)
  101. }
  102. }
  103. return `SELECT ` + strings.Join(fields, ", ") + ` FROM ` + table + ` WHERE id = $1 LIMIT 1`
  104. }
  105. func ParseUrl(dbURL string) (*url.URL, error) {
  106. databaseURL, err := url.Parse(dbURL)
  107. if err != nil {
  108. return nil, fmt.Errorf("unable to parse URL: %w", err)
  109. }
  110. if databaseURL.Scheme == "" {
  111. return nil, fmt.Errorf("protocol scheme is not defined")
  112. }
  113. protocols := []string{"mysql", "postgres", "postgresql", "sqlite", "sqlite3"}
  114. if !slices.Contains(protocols, databaseURL.Scheme) {
  115. return nil, fmt.Errorf("unsupported protocol scheme: %s", databaseURL.Scheme)
  116. }
  117. return databaseURL, nil
  118. }
  119. func OpenDB(databaseURL *url.URL, migrationsDir string, skipMigration bool, debug bool) (*sql.DB, error) {
  120. mate := dbmate.New(databaseURL)
  121. mate.AutoDumpSchema = false
  122. mate.Log = io.Discard
  123. if migrationsDir != "" {
  124. mate.MigrationsDir = migrationsDir
  125. }
  126. driver, err := mate.GetDriver()
  127. if err != nil {
  128. return nil, fmt.Errorf("DB get driver error: %w", err)
  129. }
  130. if !skipMigration {
  131. if err := mate.CreateAndMigrate(); err != nil {
  132. return nil, fmt.Errorf("DB migration error: %w", err)
  133. }
  134. }
  135. var db *sql.DB
  136. start := time.Now()
  137. db, err = driver.Open()
  138. if debug {
  139. log(os.Stdout, "Open", start, err, false, "")
  140. }
  141. if err != nil {
  142. return nil, fmt.Errorf("DB open error: %w", err)
  143. }
  144. return db, nil
  145. }