Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimize/new route regexp allocations #732

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 41 additions & 26 deletions regexp.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,37 +65,50 @@ func newRouteRegexp(tpl string, typ regexpType, options routeRegexpOptions) (*ro
}
varsN := make([]string, len(idxs)/2)
varsR := make([]*regexp.Regexp, len(idxs)/2)
pattern := bytes.NewBufferString("")

var pattern, reverse strings.Builder
pattern.WriteByte('^')
reverse := bytes.NewBufferString("")
var end int

var end, colonIdx, groupIdx int
var err error
var patt, param, name string
for i := 0; i < len(idxs); i += 2 {
// Set all values we are interested in.
groupIdx = i / 2

raw := tpl[end:idxs[i]]
end = idxs[i+1]
parts := strings.SplitN(tpl[idxs[i]+1:end-1], ":", 2)
name := parts[0]
patt := defaultPattern
if len(parts) == 2 {
patt = parts[1]
tag := tpl[idxs[i]:end]

// trim braces from tag
param = tag[1 : len(tag)-1]

colonIdx = strings.Index(param, ":")
if colonIdx == -1 {
name = param
patt = defaultPattern
} else {
name = param[0:colonIdx]
patt = param[colonIdx+1:]
}

// Name or pattern can't be empty.
if name == "" || patt == "" {
return nil, fmt.Errorf("mux: missing name or pattern in %q",
tpl[idxs[i]:end])
return nil, fmt.Errorf("mux: missing name or pattern in %q", tag)
}
// Build the regexp pattern.
fmt.Fprintf(pattern, "%s(?P<%s>%s)", regexp.QuoteMeta(raw), varGroupName(i/2), patt)
groupName := varGroupName(groupIdx)

pattern.WriteString(regexp.QuoteMeta(raw) + "(?P<" + groupName + ">" + patt + ")")

// Build the reverse template.
fmt.Fprintf(reverse, "%s%%s", raw)
reverse.WriteString(raw + "%s")

// Append variable name and compiled pattern.
varsN[i/2] = name
varsR[i/2], err = RegexpCompileFunc(fmt.Sprintf("^%s$", patt))
varsN[groupIdx] = name
varsR[groupIdx], err = RegexpCompileFunc("^" + patt + "$")
if err != nil {
return nil, err
return nil, fmt.Errorf("mux: error compiling regex for %q: %w", tag, err)
}
}
// Add the remaining.
Expand All @@ -114,18 +127,9 @@ func newRouteRegexp(tpl string, typ regexpType, options routeRegexpOptions) (*ro
pattern.WriteByte('$')
}

var wildcardHostPort bool
if typ == regexpTypeHost {
if !strings.Contains(pattern.String(), ":") {
wildcardHostPort = true
}
}
reverse.WriteString(raw)
if endSlash {
reverse.WriteByte('/')
}
// Compile full regexp.
reg, errCompile := RegexpCompileFunc(pattern.String())
patternStr := pattern.String()
reg, errCompile := RegexpCompileFunc(patternStr)
if errCompile != nil {
return nil, errCompile
}
Expand All @@ -136,6 +140,17 @@ func newRouteRegexp(tpl string, typ regexpType, options routeRegexpOptions) (*ro
"Only non-capturing groups are accepted: e.g. (?:pattern) instead of (pattern)")
}

var wildcardHostPort bool
if typ == regexpTypeHost {
if !strings.Contains(patternStr, ":") {
wildcardHostPort = true
}
}
reverse.WriteString(raw)
if endSlash {
reverse.WriteByte('/')
}

// Done!
return &routeRegexp{
template: template,
Expand Down
26 changes: 26 additions & 0 deletions regexp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,35 @@ import (
"net/url"
"reflect"
"strconv"
"strings"
"testing"
)

func Test_newRouteRegexp_Errors(t *testing.T) {
tests := []struct {
in, out string
}{
{"/{}", `mux: missing name or pattern in "{}"`},
{"/{:.}", `mux: missing name or pattern in "{:.}"`},
{"/{a:}", `mux: missing name or pattern in "{a:}"`},
{"/{id:abc(}", `mux: error compiling regex for "{id:abc(}":`},
}

for _, tc := range tests {
t.Run("Test case for "+tc.in, func(t *testing.T) {
_, err := newRouteRegexp(tc.in, 0, routeRegexpOptions{})
if err != nil {
if strings.HasPrefix(err.Error(), tc.out) {
return
}
t.Errorf("Resulting error does not contain %q as expected, error: %s", tc.out, err)
} else {
t.Error("Expected error, got nil")
}
})
}
}

func Test_findFirstQueryKey(t *testing.T) {
tests := []string{
"a=1&b=2",
Expand Down
Loading