2017-06-27 23:54:42 +03:00
|
|
|
// Copyright 2013 Julien Schmidt. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be found
|
2017-06-27 23:58:49 +03:00
|
|
|
// at https://github.com/julienschmidt/httprouter/blob/master/LICENSE
|
2015-03-31 22:39:06 +03:00
|
|
|
|
|
|
|
package gin
|
|
|
|
|
|
|
|
import (
|
2020-05-17 13:11:22 +03:00
|
|
|
"bytes"
|
2017-02-28 13:29:41 +03:00
|
|
|
"net/url"
|
2015-03-31 22:39:06 +03:00
|
|
|
"strings"
|
|
|
|
"unicode"
|
2020-05-10 08:22:25 +03:00
|
|
|
"unicode/utf8"
|
2020-05-23 17:19:37 +03:00
|
|
|
|
|
|
|
"github.com/gin-gonic/gin/internal/bytesconv"
|
2020-05-17 13:11:22 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
strColon = []byte(":")
|
|
|
|
strStar = []byte("*")
|
2015-03-31 22:39:06 +03:00
|
|
|
)
|
|
|
|
|
2015-05-28 04:22:34 +03:00
|
|
|
// Param is a single URL parameter, consisting of a key and a value.
|
|
|
|
type Param struct {
|
|
|
|
Key string
|
|
|
|
Value string
|
|
|
|
}
|
|
|
|
|
|
|
|
// Params is a Param-slice, as returned by the router.
|
|
|
|
// The slice is ordered, the first URL parameter is also the first slice value.
|
|
|
|
// It is therefore safe to read values by the index.
|
|
|
|
type Params []Param
|
|
|
|
|
2016-04-15 02:16:46 +03:00
|
|
|
// Get returns the value of the first Param which key matches the given name.
|
2015-05-28 04:22:34 +03:00
|
|
|
// If no matching Param is found, an empty string is returned.
|
|
|
|
func (ps Params) Get(name string) (string, bool) {
|
|
|
|
for _, entry := range ps {
|
|
|
|
if entry.Key == name {
|
|
|
|
return entry.Value, true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "", false
|
|
|
|
}
|
|
|
|
|
2016-04-15 02:16:46 +03:00
|
|
|
// ByName returns the value of the first Param which key matches the given name.
|
|
|
|
// If no matching Param is found, an empty string is returned.
|
2015-05-28 04:22:34 +03:00
|
|
|
func (ps Params) ByName(name string) (va string) {
|
|
|
|
va, _ = ps.Get(name)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-05-29 22:03:28 +03:00
|
|
|
type methodTree struct {
|
|
|
|
method string
|
|
|
|
root *node
|
|
|
|
}
|
|
|
|
|
|
|
|
type methodTrees []methodTree
|
|
|
|
|
|
|
|
func (trees methodTrees) get(method string) *node {
|
|
|
|
for _, tree := range trees {
|
|
|
|
if tree.method == method {
|
|
|
|
return tree.root
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-03-31 22:39:06 +03:00
|
|
|
func min(a, b int) int {
|
|
|
|
if a <= b {
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2019-12-01 14:53:03 +03:00
|
|
|
func longestCommonPrefix(a, b string) int {
|
|
|
|
i := 0
|
|
|
|
max := min(len(a), len(b))
|
|
|
|
for i < max && a[i] == b[i] {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
2020-05-10 08:22:25 +03:00
|
|
|
func countParams(path string) uint16 {
|
2020-05-23 17:19:37 +03:00
|
|
|
var n uint16
|
|
|
|
s := bytesconv.StringToBytes(path)
|
|
|
|
n += uint16(bytes.Count(s, strColon))
|
|
|
|
n += uint16(bytes.Count(s, strStar))
|
|
|
|
return n
|
2015-03-31 22:39:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type nodeType uint8
|
|
|
|
|
|
|
|
const (
|
2016-01-28 02:14:26 +03:00
|
|
|
static nodeType = iota // default
|
|
|
|
root
|
|
|
|
param
|
|
|
|
catchAll
|
2015-03-31 22:39:06 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type node struct {
|
|
|
|
path string
|
|
|
|
indices string
|
2020-05-10 08:22:25 +03:00
|
|
|
wildChild bool
|
|
|
|
nType nodeType
|
|
|
|
priority uint32
|
2015-03-31 22:39:06 +03:00
|
|
|
children []*node
|
2015-05-07 12:30:01 +03:00
|
|
|
handlers HandlersChain
|
2019-05-26 03:20:21 +03:00
|
|
|
fullPath string
|
2015-03-31 22:39:06 +03:00
|
|
|
}
|
|
|
|
|
2020-05-10 08:22:25 +03:00
|
|
|
// Increments priority of the given child and reorders if necessary
|
2015-03-31 22:39:06 +03:00
|
|
|
func (n *node) incrementChildPrio(pos int) int {
|
2019-12-08 13:35:08 +03:00
|
|
|
cs := n.children
|
|
|
|
cs[pos].priority++
|
|
|
|
prio := cs[pos].priority
|
2015-03-31 22:39:06 +03:00
|
|
|
|
2019-12-08 13:35:08 +03:00
|
|
|
// Adjust position (move to front)
|
2015-03-31 22:39:06 +03:00
|
|
|
newPos := pos
|
2019-12-08 13:35:08 +03:00
|
|
|
for ; newPos > 0 && cs[newPos-1].priority < prio; newPos-- {
|
|
|
|
// Swap node positions
|
|
|
|
cs[newPos-1], cs[newPos] = cs[newPos], cs[newPos-1]
|
2020-05-10 08:22:25 +03:00
|
|
|
|
2015-03-31 22:39:06 +03:00
|
|
|
}
|
|
|
|
|
2020-05-10 08:22:25 +03:00
|
|
|
// Build new index char string
|
2015-03-31 22:39:06 +03:00
|
|
|
if newPos != pos {
|
2020-05-10 08:22:25 +03:00
|
|
|
n.indices = n.indices[:newPos] + // Unchanged prefix, might be empty
|
|
|
|
n.indices[pos:pos+1] + // The index char we move
|
|
|
|
n.indices[newPos:pos] + n.indices[pos+1:] // Rest without char at 'pos'
|
2015-03-31 22:39:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return newPos
|
|
|
|
}
|
|
|
|
|
|
|
|
// addRoute adds a node with the given handle to the path.
|
|
|
|
// Not concurrency-safe!
|
2015-05-07 12:30:01 +03:00
|
|
|
func (n *node) addRoute(path string, handlers HandlersChain) {
|
2015-05-05 17:37:33 +03:00
|
|
|
fullPath := path
|
2015-03-31 22:39:06 +03:00
|
|
|
n.priority++
|
|
|
|
|
2019-12-01 14:53:03 +03:00
|
|
|
// Empty tree
|
|
|
|
if len(n.path) == 0 && len(n.children) == 0 {
|
2020-05-10 08:22:25 +03:00
|
|
|
n.insertChild(path, fullPath, handlers)
|
2019-12-01 14:53:03 +03:00
|
|
|
n.nType = root
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-06-28 18:54:52 +03:00
|
|
|
parentFullPathIndex := 0
|
|
|
|
|
2019-12-01 14:53:03 +03:00
|
|
|
walk:
|
|
|
|
for {
|
|
|
|
// Find the longest common prefix.
|
|
|
|
// This also implies that the common prefix contains no ':' or '*'
|
|
|
|
// since the existing key can't contain those chars.
|
|
|
|
i := longestCommonPrefix(path, n.path)
|
|
|
|
|
|
|
|
// Split edge
|
|
|
|
if i < len(n.path) {
|
|
|
|
child := node{
|
|
|
|
path: n.path[i:],
|
|
|
|
wildChild: n.wildChild,
|
|
|
|
indices: n.indices,
|
|
|
|
children: n.children,
|
|
|
|
handlers: n.handlers,
|
|
|
|
priority: n.priority - 1,
|
|
|
|
fullPath: n.fullPath,
|
2015-03-31 22:39:06 +03:00
|
|
|
}
|
|
|
|
|
2019-12-01 14:53:03 +03:00
|
|
|
n.children = []*node{&child}
|
|
|
|
// []byte for proper unicode char conversion, see #65
|
2020-05-23 17:19:37 +03:00
|
|
|
n.indices = bytesconv.BytesToString([]byte{n.path[i]})
|
2019-12-01 14:53:03 +03:00
|
|
|
n.path = path[:i]
|
|
|
|
n.handlers = nil
|
|
|
|
n.wildChild = false
|
|
|
|
n.fullPath = fullPath[:parentFullPathIndex+i]
|
|
|
|
}
|
2015-03-31 22:39:06 +03:00
|
|
|
|
2019-12-01 14:53:03 +03:00
|
|
|
// Make new node a child of this node
|
|
|
|
if i < len(path) {
|
|
|
|
path = path[i:]
|
2015-03-31 22:39:06 +03:00
|
|
|
|
2019-12-01 14:53:03 +03:00
|
|
|
if n.wildChild {
|
|
|
|
parentFullPathIndex += len(n.path)
|
|
|
|
n = n.children[0]
|
|
|
|
n.priority++
|
2015-03-31 22:39:06 +03:00
|
|
|
|
2019-12-01 14:53:03 +03:00
|
|
|
// Check if the wildcard matches
|
2020-05-10 08:22:25 +03:00
|
|
|
if len(path) >= len(n.path) && n.path == path[:len(n.path)] &&
|
|
|
|
// Adding a child to a catchAll is not possible
|
|
|
|
n.nType != catchAll &&
|
|
|
|
// Check for longer wildcard, e.g. :name and :names
|
|
|
|
(len(n.path) >= len(path) || path[len(n.path)] == '/') {
|
|
|
|
continue walk
|
2015-03-31 22:39:06 +03:00
|
|
|
}
|
|
|
|
|
2019-12-01 14:53:03 +03:00
|
|
|
pathSeg := path
|
|
|
|
if n.nType != catchAll {
|
|
|
|
pathSeg = strings.SplitN(path, "/", 2)[0]
|
2015-03-31 22:39:06 +03:00
|
|
|
}
|
2019-12-01 14:53:03 +03:00
|
|
|
prefix := fullPath[:strings.Index(fullPath, pathSeg)] + n.path
|
|
|
|
panic("'" + pathSeg +
|
|
|
|
"' in new path '" + fullPath +
|
|
|
|
"' conflicts with existing wildcard '" + n.path +
|
|
|
|
"' in existing prefix '" + prefix +
|
|
|
|
"'")
|
|
|
|
}
|
2015-03-31 22:39:06 +03:00
|
|
|
|
2019-12-01 14:53:03 +03:00
|
|
|
c := path[0]
|
2015-03-31 22:39:06 +03:00
|
|
|
|
2019-12-01 14:53:03 +03:00
|
|
|
// slash after param
|
|
|
|
if n.nType == param && c == '/' && len(n.children) == 1 {
|
|
|
|
parentFullPathIndex += len(n.path)
|
|
|
|
n = n.children[0]
|
|
|
|
n.priority++
|
|
|
|
continue walk
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if a child with the next path byte exists
|
2019-12-08 13:35:08 +03:00
|
|
|
for i, max := 0, len(n.indices); i < max; i++ {
|
2019-12-01 14:53:03 +03:00
|
|
|
if c == n.indices[i] {
|
|
|
|
parentFullPathIndex += len(n.path)
|
|
|
|
i = n.incrementChildPrio(i)
|
|
|
|
n = n.children[i]
|
|
|
|
continue walk
|
2015-03-31 22:39:06 +03:00
|
|
|
}
|
2019-12-01 14:53:03 +03:00
|
|
|
}
|
2015-03-31 22:39:06 +03:00
|
|
|
|
2019-12-01 14:53:03 +03:00
|
|
|
// Otherwise insert it
|
|
|
|
if c != ':' && c != '*' {
|
|
|
|
// []byte for proper unicode char conversion, see #65
|
2020-05-23 17:19:37 +03:00
|
|
|
n.indices += bytesconv.BytesToString([]byte{c})
|
2019-12-01 14:53:03 +03:00
|
|
|
child := &node{
|
2020-05-10 08:22:25 +03:00
|
|
|
fullPath: fullPath,
|
2015-03-31 22:39:06 +03:00
|
|
|
}
|
2019-12-01 14:53:03 +03:00
|
|
|
n.children = append(n.children, child)
|
|
|
|
n.incrementChildPrio(len(n.indices) - 1)
|
|
|
|
n = child
|
2015-03-31 22:39:06 +03:00
|
|
|
}
|
2020-05-10 08:22:25 +03:00
|
|
|
n.insertChild(path, fullPath, handlers)
|
2015-03-31 22:39:06 +03:00
|
|
|
return
|
2019-12-08 14:34:05 +03:00
|
|
|
}
|
2019-12-01 14:53:03 +03:00
|
|
|
|
2019-12-08 14:34:05 +03:00
|
|
|
// Otherwise and handle to current node
|
|
|
|
if n.handlers != nil {
|
|
|
|
panic("handlers are already registered for path '" + fullPath + "'")
|
2015-03-31 22:39:06 +03:00
|
|
|
}
|
2019-12-08 14:34:05 +03:00
|
|
|
n.handlers = handlers
|
2020-05-11 08:25:49 +03:00
|
|
|
n.fullPath = fullPath
|
2019-12-01 14:53:03 +03:00
|
|
|
return
|
2015-03-31 22:39:06 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-09 10:04:35 +03:00
|
|
|
// Search for a wildcard segment and check the name for invalid characters.
|
2020-05-10 08:22:25 +03:00
|
|
|
// Returns -1 as index, if no wildcard was found.
|
2019-12-09 10:04:35 +03:00
|
|
|
func findWildcard(path string) (wildcard string, i int, valid bool) {
|
|
|
|
// Find start
|
|
|
|
for start, c := range []byte(path) {
|
|
|
|
// A wildcard starts with ':' (param) or '*' (catch-all)
|
2015-03-31 22:39:06 +03:00
|
|
|
if c != ':' && c != '*' {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-12-09 10:04:35 +03:00
|
|
|
// Find end and check for invalid characters
|
|
|
|
valid = true
|
|
|
|
for end, c := range []byte(path[start+1:]) {
|
|
|
|
switch c {
|
|
|
|
case '/':
|
|
|
|
return path[start : start+1+end], start, valid
|
|
|
|
case ':', '*':
|
|
|
|
valid = false
|
2019-12-08 14:34:05 +03:00
|
|
|
}
|
2019-12-09 10:04:35 +03:00
|
|
|
}
|
|
|
|
return path[start:], start, valid
|
|
|
|
}
|
|
|
|
return "", -1, false
|
|
|
|
}
|
|
|
|
|
2020-05-10 08:22:25 +03:00
|
|
|
func (n *node) insertChild(path string, fullPath string, handlers HandlersChain) {
|
|
|
|
for {
|
2019-12-09 10:04:35 +03:00
|
|
|
// Find prefix until first wildcard
|
|
|
|
wildcard, i, valid := findWildcard(path)
|
|
|
|
if i < 0 { // No wildcard found
|
|
|
|
break
|
2015-03-31 22:39:06 +03:00
|
|
|
}
|
|
|
|
|
2019-12-08 14:34:05 +03:00
|
|
|
// The wildcard name must not contain ':' and '*'
|
2019-12-09 10:04:35 +03:00
|
|
|
if !valid {
|
2019-12-08 14:34:05 +03:00
|
|
|
panic("only one wildcard per path segment is allowed, has: '" +
|
2019-12-09 10:04:35 +03:00
|
|
|
wildcard + "' in path '" + fullPath + "'")
|
2015-05-05 17:37:33 +03:00
|
|
|
}
|
|
|
|
|
2015-03-31 22:39:06 +03:00
|
|
|
// check if the wildcard has a name
|
2019-12-09 10:04:35 +03:00
|
|
|
if len(wildcard) < 2 {
|
2015-05-05 17:37:33 +03:00
|
|
|
panic("wildcards must be named with a non-empty name in path '" + fullPath + "'")
|
2015-03-31 22:39:06 +03:00
|
|
|
}
|
|
|
|
|
2019-12-08 14:34:05 +03:00
|
|
|
// Check if this node has existing children which would be
|
|
|
|
// unreachable if we insert the wildcard here
|
|
|
|
if len(n.children) > 0 {
|
2019-12-09 10:04:35 +03:00
|
|
|
panic("wildcard segment '" + wildcard +
|
2019-12-08 14:34:05 +03:00
|
|
|
"' conflicts with existing children in path '" + fullPath + "'")
|
|
|
|
}
|
|
|
|
|
2019-12-09 10:04:35 +03:00
|
|
|
if wildcard[0] == ':' { // param
|
2015-03-31 22:39:06 +03:00
|
|
|
if i > 0 {
|
2019-12-09 10:04:35 +03:00
|
|
|
// Insert prefix before the current wildcard
|
|
|
|
n.path = path[:i]
|
|
|
|
path = path[i:]
|
2015-03-31 22:39:06 +03:00
|
|
|
}
|
|
|
|
|
2019-12-09 10:04:35 +03:00
|
|
|
n.wildChild = true
|
2015-03-31 22:39:06 +03:00
|
|
|
child := &node{
|
2020-05-10 08:22:25 +03:00
|
|
|
nType: param,
|
|
|
|
path: wildcard,
|
|
|
|
fullPath: fullPath,
|
2015-03-31 22:39:06 +03:00
|
|
|
}
|
|
|
|
n.children = []*node{child}
|
|
|
|
n = child
|
|
|
|
n.priority++
|
|
|
|
|
|
|
|
// if the path doesn't end with the wildcard, then there
|
|
|
|
// will be another non-wildcard subpath starting with '/'
|
2019-12-09 10:04:35 +03:00
|
|
|
if len(wildcard) < len(path) {
|
|
|
|
path = path[len(wildcard):]
|
2015-03-31 22:39:06 +03:00
|
|
|
|
|
|
|
child := &node{
|
2020-05-10 08:22:25 +03:00
|
|
|
priority: 1,
|
|
|
|
fullPath: fullPath,
|
2015-03-31 22:39:06 +03:00
|
|
|
}
|
|
|
|
n.children = []*node{child}
|
|
|
|
n = child
|
2019-12-09 10:04:35 +03:00
|
|
|
continue
|
2015-03-31 22:39:06 +03:00
|
|
|
}
|
|
|
|
|
2019-12-09 10:04:35 +03:00
|
|
|
// Otherwise we're done. Insert the handle in the new leaf
|
|
|
|
n.handlers = handlers
|
|
|
|
return
|
|
|
|
}
|
2015-03-31 22:39:06 +03:00
|
|
|
|
2019-12-09 10:04:35 +03:00
|
|
|
// catchAll
|
2020-05-10 08:22:25 +03:00
|
|
|
if i+len(wildcard) != len(path) {
|
2019-12-09 10:04:35 +03:00
|
|
|
panic("catch-all routes are only allowed at the end of the path in path '" + fullPath + "'")
|
|
|
|
}
|
2015-03-31 22:39:06 +03:00
|
|
|
|
2019-12-09 10:04:35 +03:00
|
|
|
if len(n.path) > 0 && n.path[len(n.path)-1] == '/' {
|
|
|
|
panic("catch-all conflicts with existing handle for the path segment root in path '" + fullPath + "'")
|
|
|
|
}
|
2015-03-31 22:39:06 +03:00
|
|
|
|
|