Skip to content

Commit

Permalink
Allow multi-level depth function calls
Browse files Browse the repository at this point in the history
  • Loading branch information
QuangTung97 committed Apr 27, 2021
1 parent 5317814 commit b20d679
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 31 deletions.
38 changes: 28 additions & 10 deletions named.go
Expand Up @@ -224,29 +224,47 @@ func bindStruct(bindType int, query string, arg interface{}, m *reflectx.Mapper)
return bound, arglist, nil
}

var valueBracketReg = regexp.MustCompile(`(?i)VALUES\s*(\((?:[^(]|\([^(]*\))*\))`)
var valuesReg = regexp.MustCompile(`(?i)VALUES\s*\(`)

func fixBound(bound string, loop int) string {
func findMatchingClosingBracketIndex(s string) int {
count := 0
for i, ch := range s {
if ch == '(' {
count++
}
if ch == ')' {
count--
if count == 0 {
return i
}
}
}
return 0
}

loc := valueBracketReg.FindAllStringSubmatchIndex(bound, -1)
func fixBound(bound string, loop int) string {
loc := valuesReg.FindStringIndex(bound)
// defensive guard when "VALUES (...)" not found
if len(loc) < 1 {
return bound
}
// defensive guard. loc should be len 4 representing the starting and
// ending index for the whole regex match and the starting + ending
// index for the single inside group
if len(loc[0]) != 4 {

openingBracketIndex := loc[1] - 1
index := findMatchingClosingBracketIndex(bound[openingBracketIndex:])
// defensive guard. must have closing bracket
if index == 0 {
return bound
}
closingBracketIndex := openingBracketIndex + index + 1

var buffer bytes.Buffer

buffer.WriteString(bound[0:loc[0][1]])
buffer.WriteString(bound[0:closingBracketIndex])
for i := 0; i < loop-1; i++ {
buffer.WriteString(",")
buffer.WriteString(bound[loc[0][2]:loc[0][3]])
buffer.WriteString(bound[openingBracketIndex:closingBracketIndex])
}
buffer.WriteString(bound[loc[0][1]:])
buffer.WriteString(bound[closingBracketIndex:])
return buffer.String()
}

Expand Down
39 changes: 18 additions & 21 deletions named_test.go
Expand Up @@ -3,7 +3,6 @@ package sqlx
import (
"database/sql"
"fmt"
"regexp"
"testing"
)

Expand Down Expand Up @@ -358,20 +357,32 @@ func TestFixBounds(t *testing.T) {
},
{
name: `on duplicate key using VALUES`,
query: `INSERT INTO foo (a,b) VALUES(:a, :b) ON DUPLICATE KEY UPDATE a=VALUES(a)`,
expect: `INSERT INTO foo (a,b) VALUES(:a, :b),(:a, :b) ON DUPLICATE KEY UPDATE a=VALUES(a)`,
query: `INSERT INTO foo (a,b) VALUES (:a, :b) ON DUPLICATE KEY UPDATE a=VALUES(a)`,
expect: `INSERT INTO foo (a,b) VALUES (:a, :b),(:a, :b) ON DUPLICATE KEY UPDATE a=VALUES(a)`,
loop: 2,
},
{
name: `single column`,
query: `INSERT INTO foo (a) VALUES(:a)`,
expect: `INSERT INTO foo (a) VALUES(:a),(:a)`,
query: `INSERT INTO foo (a) VALUES (:a)`,
expect: `INSERT INTO foo (a) VALUES (:a),(:a)`,
loop: 2,
},
{
name: `call now`,
query: `INSERT INTO foo (a, b) VALUES(:a, NOW())`,
expect: `INSERT INTO foo (a, b) VALUES(:a, NOW()),(:a, NOW())`,
query: `INSERT INTO foo (a, b) VALUES (:a, NOW())`,
expect: `INSERT INTO foo (a, b) VALUES (:a, NOW()),(:a, NOW())`,
loop: 2,
},
{
name: `two level depth function call`,
query: `INSERT INTO foo (a, b) VALUES (:a, YEAR(NOW()))`,
expect: `INSERT INTO foo (a, b) VALUES (:a, YEAR(NOW())),(:a, YEAR(NOW()))`,
loop: 2,
},
{
name: `missing closing bracket`,
query: `INSERT INTO foo (a, b) VALUES (:a, YEAR(NOW())`,
expect: `INSERT INTO foo (a, b) VALUES (:a, YEAR(NOW())`,
loop: 2,
},
}
Expand All @@ -384,18 +395,4 @@ func TestFixBounds(t *testing.T) {
}
})
}

t.Run("regex changed", func(t *testing.T) {
var valueBracketRegChanged = regexp.MustCompile(`(VALUES)\s+(\([^(]*.[^(]\))`)
saveRegexp := valueBracketReg
defer func() {
valueBracketReg = saveRegexp
}()
valueBracketReg = valueBracketRegChanged

res := fixBound("VALUES (:a, :b)", 2)
if res != "VALUES (:a, :b)" {
t.Errorf("changed regex should return string")
}
})
}

0 comments on commit b20d679

Please sign in to comment.