Browse Source

Refactoring: reuse fixQuery

Volodymyr Tkach 2 years ago
parent
commit
ab1b9819ce
3 changed files with 13 additions and 9 deletions
  1. 11 0
      gosql/common/common.go
  2. 1 8
      gosql/common/dbmethods.go
  3. 1 1
      gosql/common/tx.go

+ 11 - 0
gosql/common/common.go

@@ -7,6 +7,7 @@ import (
 	"io"
 	"io"
 	"net/url"
 	"net/url"
 	"os"
 	"os"
+	"regexp"
 	"strings"
 	"strings"
 	"time"
 	"time"
 
 
@@ -17,6 +18,8 @@ import (
 	"golang.org/x/exp/slices"
 	"golang.org/x/exp/slices"
 )
 )
 
 
+type queryFunc func(ctx context.Context, tx *Tx) error
+
 type Engine interface {
 type Engine interface {
 	Begin(ctx context.Context, opts *sql.TxOptions) (*Tx, error)
 	Begin(ctx context.Context, opts *sql.TxOptions) (*Tx, error)
 	Close() error
 	Close() error
@@ -28,6 +31,10 @@ type Engine interface {
 	Transaction(ctx context.Context, queries queryFunc) error
 	Transaction(ctx context.Context, queries queryFunc) error
 }
 }
 
 
+var rLogSpacesAll = regexp.MustCompile(`[\s\t]+`)
+var rLogSpacesEnd = regexp.MustCompile(`[\s\t]+;$`)
+var rSqlParam = regexp.MustCompile(`\$\d+`)
+
 func log(m string, s time.Time, e error, tx bool, query string, args ...any) {
 func log(m string, s time.Time, e error, tx bool, query string, args ...any) {
 	var tmsg string
 	var tmsg string
 
 
@@ -63,6 +70,10 @@ func log(m string, s time.Time, e error, tx bool, query string, args ...any) {
 	fmt.Fprintln(os.Stdout, "\033["+color+"m[SQL]"+tmsg+qmsg+astr+estr+fmt.Sprintf(" %.3f ms", time.Since(s).Seconds())+"\033[0m")
 	fmt.Fprintln(os.Stdout, "\033["+color+"m[SQL]"+tmsg+qmsg+astr+estr+fmt.Sprintf(" %.3f ms", time.Since(s).Seconds())+"\033[0m")
 }
 }
 
 
+func fixQuery(query string) string {
+	return rSqlParam.ReplaceAllString(query, "?")
+}
+
 func ParseUrl(dbURL string) (*url.URL, error) {
 func ParseUrl(dbURL string) (*url.URL, error) {
 	databaseURL, err := url.Parse(dbURL)
 	databaseURL, err := url.Parse(dbURL)
 	if err != nil {
 	if err != nil {

+ 1 - 8
gosql/common/dbmethods.go

@@ -4,7 +4,6 @@ import (
 	"context"
 	"context"
 	"database/sql"
 	"database/sql"
 	"fmt"
 	"fmt"
-	"regexp"
 	"time"
 	"time"
 
 
 	"github.com/pkg/errors"
 	"github.com/pkg/errors"
@@ -17,15 +16,9 @@ type DBMethods struct {
 	Driver string
 	Driver string
 }
 }
 
 
-var rLogSpacesAll = regexp.MustCompile(`[\s\t]+`)
-var rLogSpacesEnd = regexp.MustCompile(`[\s\t]+;$`)
-var rSqlParam = regexp.MustCompile(`\$\d+`)
-
-type queryFunc func(ctx context.Context, tx *Tx) error
-
 func (db *DBMethods) fixQuery(query string) string {
 func (db *DBMethods) fixQuery(query string) string {
 	if db.Driver == "mysql" {
 	if db.Driver == "mysql" {
-		return rSqlParam.ReplaceAllString(query, "?")
+		return fixQuery(query)
 	}
 	}
 	return query
 	return query
 }
 }

+ 1 - 1
gosql/common/tx.go

@@ -17,7 +17,7 @@ type Tx struct {
 
 
 func (db *Tx) fixQuery(query string) string {
 func (db *Tx) fixQuery(query string) string {
 	if db.Driver == "mysql" {
 	if db.Driver == "mysql" {
-		return rSqlParam.ReplaceAllString(query, "?")
+		return fixQuery(query)
 	}
 	}
 	return query
 	return query
 }
 }