mirror of
https://git.mirrors.martin98.com/https://github.com/ceph/ceph-csi.git
synced 2025-08-14 23:25:56 +08:00

Several packages are only used while running the e2e suite. These packages are less important to update, as the they can not influence the final executable that is part of the Ceph-CSI container-image. By moving these dependencies out of the main Ceph-CSI go.mod, it is easier to identify if a reported CVE affects Ceph-CSI, or only the testing (like most of the Kubernetes CVEs). Signed-off-by: Niels de Vos <ndevos@ibm.com>
55 lines
1.2 KiB
Go
55 lines
1.2 KiB
Go
package restful
|
|
|
|
// Copyright 2013 Ernest Micklei. All rights reserved.
|
|
// Use of this source code is governed by a license
|
|
// that can be found in the LICENSE file.
|
|
|
|
// curlyRoute exits for sorting Routes by the CurlyRouter based on number of parameters and number of static path elements.
|
|
type curlyRoute struct {
|
|
route Route
|
|
paramCount int
|
|
staticCount int
|
|
}
|
|
|
|
// sortableCurlyRoutes orders by most parameters and path elements first.
|
|
type sortableCurlyRoutes []curlyRoute
|
|
|
|
func (s *sortableCurlyRoutes) add(route curlyRoute) {
|
|
*s = append(*s, route)
|
|
}
|
|
|
|
func (s sortableCurlyRoutes) routes() (routes []Route) {
|
|
routes = make([]Route, 0, len(s))
|
|
for _, each := range s {
|
|
routes = append(routes, each.route) // TODO change return type
|
|
}
|
|
return routes
|
|
}
|
|
|
|
func (s sortableCurlyRoutes) Len() int {
|
|
return len(s)
|
|
}
|
|
func (s sortableCurlyRoutes) Swap(i, j int) {
|
|
s[i], s[j] = s[j], s[i]
|
|
}
|
|
func (s sortableCurlyRoutes) Less(i, j int) bool {
|
|
a := s[j]
|
|
b := s[i]
|
|
|
|
// primary key
|
|
if a.staticCount < b.staticCount {
|
|
return true
|
|
}
|
|
if a.staticCount > b.staticCount {
|
|
return false
|
|
}
|
|
// secundary key
|
|
if a.paramCount < b.paramCount {
|
|
return true
|
|
}
|
|
if a.paramCount > b.paramCount {
|
|
return false
|
|
}
|
|
return a.route.Path < b.route.Path
|
|
}
|