mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.1 KiB
79 lines
2.1 KiB
/*
|
|
Copyright The Helm Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package releaseutil // import "helm.sh/helm/v3/pkg/releaseutil"
|
|
|
|
import (
|
|
"sort"
|
|
|
|
rspb "helm.sh/helm/v3/pkg/release"
|
|
)
|
|
|
|
type list []*rspb.Release
|
|
|
|
func (s list) Len() int { return len(s) }
|
|
func (s list) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
|
|
|
|
// ByName sorts releases by name
|
|
type ByName struct{ list }
|
|
|
|
// Less compares to releases
|
|
func (s ByName) Less(i, j int) bool { return s.list[i].Name < s.list[j].Name }
|
|
|
|
// ByDate sorts releases by date
|
|
type ByDate struct{ list }
|
|
|
|
// Less compares to releases
|
|
func (s ByDate) Less(i, j int) bool {
|
|
ti := s.list[i].Info.LastDeployed.Unix()
|
|
tj := s.list[j].Info.LastDeployed.Unix()
|
|
return ti < tj
|
|
}
|
|
|
|
// ByRevision sorts releases by revision number
|
|
type ByRevision struct{ list }
|
|
|
|
// Less compares to releases
|
|
func (s ByRevision) Less(i, j int) bool {
|
|
return s.list[i].Version < s.list[j].Version
|
|
}
|
|
|
|
// Reverse reverses the list of releases sorted by the sort func.
|
|
func Reverse(list []*rspb.Release, sortFn func([]*rspb.Release)) {
|
|
sortFn(list)
|
|
for i, j := 0, len(list)-1; i < j; i, j = i+1, j-1 {
|
|
list[i], list[j] = list[j], list[i]
|
|
}
|
|
}
|
|
|
|
// SortByName returns the list of releases sorted
|
|
// in lexicographical order.
|
|
func SortByName(list []*rspb.Release) {
|
|
sort.Sort(ByName{list})
|
|
}
|
|
|
|
// SortByDate returns the list of releases sorted by a
|
|
// release's last deployed time (in seconds).
|
|
func SortByDate(list []*rspb.Release) {
|
|
sort.Sort(ByDate{list})
|
|
}
|
|
|
|
// SortByRevision returns the list of releases sorted by a
|
|
// release's revision number (release.Version).
|
|
func SortByRevision(list []*rspb.Release) {
|
|
sort.Sort(ByRevision{list})
|
|
}
|